From 1b76a6883839af35958c42bb217daaa0fa5c184a Mon Sep 17 00:00:00 2001 From: Emma Nechamkin <97977170+emma-nechamkin@users.noreply.github.com> Date: Thu, 17 Feb 2022 16:53:04 -0500 Subject: [PATCH] FEMA data check (#1270) we wanted to implement a slightly different FEMA AG LOSS indicator. Here, we take the 90th percentile only of tracts that have agvalue, and then we also floor the denominator of the rate calculation (loss/total value) at $408k --- .../data_pipeline/etl/score/etl_score.py | 47 +- .../etl/sources/national_risk_index/etl.py | 27 +- .../ipython/agricultural_loss_indicator.ipynb | 996 +++++ .../ipython/scoring_comparison.ipynb | 3637 ++++++++++++++++- .../data_pipeline/score/field_names.py | 1 + .../national_risk_index/data/output.csv | 112 +- .../national_risk_index/data/transform.csv | 112 +- .../sources/national_risk_index/test_etl.py | 1 + 8 files changed, 4642 insertions(+), 291 deletions(-) create mode 100644 data/data-pipeline/data_pipeline/ipython/agricultural_loss_indicator.ipynb diff --git a/data/data-pipeline/data_pipeline/etl/score/etl_score.py b/data/data-pipeline/data_pipeline/etl/score/etl_score.py index facd8ef6..7af5cd28 100644 --- a/data/data-pipeline/data_pipeline/etl/score/etl_score.py +++ b/data/data-pipeline/data_pipeline/etl/score/etl_score.py @@ -198,6 +198,7 @@ class ScoreETL(ExtractTransformLoad): return df + # Just a note -- it would be faster (I think) to set geoid10_tract as the index and then concat all frames 1x census_tract_df = functools.reduce( merge_function, census_tract_dfs, @@ -286,11 +287,45 @@ class ScoreETL(ExtractTransformLoad): something like "3rd grade reading proficiency" and `output_column_name_root` may be something like "Low 3rd grade reading proficiency". """ - # Create the "basic" percentile. - df[ - f"{output_column_name_root}" - f"{field_names.PERCENTILE_FIELD_SUFFIX}" - ] = df[input_column_name].rank(pct=True, ascending=ascending) + if ( + output_column_name_root + != field_names.EXPECTED_AGRICULTURE_LOSS_RATE_FIELD + ): + # Create the "basic" percentile. + df[ + f"{output_column_name_root}" + f"{field_names.PERCENTILE_FIELD_SUFFIX}" + ] = df[input_column_name].rank(pct=True, ascending=ascending) + + else: + # For agricultural loss, we are using whether there is value at all to determine percentile + # This is not the most thoughtfully written code, but it works. + + # Take only rows with agrivalue + tmp_df = df[df[field_names.AGRICULTURAL_VALUE_BOOL_FIELD] == 1][ + [input_column_name, field_names.GEOID_TRACT_FIELD] + ].copy() + + # Construct a percentile only among those tracts + tmp_df["temporary_ranking"] = tmp_df[input_column_name].transform( + lambda x: x.rank(pct=True, ascending=True) + ) + + # # Create a map for just those tracts and map it onto the df + temporary_ranking = tmp_df.set_index(field_names.GEOID_TRACT_FIELD)[ + "temporary_ranking" + ].to_dict() + + df[ + f"{output_column_name_root}" + f"{field_names.PERCENTILE_FIELD_SUFFIX}" + ] = np.where( + df[field_names.AGRICULTURAL_VALUE_BOOL_FIELD].isna(), + np.nan, + df[field_names.GEOID_TRACT_FIELD] + .map(temporary_ranking) + .fillna(0), + ) # Create the urban/rural percentiles. urban_rural_percentile_fields_to_combine = [] @@ -433,6 +468,8 @@ class ScoreETL(ExtractTransformLoad): field_names.EXTREME_HEAT_FIELD, field_names.HEALTHY_FOOD_FIELD, field_names.IMPENETRABLE_SURFACES_FIELD, + # We have to pass this boolean here in order to include it in ag value loss percentiles. + field_names.AGRICULTURAL_VALUE_BOOL_FIELD, ] non_numeric_columns = [ diff --git a/data/data-pipeline/data_pipeline/etl/sources/national_risk_index/etl.py b/data/data-pipeline/data_pipeline/etl/sources/national_risk_index/etl.py index 4876974d..cdf00af3 100644 --- a/data/data-pipeline/data_pipeline/etl/sources/national_risk_index/etl.py +++ b/data/data-pipeline/data_pipeline/etl/sources/national_risk_index/etl.py @@ -19,6 +19,13 @@ class NationalRiskIndexETL(ExtractTransformLoad): SOURCE_URL = "https://hazards.fema.gov/nri/Content/StaticDocuments/DataDownload//NRI_Table_CensusTracts/NRI_Table_CensusTracts.zip" GEO_LEVEL = ValidGeoLevel.CENSUS_TRACT + ## TEMPORARILY HERE + ## To get this value up in time for launch, we've hard coded it. We would like + ## to, in the future, have this pull the 10th percentile (or nth percentile) + ## from the agrivalue data for rural tracts. + # This is defined as roughly the 10th percentile for "rural tracts" + AGRIVALUE_LOWER_BOUND = 408000 + def __init__(self): self.INPUT_CSV = self.get_tmp_path() / "NRI_Table_CensusTracts.csv" @@ -50,6 +57,7 @@ class NationalRiskIndexETL(ExtractTransformLoad): self.EXPECTED_POPULATION_LOSS_RATE_FIELD_NAME = ( "Expected population loss rate (Natural Hazards Risk Index)" ) + self.CONTAINS_AGRIVALUE = "Contains agricultural value" self.COLUMNS_TO_KEEP = [ self.GEOID_TRACT_FIELD_NAME, @@ -57,6 +65,7 @@ class NationalRiskIndexETL(ExtractTransformLoad): self.EXPECTED_POPULATION_LOSS_RATE_FIELD_NAME, self.EXPECTED_AGRICULTURE_LOSS_RATE_FIELD_NAME, self.EXPECTED_BUILDING_LOSS_RATE_FIELD_NAME, + self.CONTAINS_AGRIVALUE, ] self.df: pd.DataFrame @@ -150,10 +159,20 @@ class NationalRiskIndexETL(ExtractTransformLoad): / df_nri[self.POPULATION_INPUT_FIELD_NAME] ) - # Agriculture EAL Rate = Eal Vala / Agrivalue - df_nri[self.EXPECTED_AGRICULTURE_LOSS_RATE_FIELD_NAME] = ( - disaster_agriculture_sum_series - / df_nri[self.AGRICULTURAL_VALUE_INPUT_FIELD_NAME] + # Agriculture EAL Rate = Eal Vala / max(Agrivalue, 408000) + ## FORMULA ADJUSTMENT 2/17 + ## Because AGRIVALUE contains a lot of 0s, we are going to consider + ## 90th percentile only for places that have some agrivalue at all + df_nri[ + self.EXPECTED_AGRICULTURE_LOSS_RATE_FIELD_NAME + ] = disaster_agriculture_sum_series / df_nri[ + self.AGRICULTURAL_VALUE_INPUT_FIELD_NAME + ].clip( + lower=self.AGRIVALUE_LOWER_BOUND + ) + # This produces a boolean that is True in the case of non-zero agricultural value + df_nri[self.CONTAINS_AGRIVALUE] = ( + df_nri[self.AGRICULTURAL_VALUE_INPUT_FIELD_NAME] > 0 ) # divide EAL_VALB (Expected Annual Loss - Building Value) by BUILDVALUE (Building Value ($)). diff --git a/data/data-pipeline/data_pipeline/ipython/agricultural_loss_indicator.ipynb b/data/data-pipeline/data_pipeline/ipython/agricultural_loss_indicator.ipynb new file mode 100644 index 00000000..b7a0efb1 --- /dev/null +++ b/data/data-pipeline/data_pipeline/ipython/agricultural_loss_indicator.ipynb @@ -0,0 +1,996 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "dc8a46ce-3dbf-49ee-a0ab-1449fd6d176d", + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import numpy as np\n", + "import seaborn as sns\n", + "import sys\n", + "from pathlib import Path\n", + "import matplotlib.pyplot as plt\n", + "\n", + "sys.path.append(\"../../data_pipeline/\")\n", + "\n", + "%load_ext lab_black" + ] + }, + { + "cell_type": "markdown", + "id": "ebdcdf20-08b6-48e6-b28b-4bebbb3655c2", + "metadata": {}, + "source": [ + "# Examining agricultural loss indicator" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "78cf4d99-6096-43a8-95e2-4e8328a78b18", + "metadata": {}, + "outputs": [], + "source": [ + "DATA_PATH = Path.cwd().parent / \"data\"\n", + "\n", + "urban_rural_from_geocorr = pd.read_csv(\n", + " DATA_PATH / \"dataset/geocorr/usa.csv\",\n", + " dtype={\"GEOID10_TRACT\": str},\n", + ")\n", + "\n", + "score_m = pd.read_csv(\n", + " DATA_PATH / \"score/csv/full/usa.csv\",\n", + " dtype={\"GEOID10_TRACT\": str},\n", + " usecols=[\n", + " \"Expected agricultural loss rate (Natural Hazards Risk Index)\",\n", + " \"Expected agricultural loss rate (Natural Hazards Risk Index) (percentile)\",\n", + " \"Greater than or equal to the 90th percentile for expected agriculture loss rate, is low income, and has a low percent of higher ed students?\",\n", + " \"Urban Heuristic Flag\",\n", + " \"Is low income and has a low percent of higher ed students?\",\n", + " \"GEOID10_TRACT\",\n", + " \"Total threshold criteria exceeded\",\n", + " ],\n", + ")\n", + "\n", + "# Note that I downloaded this fresh because I am paranoid; this is not going to load on other computers and I am sorry!\n", + "nri_full = pd.read_csv(\n", + " \"/Users/emmausds/Desktop/current-work/NRI_Table_CensusTracts.csv\",\n", + " dtype={\"TRACTFIPS\": str},\n", + " usecols=[\n", + " \"TRACTFIPS\",\n", + " \"AGRIVALUE\",\n", + " \"CWAV_EALA\",\n", + " \"DRGT_EALA\",\n", + " \"HAIL_EALA\",\n", + " \"HWAV_EALA\",\n", + " \"HRCN_EALA\",\n", + " \"RFLD_EALA\",\n", + " \"SWND_EALA\",\n", + " \"TRND_EALA\",\n", + " \"WFIR_EALA\",\n", + " \"WNTW_EALA\",\n", + " ],\n", + ")" + ] + }, + { + "cell_type": "markdown", + "id": "04ed5585-e7e5-4209-8e55-75a3e1fce633", + "metadata": {}, + "source": [ + "## Understanding our current implementation\n", + "\n", + "In our current implementation, on average, urban areas have a higher NRI (scaled) and a higher percentile of the loss rate. The share of Rural and Urban tracts identified by this threshold is roughly equal. " + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "48250479-4074-4b04-9f8b-56a6105e8225", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Expected agricultural loss rate (Natural Hazards Risk Index)Expected agricultural loss rate (Natural Hazards Risk Index) (percentile)Greater than or equal to the 90th percentile for expected agriculture loss rate, is low income, and has a low percent of higher ed students?
Urban Heuristic Flag
0.00.0115020.4860450.021132
1.00.0162550.5051590.018296
\n", + "
" + ], + "text/plain": [ + " Expected agricultural loss rate (Natural Hazards Risk Index) \\\n", + "Urban Heuristic Flag \n", + "0.0 0.011502 \n", + "1.0 0.016255 \n", + "\n", + " Expected agricultural loss rate (Natural Hazards Risk Index) (percentile) \\\n", + "Urban Heuristic Flag \n", + "0.0 0.486045 \n", + "1.0 0.505159 \n", + "\n", + " Greater than or equal to the 90th percentile for expected agriculture loss rate, is low income, and has a low percent of higher ed students? \n", + "Urban Heuristic Flag \n", + "0.0 0.021132 \n", + "1.0 0.018296 " + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "score_m.groupby(\"Urban Heuristic Flag\")[\n", + " [\n", + " \"Expected agricultural loss rate (Natural Hazards Risk Index)\",\n", + " \"Expected agricultural loss rate (Natural Hazards Risk Index) (percentile)\",\n", + " \"Greater than or equal to the 90th percentile for expected agriculture loss rate, is low income, and has a low percent of higher ed students?\",\n", + " ]\n", + "].mean()" + ] + }, + { + "cell_type": "markdown", + "id": "da540db6-d07b-4dac-9959-23e29df0881b", + "metadata": {}, + "source": [ + "We can also look at the distribution of percentiles among the urban and rural tracts. This is very much not what I might expect -- I'd hope the rural areas were \"flatter\" in distribution than the urban areas. " + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "7adf50e6-9293-40df-afd2-b1fe152d88ad", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/usr/local/lib/python3.9/site-packages/seaborn/distributions.py:2619: FutureWarning: `distplot` is a deprecated function and will be removed in a future version. Please adapt your code to use either `displot` (a figure-level function with similar flexibility) or `histplot` (an axes-level function for histograms).\n", + " warnings.warn(msg, FutureWarning)\n", + "/usr/local/lib/python3.9/site-packages/seaborn/distributions.py:2619: FutureWarning: `distplot` is a deprecated function and will be removed in a future version. Please adapt your code to use either `displot` (a figure-level function with similar flexibility) or `histplot` (an axes-level function for histograms).\n", + " warnings.warn(msg, FutureWarning)\n" + ] + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "tmp = sns.FacetGrid(data=score_m, col=\"Urban Heuristic Flag\", col_wrap=2, height=7)\n", + "tmp.map(\n", + " sns.distplot,\n", + " \"Expected agricultural loss rate (Natural Hazards Risk Index) (percentile)\",\n", + " bins=20,\n", + " kde=True,\n", + " color=\"#62acef\",\n", + ")\n", + "tmp.set(xlim=(0, 1.0))\n", + "plt.show()" + ] + }, + { + "cell_type": "markdown", + "id": "1bff0654-6a88-4511-b17f-492d41023d9f", + "metadata": {}, + "source": [ + "But, if we look at just the raw loss rates, we see a very different distribution. This suggests to me that we are perhaps elevating the urban areas in our wealth-neutral metric. " + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "b10adc64-3dae-429b-a0d3-b54f701587df", + "metadata": {}, + "outputs": [], + "source": [ + "nri_with_flag = (\n", + " nri_full.set_index(\"TRACTFIPS\")\n", + " .merge(\n", + " urban_rural_from_geocorr.set_index(\"GEOID10_TRACT\"),\n", + " left_index=True,\n", + " right_index=True,\n", + " how=\"left\",\n", + " )\n", + " .reset_index()\n", + ")\n", + "\n", + "nri_with_flag[\"total_ag_loss\"] = nri_with_flag.filter(like=\"EALA\").sum(axis=1)\n", + "nri_with_flag[\"total_ag_loss_pctile\"] = nri_with_flag[\"total_ag_loss\"].rank(pct=True)\n", + "\n", + "nri_with_flag.groupby(\"Urban Heuristic Flag\")[\"total_ag_loss_pctile\"].mean()" + ] + }, + { + "cell_type": "markdown", + "id": "ae3bd6f6-431a-4b73-a81d-a3e4eb14d708", + "metadata": {}, + "source": [ + "When we look at the distribution of agricultural value in census tracts that are urban and rural, we see that the agricultural value for urban tracts is quite skewed." + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "38a8e0a0-0cc4-43c9-b0bb-2062da59a639", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
0.000.100.200.300.400.500.600.700.800.90
Urban Heuristic Flag
0.000.00407,226.751,305,567.652,586,000.004,411,909.107,385,163.6211,582,526.6318,205,814.3830,706,464.8456,067,604.96
1.000.000.000.000.00141.351,812.919,755.3144,319.94202,972.501,060,793.40
\n", + "
" + ], + "text/plain": [ + " 0.00 0.10 0.20 0.30 0.40 \\\n", + "Urban Heuristic Flag \n", + "0.00 0.00 407,226.75 1,305,567.65 2,586,000.00 4,411,909.10 \n", + "1.00 0.00 0.00 0.00 0.00 141.35 \n", + "\n", + " 0.50 0.60 0.70 0.80 \\\n", + "Urban Heuristic Flag \n", + "0.00 7,385,163.62 11,582,526.63 18,205,814.38 30,706,464.84 \n", + "1.00 1,812.91 9,755.31 44,319.94 202,972.50 \n", + "\n", + " 0.90 \n", + "Urban Heuristic Flag \n", + "0.00 56,067,604.96 \n", + "1.00 1,060,793.40 " + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.options.display.float_format = \"{:,.2f}\".format\n", + "nri_with_flag.groupby(\"Urban Heuristic Flag\")[\"AGRIVALUE\"].quantile(\n", + " q=np.arange(0, 1, step=0.1)\n", + ").unstack()" + ] + }, + { + "cell_type": "markdown", + "id": "8aed6062-9503-4120-bab8-f840cb524365", + "metadata": {}, + "source": [ + "## Updating the metric\n", + "\n", + "So we clip the values such that agrivalue is defined as the maximum of the tract's agricultural value AND the 10th percentile of rural tracts' agrivalues. When we do that, we see that a lot more (proportionally) rural tracts exceed the 90th percentile. " + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "2b3a3b3e-76c2-4b6b-b96b-d439580de592", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Urban Heuristic Flag0.001.00
Expected agricultural loss rate (Natural Hazards Risk Index) exceeds 90th percentile, adjusted0.240.07
Expected agricultural loss rate (Natural Hazards Risk Index) (percentile, adjusted)0.770.43
\n", + "
" + ], + "text/plain": [ + "Urban Heuristic Flag 0.00 1.00\n", + "Expected agricultural loss rate (Natural Hazard... 0.24 0.07\n", + "Expected agricultural loss rate (Natural Hazard... 0.77 0.43" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "final_left_clip = nri_with_flag[nri_with_flag[\"Urban Heuristic Flag\"] == 0][\n", + " \"AGRIVALUE\"\n", + "].quantile(0.1)\n", + "\n", + "nri_with_flag[\n", + " \"Expected agricultural loss rate (Natural Hazards Risk Index) (percentile, adjusted)\"\n", + "] = (\n", + " nri_with_flag[\"total_ag_loss\"]\n", + " / (nri_with_flag[\"AGRIVALUE\"].clip(lower=final_left_clip))\n", + ").rank(\n", + " pct=True\n", + ")\n", + "\n", + "nri_with_flag[\n", + " \"Expected agricultural loss rate (Natural Hazards Risk Index) exceeds 90th percentile, adjusted\"\n", + "] = (\n", + " nri_with_flag[\n", + " \"Expected agricultural loss rate (Natural Hazards Risk Index) (percentile, adjusted)\"\n", + " ]\n", + " >= 0.9\n", + ")\n", + "\n", + "nri_with_flag.groupby(\"Urban Heuristic Flag\")[\n", + " [\n", + " \"Expected agricultural loss rate (Natural Hazards Risk Index) exceeds 90th percentile, adjusted\",\n", + " \"Expected agricultural loss rate (Natural Hazards Risk Index) (percentile, adjusted)\",\n", + " ]\n", + "].mean().T" + ] + }, + { + "cell_type": "markdown", + "id": "54585b02-d26e-4986-8a8a-9828582e7ac1", + "metadata": {}, + "source": [ + "The percentile distribution look a little better to me (but like, not fantastic)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "4fd90ace-65f7-4fa1-973f-922b56939ecd", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/usr/local/lib/python3.9/site-packages/seaborn/distributions.py:2619: FutureWarning: `distplot` is a deprecated function and will be removed in a future version. Please adapt your code to use either `displot` (a figure-level function with similar flexibility) or `histplot` (an axes-level function for histograms).\n", + " warnings.warn(msg, FutureWarning)\n", + "/usr/local/lib/python3.9/site-packages/seaborn/distributions.py:2619: FutureWarning: `distplot` is a deprecated function and will be removed in a future version. Please adapt your code to use either `displot` (a figure-level function with similar flexibility) or `histplot` (an axes-level function for histograms).\n", + " warnings.warn(msg, FutureWarning)\n" + ] + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "tmp = sns.FacetGrid(\n", + " data=nri_with_flag, col=\"Urban Heuristic Flag\", col_wrap=1, height=4\n", + ")\n", + "tmp.map(\n", + " sns.distplot,\n", + " \"Expected agricultural loss rate (Natural Hazards Risk Index) (percentile, adjusted)\",\n", + " bins=20,\n", + " kde=True,\n", + " color=\"#62acef\",\n", + ")\n", + "tmp.set(xlim=(0, 1.0))\n", + "plt.show()" + ] + }, + { + "cell_type": "markdown", + "id": "a273e5b1-c4a0-45b3-8f57-3be116685c10", + "metadata": {}, + "source": [ + "We can also look at the distribution of actually exceeding the threshold -- so also adding in the socioeconomic information from Score M. Note that *some tracts* are not shared between score M and the NRI data." + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "36670c86-230a-491b-bf44-767c1e1cd779", + "metadata": {}, + "outputs": [], + "source": [ + "nri_with_flag[\"low_inc_low_highed\"] = (\n", + " nri_with_flag[\"TRACTFIPS\"]\n", + " .map(\n", + " score_m.set_index(\"GEOID10_TRACT\")[\n", + " \"Is low income and has a low percent of higher ed students?\"\n", + " ].to_dict()\n", + " )\n", + " .fillna(False)\n", + ")\n", + "\n", + "nri_with_flag[\"would_exceed_threshold\"] = (\n", + " nri_with_flag[\"low_inc_low_highed\"]\n", + " & nri_with_flag[\n", + " \"Expected agricultural loss rate (Natural Hazards Risk Index) exceeds 90th percentile, adjusted\"\n", + " ]\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "id": "bdb9a4b3-954a-4389-86d0-84d896c1679c", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
summean
Urban Heuristic Flag
0.0000011900.08439
1.0000011580.01982
\n", + "
" + ], + "text/plain": [ + " sum mean\n", + "Urban Heuristic Flag \n", + "0.00000 1190 0.08439\n", + "1.00000 1158 0.01982" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "pd.options.display.float_format = \"{:.5f}\".format\n", + "nri_with_flag.groupby(\"Urban Heuristic Flag\")[\"would_exceed_threshold\"].agg(\n", + " [\"sum\", \"mean\"]\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "id": "015de431-0c39-49b7-9144-1bfa776e4f75", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
summean
Urban Heuristic Flag
0.000002980.02113
1.0000010690.01830
\n", + "
" + ], + "text/plain": [ + " sum mean\n", + "Urban Heuristic Flag \n", + "0.00000 298 0.02113\n", + "1.00000 1069 0.01830" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "score_m.groupby(\"Urban Heuristic Flag\")[\n", + " \"Greater than or equal to the 90th percentile for expected agriculture loss rate, is low income, and has a low percent of higher ed students?\"\n", + "].agg([\"sum\", \"mean\"])" + ] + }, + { + "cell_type": "markdown", + "id": "fd175407-07ee-4712-ac7e-ddd06ca8c622", + "metadata": {}, + "source": [ + "This really increases the number of tracts identified - from just under 2% to just over 3% - and adds 259 tracts, removes 116." + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "9c164dfc-9053-462b-8a55-1b802694ec48", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "2348" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/plain": [ + "1367" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "text/plain": [ + "259" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "display(\n", + " nri_with_flag[\"would_exceed_threshold\"].sum(),\n", + " score_m[\n", + " \"Greater than or equal to the 90th percentile for expected agriculture loss rate, is low income, and has a low percent of higher ed students?\"\n", + " ].sum(),\n", + ")\n", + "\n", + "all_ag_loss_tracts = nri_with_flag[nri_with_flag[\"would_exceed_threshold\"]][\n", + " \"TRACTFIPS\"\n", + "].unique()\n", + "\n", + "all_scorem_tracts = score_m[score_m[\"Total threshold criteria exceeded\"] > 0][\n", + " \"GEOID10_TRACT\"\n", + "].unique()\n", + "\n", + "display(len(set(all_ag_loss_tracts).difference(all_scorem_tracts)))" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "9a225512-758c-4807-a598-bc8c97e20a47", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "116" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "score_m[\"adjusted\"] = score_m[\"Total threshold criteria exceeded\"] - score_m[\n", + " \"Greater than or equal to the 90th percentile for expected agriculture loss rate, is low income, and has a low percent of higher ed students?\"\n", + "].astype(int)\n", + "\n", + "score_m_adjusted_tracts = set(score_m[score_m[\"adjusted\"] > 0][\"GEOID10_TRACT\"]).union(\n", + " all_ag_loss_tracts\n", + ")\n", + "display(len(set(all_scorem_tracts).difference(score_m_adjusted_tracts)))" + ] + }, + { + "cell_type": "markdown", + "id": "73b11c1d-5661-48e3-88f3-255b0ef21768", + "metadata": {}, + "source": [ + "## Scratch \n", + "Choosing a left clip value" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "01e50420-a82c-42ee-bf2b-a90fdb61bcef", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "At threshold 0.00, minimum value is $0\n", + "At threshold 0.05, minimum value is $82,341\n", + "At threshold 0.10, minimum value is $407,227\n", + "At threshold 0.15, minimum value is $822,946\n", + "At threshold 0.20, minimum value is $1,305,568\n", + "At threshold 0.25, minimum value is $1,881,536\n", + "At threshold 0.30, minimum value is $2,586,000\n", + "At threshold 0.35, minimum value is $3,375,394\n", + "At threshold 0.40, minimum value is $4,411,909\n", + "At threshold 0.45, minimum value is $5,719,970\n", + "At threshold 0.50, minimum value is $7,385,164\n", + "At threshold 0.55, minimum value is $9,228,310\n", + "At threshold 0.60, minimum value is $11,582,527\n", + "At threshold 0.65, minimum value is $14,421,393\n", + "At threshold 0.70, minimum value is $18,205,814\n", + "At threshold 0.75, minimum value is $23,497,859\n", + "At threshold 0.80, minimum value is $30,706,465\n", + "At threshold 0.85, minimum value is $40,827,282\n", + "At threshold 0.90, minimum value is $56,067,605\n", + "At threshold 0.95, minimum value is $86,129,868\n" + ] + } + ], + "source": [ + "for threshold in np.arange(0, 1, 0.05):\n", + " left_clip = nri_with_flag[nri_with_flag[\"Urban Heuristic Flag\"] == 0][\n", + " \"AGRIVALUE\"\n", + " ].quantile(threshold)\n", + " print(\"At threshold {:.2f}, minimum value is ${:,.0f}\".format(threshold, left_clip))\n", + " tmp_value = nri_with_flag[\"AGRIVALUE\"].clip(lower=left_clip)\n", + " nri_with_flag[\"total_ag_loss_pctile_{:.2f}\".format(threshold)] = (\n", + " nri_with_flag[\"total_ag_loss\"] / tmp_value\n", + " ).rank(pct=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "0bcddf71-4224-4e7d-b6f7-1edaeba5893a", + "metadata": {}, + "outputs": [], + "source": [ + "tmp = (\n", + " nri_with_flag.groupby(\"Urban Heuristic Flag\")[\n", + " [\n", + " \"total_ag_loss_pctile\",\n", + " \"total_ag_loss_pctile_0.00\",\n", + " \"total_ag_loss_pctile_0.05\",\n", + " \"total_ag_loss_pctile_0.10\",\n", + " \"total_ag_loss_pctile_0.15\",\n", + " \"total_ag_loss_pctile_0.20\",\n", + " \"total_ag_loss_pctile_0.25\",\n", + " \"total_ag_loss_pctile_0.30\",\n", + " \"total_ag_loss_pctile_0.35\",\n", + " \"total_ag_loss_pctile_0.40\",\n", + " \"total_ag_loss_pctile_0.45\",\n", + " \"total_ag_loss_pctile_0.50\",\n", + " \"total_ag_loss_pctile_0.55\",\n", + " \"total_ag_loss_pctile_0.60\",\n", + " \"total_ag_loss_pctile_0.65\",\n", + " \"total_ag_loss_pctile_0.70\",\n", + " \"total_ag_loss_pctile_0.75\",\n", + " \"total_ag_loss_pctile_0.80\",\n", + " \"total_ag_loss_pctile_0.85\",\n", + " \"total_ag_loss_pctile_0.90\",\n", + " \"total_ag_loss_pctile_0.95\",\n", + " ]\n", + " ]\n", + " .mean()\n", + " .T\n", + ")\n", + "\n", + "left_pctile = tmp.reset_index()[\"index\"].str.split(\"_\", expand=True)[4]\n", + "graph_data = (\n", + " pd.concat([tmp.reset_index(), left_pctile], axis=1)\n", + " .rename(\n", + " columns={\n", + " 0: \"Rural\",\n", + " 1: \"Urban\",\n", + " 4: \"Left clip value\",\n", + " }\n", + " )\n", + " .set_index(\"Left clip value\")[[\"Rural\", \"Urban\"]]\n", + " .stack()\n", + " .reset_index()\n", + " .rename(columns={\"level_1\": \"Tract classification\", 0: \"Average percentile\"})\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "id": "12fb9323-e932-4392-b722-8fca3c127b0e", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAApkAAAGpCAYAAADGPS1iAAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjUuMSwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy/YYfK9AAAACXBIWXMAAAsTAAALEwEAmpwYAABIm0lEQVR4nO3deXxcdb3/8fdnluxdkibQJS3dodCWFkrZhYIoyqagCIpSL8tV4OK9iugVriBXr8v1Ii54FVxAXNiuXvEKKPviD6UFStmkJG0pLQUySZsmk3Vmvr8/5iSdpEk6SeZkJjOv5+ORx5w553vO93OSmfLmLN9jzjkBAAAAmRTIdgEAAADIP4RMAAAAZBwhEwAAABlHyAQAAEDGETIBAACQcaFsFzBc1dXVbvbs2dkuAwAAoOA988wzEedczUDLxl3InD17ttauXZvtMgAAAAqemb0+2DJOlwMAACDjCJkAAADIOEImAAAAMm7cXZM5kO7ubm3dulUdHR3ZLqXglZSUqLa2VuFwONulAACALMqLkLl161ZNmDBBs2fPlpllu5yC5ZxTY2Ojtm7dqjlz5mS7HAAAkEV5cbq8o6NDU6ZMIWBmmZlpypQpHFEGAAD5ETIlETBzBH8HAAAg5VHIBAAAQO7Iy5DZ2NioZcuWadmyZZo6dapmzJjR+76rq2tE27zhhhvU1taWdvtHH31Up5566oj6GsiFF16ol19+WZJ01113adGiRVq1apXWrl2ryy+/fETb7L9P73//+7Vz585MlAsAAApcXtz409+UKVO0bt06SdK1116riooKXXHFFb3LY7GYQqHh7foNN9yg8847T2VlZZksNW0/+clPeqd/+tOf6uabb9YxxxwjSVqxYsWIttl/n+69997RFwoAAKA8PZI5kNWrV+tTn/qUDj/8cF155ZV6+umndeSRR2r58uU66qij9Oqrr0qS4vG4rrjiCi1evFhLly7V97//fX3ve9/Tm2++qVWrVmnVqlV7bHvNmjU66qijdPDBB2vlypVqaWnps3ywvl566SWtXLlSy5Yt09KlS/Xaa68pGo3qlFNO0cEHH6zFixfrjjvukCQdf/zxWrt2ra677jo9+eSTuuCCC/T5z3++zxHT1tZWffKTn9SSJUu0dOlS/c///I8k6dOf/rRWrFihgw46SNdcc40kDbhPs2fPViQSkSRdf/31Wrx4sRYvXqwbbrhBkrR582YtWrRIF110kQ466CC95z3vUXt7eyb/TAAAIF8458bVz6GHHur6e/nll/eY1+Oaa65x//mf/+nOP/98d8opp7hYLOacc665udl1d3c755x74IEH3Jlnnumcc+6HP/yhO+uss3qXNTY2Ouec22+//VxDQ8Me2+/s7HRz5sxxTz/9dJ/tPvLII+6UU04Zsq/LLrvM/fKXv+zdTltbm7v77rvdhRde2Lv9nTt3OuecO+6449yaNWv2mE7t58orr3Sf+cxnetdtamrqsw+xWMwdd9xx7vnnnx9wn3rer1271i1evNi1tra6lpYWd+CBB7pnn33Wbdq0yQWDQffcc88555z78Ic/7G677bY9fidD/T0AAED+kLTWDZLZ8vJ0+WA+/OEPKxgMSpKam5t1/vnn67XXXpOZqbu7W5L04IMP6lOf+lTv6fSqqqoht/nqq69q2rRpOuywwyRJEydO3KPNYH0deeSR+trXvqatW7fqzDPP1IIFC7RkyRJ97nOf0xe+8AWdeuqpOvbYY9PevwcffFC333577/vKykpJ0p133qmbbrpJsVhM27dv18svv6ylS5cOup0nn3xSH/zgB1VeXi5JOvPMM/XEE0/o9NNP15w5c7Rs2TJJ0qGHHqrNmzenXR8AACgcBXO6XFJvaJKkf/u3f9OqVav04osv6g9/+IOvYzsO1tdHP/pR3XPPPSotLdX73/9+Pfzww1q4cKGeffZZLVmyRFdffbWuu+66UfW9adMmffvb39ZDDz2k9evX65RTThnVvhYXF/dOB4NBxWKxUdUHAADyU0EdyUzV3NysGTNmSJJuueWW3vknnXSSfvzjH2vVqlUKhUJqampSVVWVJkyYoJaWFlVXV/fZzv7776/t27drzZo1Ouyww9TS0qLS0tK0+tq4caPmzp2ryy+/XFu2bNH69et1wAEHqKqqSuedd54mT57c54afvTnppJN044039l5DuWPHDu3atUvl5eWaNGmS3n77bd133306/vjjJWnQfTr22GO1evVqffGLX5RzTr/73e902223pV0HAAD5zDmnhJMSzsl5r7unvfnavdzJe3WS89ZPviaXSf2W9U6nrDvAegNts6IopDlTsnOTcn8FGzKvvPJKnX/++frqV7+qU045pXf+hRdeqA0bNmjp0qUKh8O66KKLdNlll+ni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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], + "source": [ + "plt.figure(figsize=(11, 7))\n", + "sns.lineplot(\n", + " x=\"Left clip value\",\n", + " y=\"Average percentile\",\n", + " hue=\"Tract classification\",\n", + " data=graph_data,\n", + " palette=\"colorblind\",\n", + ")" + ] + }, + { + "cell_type": "markdown", + "id": "c898c542-1dad-43b7-b20b-ee065f96c227", + "metadata": {}, + "source": [ + "Note -- some tracts have a missing urban / rural flag. They get left out from the means. " + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "adfcdbe0-fdcc-4ec7-8788-5628641bed8b", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "1.0 58429\n", + "0.0 14101\n", + "NaN 209\n", + "Name: Urban Heuristic Flag, dtype: int64" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "nri_with_flag[\"Urban Heuristic Flag\"].value_counts(dropna=False)" + ] + }, + { + "cell_type": "markdown", + "id": "0fba097c-b5e0-4511-b072-05511906dd9b", + "metadata": {}, + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.9.10" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/data/data-pipeline/data_pipeline/ipython/scoring_comparison.ipynb b/data/data-pipeline/data_pipeline/ipython/scoring_comparison.ipynb index ddf05c3e..bb66c5c7 100644 --- a/data/data-pipeline/data_pipeline/ipython/scoring_comparison.ipynb +++ b/data/data-pipeline/data_pipeline/ipython/scoring_comparison.ipynb @@ -7,28 +7,7 @@ "metadata": { "scrolled": true }, - "outputs": [ - { - "ename": "ModuleNotFoundError", - "evalue": "No module named 'lab_black'", - "output_type": "error", - "traceback": [ - "\u001b[0;31m---------------------------------------------------------------------------\u001b[0m", - "\u001b[0;31mModuleNotFoundError\u001b[0m Traceback (most recent call last)", - "\u001b[0;32m/var/folders/lx/xmq8p65j71v9xq2bhsd2j5w40000gp/T/ipykernel_29987/670980058.py\u001b[0m in \u001b[0;36m\u001b[0;34m\u001b[0m\n\u001b[1;32m 33\u001b[0m \u001b[0;32mfrom\u001b[0m \u001b[0mdata_pipeline\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mscore\u001b[0m \u001b[0;32mimport\u001b[0m \u001b[0mfield_names\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 34\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 35\u001b[0;31m \u001b[0mget_ipython\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mrun_line_magic\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m'load_ext'\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m'lab_black'\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 36\u001b[0m \u001b[0;31m# Turn on TQDM for pandas so that we can have progress bars when running `apply`.\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 37\u001b[0m \u001b[0mtqdm_notebook\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mpandas\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/.virtualenvs/scoring2/lib/python3.9/site-packages/IPython/core/interactiveshell.py\u001b[0m in \u001b[0;36mrun_line_magic\u001b[0;34m(self, magic_name, line, _stack_depth)\u001b[0m\n\u001b[1;32m 2349\u001b[0m \u001b[0mkwargs\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0;34m'local_ns'\u001b[0m\u001b[0;34m]\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget_local_scope\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mstack_depth\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2350\u001b[0m \u001b[0;32mwith\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mbuiltin_trap\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m-> 2351\u001b[0;31m \u001b[0mresult\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mfn\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m*\u001b[0m\u001b[0margs\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0mkwargs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 2352\u001b[0m \u001b[0;32mreturn\u001b[0m \u001b[0mresult\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 2353\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/.virtualenvs/scoring2/lib/python3.9/site-packages/decorator.py\u001b[0m in \u001b[0;36mfun\u001b[0;34m(*args, **kw)\u001b[0m\n\u001b[1;32m 230\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0;32mnot\u001b[0m \u001b[0mkwsyntax\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 231\u001b[0m \u001b[0margs\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mkw\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mfix\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0margs\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mkw\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0msig\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 232\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0mcaller\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mfunc\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m*\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mextras\u001b[0m \u001b[0;34m+\u001b[0m \u001b[0margs\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0mkw\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 233\u001b[0m \u001b[0mfun\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m__name__\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mfunc\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m__name__\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 234\u001b[0m \u001b[0mfun\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m__doc__\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mfunc\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m__doc__\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/.virtualenvs/scoring2/lib/python3.9/site-packages/IPython/core/magic.py\u001b[0m in \u001b[0;36m\u001b[0;34m(f, *a, **k)\u001b[0m\n\u001b[1;32m 185\u001b[0m \u001b[0;31m# but it's overkill for just that one bit of state.\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 186\u001b[0m \u001b[0;32mdef\u001b[0m \u001b[0mmagic_deco\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0marg\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 187\u001b[0;31m \u001b[0mcall\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0;32mlambda\u001b[0m \u001b[0mf\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m*\u001b[0m\u001b[0ma\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0mk\u001b[0m\u001b[0;34m:\u001b[0m \u001b[0mf\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m*\u001b[0m\u001b[0ma\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0;34m**\u001b[0m\u001b[0mk\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 188\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 189\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mcallable\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0marg\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/.virtualenvs/scoring2/lib/python3.9/site-packages/IPython/core/magics/extension.py\u001b[0m in \u001b[0;36mload_ext\u001b[0;34m(self, module_str)\u001b[0m\n\u001b[1;32m 31\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0;32mnot\u001b[0m \u001b[0mmodule_str\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 32\u001b[0m \u001b[0;32mraise\u001b[0m \u001b[0mUsageError\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m'Missing module name.'\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 33\u001b[0;31m \u001b[0mres\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mshell\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mextension_manager\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mload_extension\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mmodule_str\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 34\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 35\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mres\u001b[0m \u001b[0;34m==\u001b[0m \u001b[0;34m'already loaded'\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/.virtualenvs/scoring2/lib/python3.9/site-packages/IPython/core/extensions.py\u001b[0m in \u001b[0;36mload_extension\u001b[0;34m(self, module_str)\u001b[0m\n\u001b[1;32m 78\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mmodule_str\u001b[0m \u001b[0;32mnot\u001b[0m \u001b[0;32min\u001b[0m \u001b[0msys\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mmodules\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 79\u001b[0m \u001b[0;32mwith\u001b[0m \u001b[0mprepended_to_syspath\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mipython_extension_dir\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m---> 80\u001b[0;31m \u001b[0mmod\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mimport_module\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mmodule_str\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 81\u001b[0m \u001b[0;32mif\u001b[0m \u001b[0mmod\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m__file__\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mstartswith\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mself\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mipython_extension_dir\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 82\u001b[0m print((\"Loading extensions from {dir} is deprecated. \"\n", - "\u001b[0;32m~/.pyenv/versions/3.9.6/lib/python3.9/importlib/__init__.py\u001b[0m in \u001b[0;36mimport_module\u001b[0;34m(name, package)\u001b[0m\n\u001b[1;32m 125\u001b[0m \u001b[0;32mbreak\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 126\u001b[0m \u001b[0mlevel\u001b[0m \u001b[0;34m+=\u001b[0m \u001b[0;36m1\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m--> 127\u001b[0;31m \u001b[0;32mreturn\u001b[0m \u001b[0m_bootstrap\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0m_gcd_import\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mname\u001b[0m\u001b[0;34m[\u001b[0m\u001b[0mlevel\u001b[0m\u001b[0;34m:\u001b[0m\u001b[0;34m]\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mpackage\u001b[0m\u001b[0;34m,\u001b[0m \u001b[0mlevel\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m\u001b[1;32m 128\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 129\u001b[0m \u001b[0;34m\u001b[0m\u001b[0m\n", - "\u001b[0;32m~/.pyenv/versions/3.9.6/lib/python3.9/importlib/_bootstrap.py\u001b[0m in \u001b[0;36m_gcd_import\u001b[0;34m(name, package, level)\u001b[0m\n", - "\u001b[0;32m~/.pyenv/versions/3.9.6/lib/python3.9/importlib/_bootstrap.py\u001b[0m in \u001b[0;36m_find_and_load\u001b[0;34m(name, import_)\u001b[0m\n", - "\u001b[0;32m~/.pyenv/versions/3.9.6/lib/python3.9/importlib/_bootstrap.py\u001b[0m in \u001b[0;36m_find_and_load_unlocked\u001b[0;34m(name, import_)\u001b[0m\n", - "\u001b[0;31mModuleNotFoundError\u001b[0m: No module named 'lab_black'" - ] - } - ], + "outputs": [], "source": [ "import collections\n", "import functools\n", @@ -71,7 +50,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 2, "id": "2ce3170c", "metadata": { "scrolled": true @@ -106,12 +85,290 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 3, "id": "8bd39090", "metadata": { "scrolled": true }, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/usr/local/Cellar/jupyterlab/3.2.8/libexec/lib/python3.9/site-packages/IPython/core/interactiveshell.py:3251: DtypeWarning: Columns (1) have mixed types.Specify dtype option on import or set low_memory=False.\n", + " exec(code_obj, self.user_global_ns, self.user_ns)\n" + ] + }, + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOID10_TRACTPersistent Poverty Census TractHousing burden (percent)Total populationMedian household income (% of state median household income)Current asthma among adults aged greater than or equal to 18 yearsCoronary heart disease among adults aged greater than or equal to 18 yearsCancer (excluding skin cancer) among adults aged greater than or equal to 18 yearsCurrent lack of health insurance among adults aged 18-64 yearsDiagnosed diabetes among adults aged greater than or equal to 18 years...Score D (top 25th percentile)Score D (top 30th percentile)Score D (top 35th percentile)Score D (top 40th percentile)Score E (percentile)Score E (top 25th percentile)Score E (top 30th percentile)Score E (top 35th percentile)Score E (top 40th percentile)GEOID10_STATE
001073001100True0.284897.000.7311.207.206.7016.6019.30...FalseFalseFalseFalse0.33FalseFalseFalseFalse01
101073001400True0.181906.000.7111.109.107.3021.4022.40...FalseFalseTrueTrue0.73FalseTrueTrueTrue01
201073002000False0.444215.000.5413.509.506.1025.4022.80...TrueTrueTrueTrue0.93TrueTrueTrueTrue01
301073003802False0.415149.000.7712.006.605.6020.9018.60...TrueTrueTrueTrue0.76TrueTrueTrueTrue01
401073004000True0.472621.000.3713.1010.006.3024.5025.00...TrueTrueTrueTrue0.95TrueTrueTrueTrue01
\n", + "

5 rows × 554 columns

\n", + "
" + ], + "text/plain": [ + " GEOID10_TRACT Persistent Poverty Census Tract Housing burden (percent) \\\n", + "0 01073001100 True 0.28 \n", + "1 01073001400 True 0.18 \n", + "2 01073002000 False 0.44 \n", + "3 01073003802 False 0.41 \n", + "4 01073004000 True 0.47 \n", + "\n", + " Total population \\\n", + "0 4897.00 \n", + "1 1906.00 \n", + "2 4215.00 \n", + "3 5149.00 \n", + "4 2621.00 \n", + "\n", + " Median household income (% of state median household income) \\\n", + "0 0.73 \n", + "1 0.71 \n", + "2 0.54 \n", + "3 0.77 \n", + "4 0.37 \n", + "\n", + " Current asthma among adults aged greater than or equal to 18 years \\\n", + "0 11.20 \n", + "1 11.10 \n", + "2 13.50 \n", + "3 12.00 \n", + "4 13.10 \n", + "\n", + " Coronary heart disease among adults aged greater than or equal to 18 years \\\n", + "0 7.20 \n", + "1 9.10 \n", + "2 9.50 \n", + "3 6.60 \n", + "4 10.00 \n", + "\n", + " Cancer (excluding skin cancer) among adults aged greater than or equal to 18 years \\\n", + "0 6.70 \n", + "1 7.30 \n", + "2 6.10 \n", + "3 5.60 \n", + "4 6.30 \n", + "\n", + " Current lack of health insurance among adults aged 18-64 years \\\n", + "0 16.60 \n", + "1 21.40 \n", + "2 25.40 \n", + "3 20.90 \n", + "4 24.50 \n", + "\n", + " Diagnosed diabetes among adults aged greater than or equal to 18 years \\\n", + "0 19.30 \n", + "1 22.40 \n", + "2 22.80 \n", + "3 18.60 \n", + "4 25.00 \n", + "\n", + " ... Score D (top 25th percentile) Score D (top 30th percentile) \\\n", + "0 ... False False \n", + "1 ... False False \n", + "2 ... True True \n", + "3 ... True True \n", + "4 ... True True \n", + "\n", + " Score D (top 35th percentile) Score D (top 40th percentile) \\\n", + "0 False False \n", + "1 True True \n", + "2 True True \n", + "3 True True \n", + "4 True True \n", + "\n", + " Score E (percentile) Score E (top 25th percentile) \\\n", + "0 0.33 False \n", + "1 0.73 False \n", + "2 0.93 True \n", + "3 0.76 True \n", + "4 0.95 True \n", + "\n", + " Score E (top 30th percentile) Score E (top 35th percentile) \\\n", + "0 False False \n", + "1 True True \n", + "2 True True \n", + "3 True True \n", + "4 True True \n", + "\n", + " Score E (top 40th percentile) GEOID10_STATE \n", + "0 False 01 \n", + "1 True 01 \n", + "2 True 01 \n", + "3 True 01 \n", + "4 True 01 \n", + "\n", + "[5 rows x 554 columns]" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Load CEJST score data\n", "cejst_data_path = DATA_DIR / \"score\" / \"csv\" / \"full\" / \"usa.csv\"\n", @@ -123,9 +380,7 @@ "# Create the state ID by taking the first two digits of the FIPS CODE of the tract.\n", "# For more information, see https://www.census.gov/programs-surveys/geography/guidance/geo-identifiers.html.\n", "cejst_df.loc[:, GEOID_STATE_FIELD_NAME] = (\n", - " cejst_df.loc[:, ExtractTransformLoad.GEOID_TRACT_FIELD_NAME]\n", - " .astype(str)\n", - " .str[0:2]\n", + " cejst_df.loc[:, ExtractTransformLoad.GEOID_TRACT_FIELD_NAME].astype(str).str[0:2]\n", ")\n", "\n", "cejst_df.head()" @@ -133,10 +388,18 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 4, "id": "a251a0fb", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "EJSCREEN areas of concern data does not exist locally. Not attempting to load data into comparison tool.\n" + ] + } + ], "source": [ "# Load EJSCREEN Areas of Concern data.\n", "\n", @@ -167,10 +430,280 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 5, "id": "e43a9e23", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOID10_TRACTPersistent Poverty Census TractHousing burden (percent)Total populationMedian household income (% of state median household income)Current asthma among adults aged greater than or equal to 18 yearsCoronary heart disease among adults aged greater than or equal to 18 yearsCancer (excluding skin cancer) among adults aged greater than or equal to 18 yearsCurrent lack of health insurance among adults aged 18-64 yearsDiagnosed diabetes among adults aged greater than or equal to 18 years...Score D (top 25th percentile)Score D (top 30th percentile)Score D (top 35th percentile)Score D (top 40th percentile)Score E (percentile)Score E (top 25th percentile)Score E (top 30th percentile)Score E (top 35th percentile)Score E (top 40th percentile)GEOID10_STATE
001073001100True0.284897.000.7311.207.206.7016.6019.30...FalseFalseFalseFalse0.33FalseFalseFalseFalse01
101073001400True0.181906.000.7111.109.107.3021.4022.40...FalseFalseTrueTrue0.73FalseTrueTrueTrue01
201073002000False0.444215.000.5413.509.506.1025.4022.80...TrueTrueTrueTrue0.93TrueTrueTrueTrue01
301073003802False0.415149.000.7712.006.605.6020.9018.60...TrueTrueTrueTrue0.76TrueTrueTrueTrue01
401073004000True0.472621.000.3713.1010.006.3024.5025.00...TrueTrueTrueTrue0.95TrueTrueTrueTrue01
\n", + "

5 rows × 554 columns

\n", + "
" + ], + "text/plain": [ + " GEOID10_TRACT Persistent Poverty Census Tract Housing burden (percent) \\\n", + "0 01073001100 True 0.28 \n", + "1 01073001400 True 0.18 \n", + "2 01073002000 False 0.44 \n", + "3 01073003802 False 0.41 \n", + "4 01073004000 True 0.47 \n", + "\n", + " Total population \\\n", + "0 4897.00 \n", + "1 1906.00 \n", + "2 4215.00 \n", + "3 5149.00 \n", + "4 2621.00 \n", + "\n", + " Median household income (% of state median household income) \\\n", + "0 0.73 \n", + "1 0.71 \n", + "2 0.54 \n", + "3 0.77 \n", + "4 0.37 \n", + "\n", + " Current asthma among adults aged greater than or equal to 18 years \\\n", + "0 11.20 \n", + "1 11.10 \n", + "2 13.50 \n", + "3 12.00 \n", + "4 13.10 \n", + "\n", + " Coronary heart disease among adults aged greater than or equal to 18 years \\\n", + "0 7.20 \n", + "1 9.10 \n", + "2 9.50 \n", + "3 6.60 \n", + "4 10.00 \n", + "\n", + " Cancer (excluding skin cancer) among adults aged greater than or equal to 18 years \\\n", + "0 6.70 \n", + "1 7.30 \n", + "2 6.10 \n", + "3 5.60 \n", + "4 6.30 \n", + "\n", + " Current lack of health insurance among adults aged 18-64 years \\\n", + "0 16.60 \n", + "1 21.40 \n", + "2 25.40 \n", + "3 20.90 \n", + "4 24.50 \n", + "\n", + " Diagnosed diabetes among adults aged greater than or equal to 18 years \\\n", + "0 19.30 \n", + "1 22.40 \n", + "2 22.80 \n", + "3 18.60 \n", + "4 25.00 \n", + "\n", + " ... Score D (top 25th percentile) Score D (top 30th percentile) \\\n", + "0 ... False False \n", + "1 ... False False \n", + "2 ... True True \n", + "3 ... True True \n", + "4 ... True True \n", + "\n", + " Score D (top 35th percentile) Score D (top 40th percentile) \\\n", + "0 False False \n", + "1 True True \n", + "2 True True \n", + "3 True True \n", + "4 True True \n", + "\n", + " Score E (percentile) Score E (top 25th percentile) \\\n", + "0 0.33 False \n", + "1 0.73 False \n", + "2 0.93 True \n", + "3 0.76 True \n", + "4 0.95 True \n", + "\n", + " Score E (top 30th percentile) Score E (top 35th percentile) \\\n", + "0 False False \n", + "1 True True \n", + "2 True True \n", + "3 True True \n", + "4 True True \n", + "\n", + " Score E (top 40th percentile) GEOID10_STATE \n", + "0 False 01 \n", + "1 True 01 \n", + "2 True 01 \n", + "3 True 01 \n", + "4 True 01 \n", + "\n", + "[5 rows x 554 columns]" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Merge EJSCREEN AoCs into CEJST data.\n", "# Before attempting, check whether or not the EJSCREEN AoC data is available locally.\n", @@ -190,10 +723,93 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 6, "id": "38c0dc2f", "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "~~~~Analysis for field `Percent enrollment in college or graduate school`~~~~\n", + "count 73298.00\n", + "mean 0.08\n", + "std 0.09\n", + "min 0.00\n", + "25% 0.04\n", + "50% 0.06\n", + "75% 0.09\n", + "max 1.00\n", + "Name: Percent enrollment in college or graduate school, dtype: float64\n", + "\n", + "There are 1.16% of values missing.\n", + "\n", + "Quantile at 0.9 is 0.12186292304275304\n", + "AxesSubplot(0.125,0.125;0.775x0.755)\n", + "\n", + "~~~~Analysis for field `Percent individuals age 25 or over with less than high school degree`~~~~\n", + "count 73280.00\n", + "mean 0.13\n", + "std 0.10\n", + "min 0.00\n", + "25% 0.05\n", + "50% 0.10\n", + "75% 0.17\n", + "max 1.00\n", + "Name: Percent individuals age 25 or over with less than high school degree, dtype: float64\n", + "\n", + "There are 1.19% of values missing.\n", + "\n", + "Quantile at 0.9 is 0.2693215167829206\n", + "AxesSubplot(0.125,0.125;0.775x0.755)\n", + "\n", + "~~~~Analysis for field `Median household income as a percent of area median income`~~~~\n", + "count 68232.00\n", + "mean 1.01\n", + "std 0.43\n", + "min 0.04\n", + "25% 0.72\n", + "50% 0.94\n", + "75% 1.21\n", + "max 4.46\n", + "Name: Median household income as a percent of area median income, dtype: float64\n", + "\n", + "There are 7.99% of values missing.\n", + "\n", + "Quantile at 0.9 is 1.5445838485220498\n", + "AxesSubplot(0.125,0.125;0.775x0.755)\n", + "\n", + "~~~~Analysis for field `Percent of individuals below 200% Federal Poverty Line`~~~~\n", + "count 73149.00\n", + "mean 0.33\n", + "std 0.19\n", + "min 0.00\n", + "25% 0.18\n", + "50% 0.30\n", + "75% 0.45\n", + "max 1.00\n", + "Name: Percent of individuals below 200% Federal Poverty Line, dtype: float64\n", + "\n", + "There are 1.36% of values missing.\n", + "\n", + "Quantile at 0.9 is 0.6000566482486579\n", + "AxesSubplot(0.125,0.125;0.775x0.755)\n" + ] + }, + { + "data": { + "image/png": "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\n", + "text/plain": [ + "
" + ] + }, + "metadata": { + "needs_background": "light" + }, + "output_type": "display_data" + } + ], "source": [ "# Analyze one field at a time (useful for setting thresholds)\n", "\n", @@ -218,40 +834,354 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 7, "id": "8c3e462c", "metadata": { "scrolled": true }, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOID10_TRACTTotal PopulationCalifornia CountyZIPNearby City \\n(to help approximate location only)LongitudeLatitudecalenviroscreen_scorecalenviroscreen_percentileDRAFT CES 4.0\\nPercentile Range...PovertyPoverty PctlUnemploymentUnemployment PctlHousing BurdenHousing Burden PctlPop. Char.Pop. Char. ScorePop. Char. Pctlcalenviroscreen_priority_community
0060190011002760Fresno93706Fresno-119.7836.7194.61100.0095-100% (highest scores)...76.6098.4316.2097.1530.7090.6193.739.7299.87True
1060770007004177San Joaquin95206Stockton-121.2937.9490.8399.9995-100% (highest scores)...70.6096.4318.5098.4535.2095.6193.409.6899.84True
2060770001004055San Joaquin95202Stockton-121.2937.9585.7599.9795-100% (highest scores)...81.8099.5017.9098.1736.4096.5195.719.9299.97True
3060710016005527San Bernardino91761Ontario-117.6234.0683.5699.9695-100% (highest scores)...67.1094.826.7057.2032.1092.6580.598.3693.06True
4060372049202639Los Angeles90023Los Angeles-118.2034.0282.9099.9595-100% (highest scores)...64.9093.515.6043.8125.0077.9583.958.7095.78True
\n", + "

5 rows × 59 columns

\n", + "
" + ], + "text/plain": [ + " GEOID10_TRACT Total Population California County ZIP \\\n", + "0 06019001100 2760 Fresno 93706 \n", + "1 06077000700 4177 San Joaquin 95206 \n", + "2 06077000100 4055 San Joaquin 95202 \n", + "3 06071001600 5527 San Bernardino 91761 \n", + "4 06037204920 2639 Los Angeles 90023 \n", + "\n", + " Nearby City \\n(to help approximate location only) Longitude Latitude \\\n", + "0 Fresno -119.78 36.71 \n", + "1 Stockton -121.29 37.94 \n", + "2 Stockton -121.29 37.95 \n", + "3 Ontario -117.62 34.06 \n", + "4 Los Angeles -118.20 34.02 \n", + "\n", + " calenviroscreen_score calenviroscreen_percentile \\\n", + "0 94.61 100.00 \n", + "1 90.83 99.99 \n", + "2 85.75 99.97 \n", + "3 83.56 99.96 \n", + "4 82.90 99.95 \n", + "\n", + " DRAFT CES 4.0\\nPercentile Range ... Poverty Poverty Pctl Unemployment \\\n", + "0 95-100% (highest scores) ... 76.60 98.43 16.20 \n", + "1 95-100% (highest scores) ... 70.60 96.43 18.50 \n", + "2 95-100% (highest scores) ... 81.80 99.50 17.90 \n", + "3 95-100% (highest scores) ... 67.10 94.82 6.70 \n", + "4 95-100% (highest scores) ... 64.90 93.51 5.60 \n", + "\n", + " Unemployment Pctl Housing Burden Housing Burden Pctl Pop. Char. \\\n", + "0 97.15 30.70 90.61 93.73 \n", + "1 98.45 35.20 95.61 93.40 \n", + "2 98.17 36.40 96.51 95.71 \n", + "3 57.20 32.10 92.65 80.59 \n", + "4 43.81 25.00 77.95 83.95 \n", + "\n", + " Pop. Char. Score Pop. Char. Pctl calenviroscreen_priority_community \n", + "0 9.72 99.87 True \n", + "1 9.68 99.84 True \n", + "2 9.92 99.97 True \n", + "3 8.36 93.06 True \n", + "4 8.70 95.78 True \n", + "\n", + "[5 rows x 59 columns]" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Load CalEnviroScreen 4.0\n", "CALENVIROSCREEN_SCORE_FIELD = \"calenviroscreen_score\"\n", "CALENVIROSCREEN_PERCENTILE_FIELD = \"calenviroscreen_percentile\"\n", "CALENVIROSCREEN_PRIORITY_COMMUNITY_FIELD = \"calenviroscreen_priority_community\"\n", "\n", - "calenviroscreen_data_path = (\n", - " DATA_DIR / \"dataset\" / \"calenviroscreen4\" / \"data06.csv\"\n", - ")\n", + "calenviroscreen_data_path = DATA_DIR / \"dataset\" / \"calenviroscreen4\" / \"data06.csv\"\n", "calenviroscreen_df = pd.read_csv(\n", " calenviroscreen_data_path,\n", " dtype={ExtractTransformLoad.GEOID_TRACT_FIELD_NAME: \"string\"},\n", ")\n", "\n", "# Convert priority community field to a bool.\n", - "calenviroscreen_df[\n", + "calenviroscreen_df[CALENVIROSCREEN_PRIORITY_COMMUNITY_FIELD] = calenviroscreen_df[\n", " CALENVIROSCREEN_PRIORITY_COMMUNITY_FIELD\n", - "] = calenviroscreen_df[CALENVIROSCREEN_PRIORITY_COMMUNITY_FIELD].astype(bool)\n", + "].astype(bool)\n", "\n", "calenviroscreen_df.head()" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 8, "id": "b1ac2854-80c8-42a8-85e8-84c5684bbe43", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOID10_TRACTMapping for Environmental Justice Final PercentileMapping for Environmental Justice Final ScoreMapping for Environmental Justice Priority Community
05109795040048.1222.70False
15155002000146.2022.17False
25104110020672.5132.90False
35105948100074.8734.25False
45105945140096.4157.83True
\n", + "
" + ], + "text/plain": [ + " GEOID10_TRACT Mapping for Environmental Justice Final Percentile \\\n", + "0 51097950400 48.12 \n", + "1 51550020001 46.20 \n", + "2 51041100206 72.51 \n", + "3 51059481000 74.87 \n", + "4 51059451400 96.41 \n", + "\n", + " Mapping for Environmental Justice Final Score \\\n", + "0 22.70 \n", + "1 22.17 \n", + "2 32.90 \n", + "3 34.25 \n", + "4 57.83 \n", + "\n", + " Mapping for Environmental Justice Priority Community \n", + "0 False \n", + "1 False \n", + "2 False \n", + "3 False \n", + "4 True " + ] + }, + "execution_count": 8, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Mapping for EJ\n", "mapping_for_ej_path = DATA_DIR / \"dataset\" / \"mapping_for_ej\" / \"co_va.csv\"\n", @@ -269,36 +1199,196 @@ }, { "cell_type": "code", - "execution_count": null, - "id": "891b5bfc", - "metadata": {}, - "outputs": [], - "source": [ - "# Mapping for EJ\n", - "mapping_for_ej_path = DATA_DIR / \"dataset\" / \"mapping_for_ej\" / \"co_va.csv\"\n", - "\n", - "mapping_for_ej_df = pd.read_csv(\n", - " mapping_for_ej_path,\n", - " dtype={\n", - " ExtractTransformLoad.GEOID_TRACT_FIELD_NAME: \"string\",\n", - " field_names.MAPPING_FOR_EJ_PRIORITY_COMMUNITY_FIELD: \"bool\",\n", - " },\n", - ")\n", - "\n", - "mapping_for_ej_df.head()" - ] - }, - { - "cell_type": "code", - "execution_count": null, + "execution_count": 9, "id": "d8ec43dc", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOID10_TRACTIndividuals in Poverty (percent) (1990)Individuals in Poverty (percent) (2000)Individuals in Poverty (percent) (2010)Persistent Poverty, Tract Level
0010010201000.100.130.09False
1010010202000.200.230.11False
2010010203000.110.080.12False
3010010204000.070.050.03False
4010010205000.060.040.08False
..................
7307155079990000NaNNaNNaNFalse
7307255083990000NaNNaNNaNFalse
7307355089990000NaNNaNNaNFalse
7307455101990000NaNNaNNaNFalse
7307555117990000NaNNaNNaNFalse
\n", + "

73076 rows × 5 columns

\n", + "
" + ], + "text/plain": [ + " GEOID10_TRACT Individuals in Poverty (percent) (1990) \\\n", + "0 01001020100 0.10 \n", + "1 01001020200 0.20 \n", + "2 01001020300 0.11 \n", + "3 01001020400 0.07 \n", + "4 01001020500 0.06 \n", + "... ... ... \n", + "73071 55079990000 NaN \n", + "73072 55083990000 NaN \n", + "73073 55089990000 NaN \n", + "73074 55101990000 NaN \n", + "73075 55117990000 NaN \n", + "\n", + " Individuals in Poverty (percent) (2000) \\\n", + "0 0.13 \n", + "1 0.23 \n", + "2 0.08 \n", + "3 0.05 \n", + "4 0.04 \n", + "... ... \n", + "73071 NaN \n", + "73072 NaN \n", + "73073 NaN \n", + "73074 NaN \n", + "73075 NaN \n", + "\n", + " Individuals in Poverty (percent) (2010) \\\n", + "0 0.09 \n", + "1 0.11 \n", + "2 0.12 \n", + "3 0.03 \n", + "4 0.08 \n", + "... ... \n", + "73071 NaN \n", + "73072 NaN \n", + "73073 NaN \n", + "73074 NaN \n", + "73075 NaN \n", + "\n", + " Persistent Poverty, Tract Level \n", + "0 False \n", + "1 False \n", + "2 False \n", + "3 False \n", + "4 False \n", + "... ... \n", + "73071 False \n", + "73072 False \n", + "73073 False \n", + "73074 False \n", + "73075 False \n", + "\n", + "[73076 rows x 5 columns]" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Load persistent poverty data\n", - "persistent_poverty_path = (\n", - " DATA_DIR / \"dataset\" / \"persistent_poverty\" / \"usa.csv\"\n", - ")\n", + "persistent_poverty_path = DATA_DIR / \"dataset\" / \"persistent_poverty\" / \"usa.csv\"\n", "persistent_poverty_df = pd.read_csv(\n", " persistent_poverty_path,\n", " dtype={ExtractTransformLoad.GEOID_TRACT_FIELD_NAME: \"string\"},\n", @@ -311,9 +1401,7 @@ "PERSISTENT_POVERTY_CBG_LEVEL_FIELD = \"Persistent Poverty Census Tract\"\n", "\n", "persistent_poverty_df.rename(\n", - " columns={\n", - " PERSISTENT_POVERTY_CBG_LEVEL_FIELD: PERSISTENT_POVERTY_TRACT_LEVEL_FIELD\n", - " },\n", + " columns={PERSISTENT_POVERTY_CBG_LEVEL_FIELD: PERSISTENT_POVERTY_TRACT_LEVEL_FIELD},\n", " inplace=True,\n", " errors=\"raise\",\n", ")\n", @@ -323,10 +1411,180 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 10, "id": "81826d29", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOID10_TRACTPercent of tract that is HOLC Grade DTract is >20% HOLC Grade DTract is >50% HOLC Grade DTract is >75% HOLC Grade D
0010730001000.42TrueFalseFalse
1010730003000.93TrueTrueTrue
2010730004000.36TrueFalseFalse
3010730005000.65TrueTrueFalse
4010730007000.41TrueFalseFalse
..................
7273551390011000.29TrueFalseFalse
7274551390012000.42TrueFalseFalse
7275551390013000.16FalseFalseFalse
7276551390014000.04FalseFalseFalse
7277551390015000.10FalseFalseFalse
\n", + "

7278 rows × 5 columns

\n", + "
" + ], + "text/plain": [ + " GEOID10_TRACT Percent of tract that is HOLC Grade D \\\n", + "0 01073000100 0.42 \n", + "1 01073000300 0.93 \n", + "2 01073000400 0.36 \n", + "3 01073000500 0.65 \n", + "4 01073000700 0.41 \n", + "... ... ... \n", + "7273 55139001100 0.29 \n", + "7274 55139001200 0.42 \n", + "7275 55139001300 0.16 \n", + "7276 55139001400 0.04 \n", + "7277 55139001500 0.10 \n", + "\n", + " Tract is >20% HOLC Grade D Tract is >50% HOLC Grade D \\\n", + "0 True False \n", + "1 True True \n", + "2 True False \n", + "3 True True \n", + "4 True False \n", + "... ... ... \n", + "7273 True False \n", + "7274 True False \n", + "7275 False False \n", + "7276 False False \n", + "7277 False False \n", + "\n", + " Tract is >75% HOLC Grade D \n", + "0 False \n", + "1 True \n", + "2 False \n", + "3 False \n", + "4 False \n", + "... ... \n", + "7273 False \n", + "7274 False \n", + "7275 False \n", + "7276 False \n", + "7277 False \n", + "\n", + "[7278 rows x 5 columns]" + ] + }, + "execution_count": 10, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Load mapping inequality data\n", "HOLC_FACTORS = [\n", @@ -334,9 +1592,7 @@ " field_names.HOLC_GRADE_D_TRACT_50_PERCENT_FIELD,\n", " field_names.HOLC_GRADE_D_TRACT_75_PERCENT_FIELD,\n", "]\n", - "mapping_inequality_path = (\n", - " DATA_DIR / \"dataset\" / \"mapping_inequality\" / \"usa.csv\"\n", - ")\n", + "mapping_inequality_path = DATA_DIR / \"dataset\" / \"mapping_inequality\" / \"usa.csv\"\n", "mapping_inequality_df = pd.read_csv(\n", " mapping_inequality_path,\n", " dtype={ExtractTransformLoad.GEOID_TRACT_FIELD_NAME: \"string\"},\n", @@ -347,10 +1603,144 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 11, "id": "fceb3136", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOID10_TRACTSVI - Socioeconomic Index (percentile)SVI - Household Composition Index (percentile)SVI- Minority Status/Language Index (percentile)SVI- Housing Type/Transportation Index (percentile)Overall rank for Social Vulnerability Indices (percentile)At or above 90 for overall percentile ranking according to Social Vulnerability Indices
001015981901NaNNaNNaNNaNNaNFalse
101015981902NaNNaNNaNNaNNaNFalse
201015981903NaNNaNNaNNaNNaNFalse
301097003605NaN0.000.27NaNNaNFalse
401097990000NaNNaNNaNNaNNaNFalse
\n", + "
" + ], + "text/plain": [ + " GEOID10_TRACT SVI - Socioeconomic Index (percentile) \\\n", + "0 01015981901 NaN \n", + "1 01015981902 NaN \n", + "2 01015981903 NaN \n", + "3 01097003605 NaN \n", + "4 01097990000 NaN \n", + "\n", + " SVI - Household Composition Index (percentile) \\\n", + "0 NaN \n", + "1 NaN \n", + "2 NaN \n", + "3 0.00 \n", + "4 NaN \n", + "\n", + " SVI- Minority Status/Language Index (percentile) \\\n", + "0 NaN \n", + "1 NaN \n", + "2 NaN \n", + "3 0.27 \n", + "4 NaN \n", + "\n", + " SVI- Housing Type/Transportation Index (percentile) \\\n", + "0 NaN \n", + "1 NaN \n", + "2 NaN \n", + "3 NaN \n", + "4 NaN \n", + "\n", + " Overall rank for Social Vulnerability Indices (percentile) \\\n", + "0 NaN \n", + "1 NaN \n", + "2 NaN \n", + "3 NaN \n", + "4 NaN \n", + "\n", + " At or above 90 for overall percentile ranking according to Social Vulnerability Indices \n", + "0 False \n", + "1 False \n", + "2 False \n", + "3 False \n", + "4 False " + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "cdc_svi_index_path = DATA_DIR / \"dataset\" / \"cdc_svi_index\" / \"usa.csv\"\n", "cdc_svi_index_df = pd.read_csv(\n", @@ -362,10 +1752,92 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 12, "id": "0c290efa", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOID10_TRACTMaryland Environmental Justice ScoreMaryland EJSCREEN Priority Community
1379240276011070.66True
1380240276022010.30False
1381240276055040.28False
1382240276069040.43False
1383240276069060.54False
\n", + "
" + ], + "text/plain": [ + " GEOID10_TRACT Maryland Environmental Justice Score \\\n", + "1379 24027601107 0.66 \n", + "1380 24027602201 0.30 \n", + "1381 24027605504 0.28 \n", + "1382 24027606904 0.43 \n", + "1383 24027606906 0.54 \n", + "\n", + " Maryland EJSCREEN Priority Community \n", + "1379 True \n", + "1380 False \n", + "1381 False \n", + "1382 False \n", + "1383 False " + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Load Maryland EJScreen\n", "maryland_ejscreen_data_path = (\n", @@ -381,10 +1853,375 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 13, "id": "605af1ff", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOID10_TRACTEnergy-related alternative definition of communitiesCoal employmentOutage EventsHomelessnessDisabled populationOutage DurationJob AccessFossil energy employmentFood DesertIncomplete PlumbingNon-grid-connected heating fuelParksGreater than 30 min commuteInternet AccessMobile HomeSingle ParentTransportation Costs
035029000500True0.000.000.010.220.00-1.400.021.000.000.360.000.2530.700.530.7545.00
148311950100False0.000.000.010.170.00-1.300.011.000.020.04-1.000.3121.900.330.1834.00
248131950500True0.000.000.010.290.00-1.500.011.000.020.150.000.5433.900.150.4540.00
348247950200False0.001.000.010.221140.00-3.000.010.000.000.010.000.3329.400.110.5337.00
448247950400True0.001.000.010.221140.00-2.700.011.000.010.030.000.3653.100.110.7841.00
.........................................................
7305155111000500FalseNaNNaNNaN0.12NaNNaNNaNNaN0.000.30NaNNaNNaN0.100.32NaN
7305255111000700FalseNaNNaNNaN0.11NaNNaNNaNNaN0.010.07NaNNaNNaN0.000.25NaN
7305355111000800FalseNaNNaNNaN0.14NaNNaNNaNNaN0.010.46NaNNaNNaN0.050.22NaN
7305455111000900FalseNaNNaNNaN0.11NaNNaNNaNNaN0.030.78NaNNaNNaN0.020.25NaN
7305555117990000FalseNaNNaNNaN0.00NaNNaNNaNNaN0.000.00NaNNaNNaN0.000.00NaN
\n", + "

73056 rows × 18 columns

\n", + "
" + ], + "text/plain": [ + " GEOID10_TRACT Energy-related alternative definition of communities \\\n", + "0 35029000500 True \n", + "1 48311950100 False \n", + "2 48131950500 True \n", + "3 48247950200 False \n", + "4 48247950400 True \n", + "... ... ... \n", + "73051 55111000500 False \n", + "73052 55111000700 False \n", + "73053 55111000800 False \n", + "73054 55111000900 False \n", + "73055 55117990000 False \n", + "\n", + " Coal employment Outage Events Homelessness Disabled population \\\n", + "0 0.00 0.00 0.01 0.22 \n", + "1 0.00 0.00 0.01 0.17 \n", + "2 0.00 0.00 0.01 0.29 \n", + "3 0.00 1.00 0.01 0.22 \n", + "4 0.00 1.00 0.01 0.22 \n", + "... ... ... ... ... \n", + "73051 NaN NaN NaN 0.12 \n", + "73052 NaN NaN NaN 0.11 \n", + "73053 NaN NaN NaN 0.14 \n", + "73054 NaN NaN NaN 0.11 \n", + "73055 NaN NaN NaN 0.00 \n", + "\n", + " Outage Duration Job Access Fossil energy employment Food Desert \\\n", + "0 0.00 -1.40 0.02 1.00 \n", + "1 0.00 -1.30 0.01 1.00 \n", + "2 0.00 -1.50 0.01 1.00 \n", + "3 1140.00 -3.00 0.01 0.00 \n", + "4 1140.00 -2.70 0.01 1.00 \n", + "... ... ... ... ... \n", + "73051 NaN NaN NaN NaN \n", + "73052 NaN NaN NaN NaN \n", + "73053 NaN NaN NaN NaN \n", + "73054 NaN NaN NaN NaN \n", + "73055 NaN NaN NaN NaN \n", + "\n", + " Incomplete Plumbing Non-grid-connected heating fuel Parks \\\n", + "0 0.00 0.36 0.00 \n", + "1 0.02 0.04 -1.00 \n", + "2 0.02 0.15 0.00 \n", + "3 0.00 0.01 0.00 \n", + "4 0.01 0.03 0.00 \n", + "... ... ... ... \n", + "73051 0.00 0.30 NaN \n", + "73052 0.01 0.07 NaN \n", + "73053 0.01 0.46 NaN \n", + "73054 0.03 0.78 NaN \n", + "73055 0.00 0.00 NaN \n", + "\n", + " Greater than 30 min commute Internet Access Mobile Home \\\n", + "0 0.25 30.70 0.53 \n", + "1 0.31 21.90 0.33 \n", + "2 0.54 33.90 0.15 \n", + "3 0.33 29.40 0.11 \n", + "4 0.36 53.10 0.11 \n", + "... ... ... ... \n", + "73051 NaN NaN 0.10 \n", + "73052 NaN NaN 0.00 \n", + "73053 NaN NaN 0.05 \n", + "73054 NaN NaN 0.02 \n", + "73055 NaN NaN 0.00 \n", + "\n", + " Single Parent Transportation Costs \n", + "0 0.75 45.00 \n", + "1 0.18 34.00 \n", + "2 0.45 40.00 \n", + "3 0.53 37.00 \n", + "4 0.78 41.00 \n", + "... ... ... \n", + "73051 0.32 NaN \n", + "73052 0.25 NaN \n", + "73053 0.22 NaN \n", + "73054 0.25 NaN \n", + "73055 0.00 NaN \n", + "\n", + "[73056 rows x 18 columns]" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Load alternative energy-related definition\n", "energy_definition_alternative_draft_path = (\n", @@ -400,10 +2237,98 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 14, "id": "fe4a2939", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOID10_TRACTMichigan EJSCREEN Score FieldMichigan EJSCREEN Percentile FieldMichigan EJSCREEN Priority Community
02608100390093.991.00True
12607700020291.951.00True
22607700030090.171.00True
32608100380089.501.00True
42608100400087.741.00True
\n", + "
" + ], + "text/plain": [ + " GEOID10_TRACT Michigan EJSCREEN Score Field \\\n", + "0 26081003900 93.99 \n", + "1 26077000202 91.95 \n", + "2 26077000300 90.17 \n", + "3 26081003800 89.50 \n", + "4 26081004000 87.74 \n", + "\n", + " Michigan EJSCREEN Percentile Field Michigan EJSCREEN Priority Community \n", + "0 1.00 True \n", + "1 1.00 True \n", + "2 1.00 True \n", + "3 1.00 True \n", + "4 1.00 True " + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Load Michigan EJSCREEN\n", "michigan_ejscreen_data_path = (\n", @@ -419,10 +2344,189 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 15, "id": "b39342aa", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOID10_TRACTNumber of facilities affecting the tractNumber of releases affecting the tractNumber of chemicals affecting the tractAverage toxicity-weighted concentration of the cells in the tractRSEI Risk ScoreRSEI Risk Score (Cancer toxicity weights)RSEI Risk Score (Noncancer toxicity weights)Sum of the population of the cells in the tractAt or above 75 for overall percentile for the RSEI scoreRSEI Risk Score (percentile)
03604702320019390496485.18759.71610.32154.856199.22False0.53
1360290072028437681227.3779.5063.0514.811601.87False0.21
24200342920114416242512705.162553.952447.72113.754527.60False0.74
31720100410080365573626.623984.973969.1327.065766.72True0.82
44706501120379358791133.401885.511410.31447.777820.66False0.69
\n", + "
" + ], + "text/plain": [ + " GEOID10_TRACT Number of facilities affecting the tract \\\n", + "0 36047023200 193 \n", + "1 36029007202 84 \n", + "2 42003429201 144 \n", + "3 17201004100 80 \n", + "4 47065011203 79 \n", + "\n", + " Number of releases affecting the tract \\\n", + "0 904 \n", + "1 376 \n", + "2 1624 \n", + "3 365 \n", + "4 358 \n", + "\n", + " Number of chemicals affecting the tract \\\n", + "0 96 \n", + "1 81 \n", + "2 251 \n", + "3 57 \n", + "4 79 \n", + "\n", + " Average toxicity-weighted concentration of the cells in the tract \\\n", + "0 485.18 \n", + "1 227.37 \n", + "2 2705.16 \n", + "3 3626.62 \n", + "4 1133.40 \n", + "\n", + " RSEI Risk Score RSEI Risk Score (Cancer toxicity weights) \\\n", + "0 759.71 610.32 \n", + "1 79.50 63.05 \n", + "2 2553.95 2447.72 \n", + "3 3984.97 3969.13 \n", + "4 1885.51 1410.31 \n", + "\n", + " RSEI Risk Score (Noncancer toxicity weights) \\\n", + "0 154.85 \n", + "1 14.81 \n", + "2 113.75 \n", + "3 27.06 \n", + "4 447.77 \n", + "\n", + " Sum of the population of the cells in the tract \\\n", + "0 6199.22 \n", + "1 1601.87 \n", + "2 4527.60 \n", + "3 5766.72 \n", + "4 7820.66 \n", + "\n", + " At or above 75 for overall percentile for the RSEI score \\\n", + "0 False \n", + "1 False \n", + "2 False \n", + "3 True \n", + "4 False \n", + "\n", + " RSEI Risk Score (percentile) \n", + "0 0.53 \n", + "1 0.21 \n", + "2 0.74 \n", + "3 0.82 \n", + "4 0.69 " + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Load EPA RSEI EJSCREEN\n", "epa_rsei_data_path = DATA_DIR / \"dataset\" / \"epa_rsei\" / \"usa.csv\"\n", @@ -436,12 +2540,317 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 16, "id": "65659c26", "metadata": { "scrolled": true }, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GEOID10_TRACTPersistent Poverty Census TractHousing burden (percent)Total populationMedian household income (% of state median household income)Current asthma among adults aged greater than or equal to 18 yearsCoronary heart disease among adults aged greater than or equal to 18 yearsCancer (excluding skin cancer) among adults aged greater than or equal to 18 yearsCurrent lack of health insurance among adults aged 18-64 yearsDiagnosed diabetes among adults aged greater than or equal to 18 years...Michigan EJSCREEN Priority CommunitySVI - Socioeconomic Index (percentile)SVI - Household Composition Index (percentile)SVI- Minority Status/Language Index (percentile)SVI- Housing Type/Transportation Index (percentile)Overall rank for Social Vulnerability Indices (percentile)At or above 90 for overall percentile ranking according to Social Vulnerability IndicesMapping for Environmental Justice Final PercentileMapping for Environmental Justice Final ScoreMapping for Environmental Justice Priority Community
001073001100True0.284897.000.7311.207.206.7016.6019.30...NaN0.620.980.500.400.69FalseNaNNaNNaN
101073001400True0.181906.000.7111.109.107.3021.4022.40...NaN0.800.570.850.230.68FalseNaNNaNNaN
201073002000False0.444215.000.5413.509.506.1025.4022.80...NaN0.950.820.730.960.97TrueNaNNaNNaN
301073003802False0.415149.000.7712.006.605.6020.9018.60...NaN0.850.810.500.490.76FalseNaNNaNNaN
401073004000True0.472621.000.3713.1010.006.3024.5025.00...NaN0.960.710.860.850.95TrueNaNNaNNaN
\n", + "

5 rows × 661 columns

\n", + "
" + ], + "text/plain": [ + " GEOID10_TRACT Persistent Poverty Census Tract Housing burden (percent) \\\n", + "0 01073001100 True 0.28 \n", + "1 01073001400 True 0.18 \n", + "2 01073002000 False 0.44 \n", + "3 01073003802 False 0.41 \n", + "4 01073004000 True 0.47 \n", + "\n", + " Total population \\\n", + "0 4897.00 \n", + "1 1906.00 \n", + "2 4215.00 \n", + "3 5149.00 \n", + "4 2621.00 \n", + "\n", + " Median household income (% of state median household income) \\\n", + "0 0.73 \n", + "1 0.71 \n", + "2 0.54 \n", + "3 0.77 \n", + "4 0.37 \n", + "\n", + " Current asthma among adults aged greater than or equal to 18 years \\\n", + "0 11.20 \n", + "1 11.10 \n", + "2 13.50 \n", + "3 12.00 \n", + "4 13.10 \n", + "\n", + " Coronary heart disease among adults aged greater than or equal to 18 years \\\n", + "0 7.20 \n", + "1 9.10 \n", + "2 9.50 \n", + "3 6.60 \n", + "4 10.00 \n", + "\n", + " Cancer (excluding skin cancer) among adults aged greater than or equal to 18 years \\\n", + "0 6.70 \n", + "1 7.30 \n", + "2 6.10 \n", + "3 5.60 \n", + "4 6.30 \n", + "\n", + " Current lack of health insurance among adults aged 18-64 years \\\n", + "0 16.60 \n", + "1 21.40 \n", + "2 25.40 \n", + "3 20.90 \n", + "4 24.50 \n", + "\n", + " Diagnosed diabetes among adults aged greater than or equal to 18 years \\\n", + "0 19.30 \n", + "1 22.40 \n", + "2 22.80 \n", + "3 18.60 \n", + "4 25.00 \n", + "\n", + " ... Michigan EJSCREEN Priority Community \\\n", + "0 ... NaN \n", + "1 ... NaN \n", + "2 ... NaN \n", + "3 ... NaN \n", + "4 ... NaN \n", + "\n", + " SVI - Socioeconomic Index (percentile) \\\n", + "0 0.62 \n", + "1 0.80 \n", + "2 0.95 \n", + "3 0.85 \n", + "4 0.96 \n", + "\n", + " SVI - Household Composition Index (percentile) \\\n", + "0 0.98 \n", + "1 0.57 \n", + "2 0.82 \n", + "3 0.81 \n", + "4 0.71 \n", + "\n", + " SVI- Minority Status/Language Index (percentile) \\\n", + "0 0.50 \n", + "1 0.85 \n", + "2 0.73 \n", + "3 0.50 \n", + "4 0.86 \n", + "\n", + " SVI- Housing Type/Transportation Index (percentile) \\\n", + "0 0.40 \n", + "1 0.23 \n", + "2 0.96 \n", + "3 0.49 \n", + "4 0.85 \n", + "\n", + " Overall rank for Social Vulnerability Indices (percentile) \\\n", + "0 0.69 \n", + "1 0.68 \n", + "2 0.97 \n", + "3 0.76 \n", + "4 0.95 \n", + "\n", + " At or above 90 for overall percentile ranking according to Social Vulnerability Indices \\\n", + "0 False \n", + "1 False \n", + "2 True \n", + "3 False \n", + "4 True \n", + "\n", + " Mapping for Environmental Justice Final Percentile \\\n", + "0 NaN \n", + "1 NaN \n", + "2 NaN \n", + "3 NaN \n", + "4 NaN \n", + "\n", + " Mapping for Environmental Justice Final Score \\\n", + "0 NaN \n", + "1 NaN \n", + "2 NaN \n", + "3 NaN \n", + "4 NaN \n", + "\n", + " Mapping for Environmental Justice Priority Community \n", + "0 NaN \n", + "1 NaN \n", + "2 NaN \n", + "3 NaN \n", + "4 NaN \n", + "\n", + "[5 rows x 661 columns]" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Join all dataframes that use tracts\n", "census_tract_dfs = [\n", @@ -467,9 +2876,7 @@ " census_tract_dfs,\n", ")\n", "\n", - "tract_values = (\n", - " merged_df[ExtractTransformLoad.GEOID_TRACT_FIELD_NAME].str.len().unique()\n", - ")\n", + "tract_values = merged_df[ExtractTransformLoad.GEOID_TRACT_FIELD_NAME].str.len().unique()\n", "if any(tract_values != [11]):\n", " print(tract_values)\n", " raise ValueError(\"Some of the census tract data has the wrong length.\")\n", @@ -482,10 +2889,92 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 17, "id": "2de78f71", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Tract is >20% HOLC Grade DTract is >50% HOLC Grade DTract is >75% HOLC Grade D
0TrueFalseFalse
1TrueTrueTrue
2FalseFalseFalse
3TrueFalseFalse
4TrueFalseFalse
\n", + "
" + ], + "text/plain": [ + " Tract is >20% HOLC Grade D Tract is >50% HOLC Grade D \\\n", + "0 True False \n", + "1 True True \n", + "2 False False \n", + "3 True False \n", + "4 True False \n", + "\n", + " Tract is >75% HOLC Grade D \n", + "0 False \n", + "1 True \n", + "2 False \n", + "3 False \n", + "4 False " + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Special handling for HOLC.\n", "# Fill in the null HOLC values as `False`. Otherwise the comparison tool will not run comparisons in states\n", @@ -498,7 +2987,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 18, "id": "980c0f66", "metadata": { "scrolled": true @@ -692,12 +3181,97 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 19, "id": "4b510cb1", "metadata": { "scrolled": true }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Converting calenviroscreen_priority_community to boolean.\n", + "Converting Mapping for Environmental Justice Priority Community to boolean.\n", + "Converting At or above 75 for overall percentile for the RSEI score to boolean.\n", + "Converting Persistent Poverty, Tract Level to boolean.\n", + "Converting Maryland EJSCREEN Priority Community to boolean.\n", + "Converting Energy-related alternative definition of communities to boolean.\n", + "Converting At or above 90 for overall percentile ranking according to Social Vulnerability Indices to boolean.\n", + "Converting Michigan EJSCREEN Priority Community to boolean.\n" + ] + }, + { + "data": { + "application/vnd.jupyter.widget-view+json": { + "model_id": "98501c61ec76447fa7b2e30d230c5886", + "version_major": 2, + "version_minor": 0 + }, + "text/plain": [ + " 0%| | 0/1 [00:0020% HOLC Grade D\n", + "Basic stats for Tract is >50% HOLC Grade D\n", + "Basic stats for Tract is >75% HOLC Grade D\n" + ] + } + ], "source": [ "directory = COMPARISON_OUTPUTS_DIR / \"tracts_basic_stats\"\n", "directory.mkdir(parents=True, exist_ok=True)\n", @@ -1011,14 +3619,10 @@ " column_character = get_excel_column_name(column_index)\n", "\n", " # Set all columns to larger width\n", - " worksheet.set_column(\n", - " f\"{column_character}:{column_character}\", column_width\n", - " )\n", + " worksheet.set_column(f\"{column_character}:{column_character}\", column_width)\n", "\n", " # Add green to red conditional formatting.\n", - " column_ranges = (\n", - " f\"{column_character}2:{column_character}{len(basic_stats_df)+1}\"\n", - " )\n", + " column_ranges = f\"{column_character}2:{column_character}{len(basic_stats_df)+1}\"\n", " worksheet.conditional_format(\n", " column_ranges,\n", " # Min: green, max: red.\n", @@ -1031,11 +3635,7 @@ "\n", " # Special formatting for all percent columns\n", " # Note: we can't just search for `percent`, because that's included in the word `percentile`.\n", - " if (\n", - " \"percent \" in column\n", - " or \"(percent)\" in column\n", - " or \"Percent \" in column\n", - " ):\n", + " if \"percent \" in column or \"(percent)\" in column or \"Percent \" in column:\n", " # Make these columns percentages.\n", " percentage_format = workbook.add_format({\"num_format\": \"0%\"})\n", " worksheet.set_column(\n", @@ -1064,15 +3664,9 @@ " temp_df[index.priority_communities_field] == True\n", " )\n", "\n", - " grouped_df = (\n", - " temp_df.groupby(index.priority_communities_field).mean().reset_index()\n", - " )\n", - " result_df = grouped_df[\n", - " [index.priority_communities_field] + comparison_fields\n", - " ]\n", - " result_df.to_csv(\n", - " directory / f\"{index.method_name} Basic Stats.csv\", index=False\n", - " )\n", + " grouped_df = temp_df.groupby(index.priority_communities_field).mean().reset_index()\n", + " result_df = grouped_df[[index.priority_communities_field] + comparison_fields]\n", + " result_df.to_csv(directory / f\"{index.method_name} Basic Stats.csv\", index=False)\n", " write_basic_stats_excel(\n", " basic_stats_df=result_df,\n", " file_path=directory / f\"{index.method_name} Basic Stats.xlsx\",\n", @@ -1081,12 +3675,685 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 21, "id": "d1eec560", "metadata": { "scrolled": true }, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='Definition L', priority_communities_field='Definition L (communities)').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='NMTC', priority_communities_field='NMTC (communities)').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='Score F', priority_communities_field='Score F (communities)').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='Definition M', priority_communities_field='Definition M (communities)') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='NMTC', priority_communities_field='NMTC (communities)').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='Score F', priority_communities_field='Score F (communities)').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='Definition L', priority_communities_field='Definition L (communities)') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)') and Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)').\n", + "Comparing Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)') and Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)').\n", + "Comparing Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)') and Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)').\n", + "Comparing Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)') and Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)').\n", + "Comparing Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)') and Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)').\n", + "Comparing Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)') and Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)').\n", + "Comparing Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)') and Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)').\n", + "Comparing Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)') and Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)').\n", + "Comparing Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)') and Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)').\n", + "Comparing Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)') and Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)').\n", + "Comparing Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)') and Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)').\n", + "Comparing Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)') and Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)').\n", + "Comparing Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)') and Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)').\n", + "Comparing Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)') and Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)').\n", + "Comparing Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)') and Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)').\n", + "Comparing Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)') and Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)') and Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)') and Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)').\n", + "Comparing Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)') and Index(method_name='NMTC', priority_communities_field='NMTC (communities)').\n", + "Comparing Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)') and Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)').\n", + "Comparing Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)') and Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)').\n", + "Comparing Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)') and Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)').\n", + "Comparing Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)') and Index(method_name='Score F', priority_communities_field='Score F (communities)').\n", + "Comparing Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)') and Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community').\n", + "Comparing Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)') and Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community').\n", + "Comparing Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)') and Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score').\n", + "Comparing Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)') and Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level').\n", + "Comparing Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)') and Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)') and Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities').\n", + "Comparing Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)') and Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices').\n", + "Comparing Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)') and Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)') and Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D').\n", + "Comparing Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='Climate Factor (Definition M)', priority_communities_field='Climate Factor (Definition M)') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)') and Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)').\n", + "Comparing Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)') and Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)').\n", + "Comparing Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)') and Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)').\n", + "Comparing Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)') and Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)').\n", + "Comparing Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)') and Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)').\n", + "Comparing Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)') and Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)').\n", + "Comparing Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)') and Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)').\n", + "Comparing Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)') and Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)').\n", + "Comparing Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)') and Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)').\n", + "Comparing Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)') and Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)').\n", + "Comparing Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)') and Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)').\n", + "Comparing Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)') and Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)').\n", + "Comparing Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)') and Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)').\n", + "Comparing Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)') and Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)').\n", + "Comparing Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)') and Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)') and Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)') and Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)').\n", + "Comparing Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)') and Index(method_name='NMTC', priority_communities_field='NMTC (communities)').\n", + "Comparing Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)') and Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)').\n", + "Comparing Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)') and Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)').\n", + "Comparing Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)') and Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)').\n", + "Comparing Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)') and Index(method_name='Score F', priority_communities_field='Score F (communities)').\n", + "Comparing Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)') and Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community').\n", + "Comparing Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)') and Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community').\n", + "Comparing Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)') and Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score').\n", + "Comparing Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)') and Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level').\n", + "Comparing Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)') and Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)') and Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities').\n", + "Comparing Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)') and Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices').\n", + "Comparing Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)') and Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)') and Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D').\n", + "Comparing Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='Energy Factor (Definition M)', priority_communities_field='Energy Factor (Definition M)') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)') and Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)').\n", + "Comparing Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)') and Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)').\n", + "Comparing Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)') and Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)').\n", + "Comparing Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)') and Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)').\n", + "Comparing Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)') and Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)').\n", + "Comparing Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)') and Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)').\n", + "Comparing Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)') and Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)').\n", + "Comparing Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)') and Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)').\n", + "Comparing Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)') and Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)').\n", + "Comparing Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)') and Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)').\n", + "Comparing Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)') and Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)').\n", + "Comparing Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)') and Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)').\n", + "Comparing Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)') and Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)').\n", + "Comparing Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)') and Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)') and Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)') and Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)').\n", + "Comparing Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)') and Index(method_name='NMTC', priority_communities_field='NMTC (communities)').\n", + "Comparing Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)') and Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)').\n", + "Comparing Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)') and Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)').\n", + "Comparing Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)') and Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)').\n", + "Comparing Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)') and Index(method_name='Score F', priority_communities_field='Score F (communities)').\n", + "Comparing Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)') and Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community').\n", + "Comparing Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)') and Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community').\n", + "Comparing Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)') and Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score').\n", + "Comparing Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)') and Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level').\n", + "Comparing Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)') and Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)') and Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities').\n", + "Comparing Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)') and Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices').\n", + "Comparing Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)') and Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)') and Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D').\n", + "Comparing Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='Transportation Factor (Definition M)', priority_communities_field='Transportation Factor (Definition M)') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)') and Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)').\n", + "Comparing Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)') and Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)').\n", + "Comparing Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)') and Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)').\n", + "Comparing Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)') and Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)').\n", + "Comparing Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)') and Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)').\n", + "Comparing Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)') and Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)').\n", + "Comparing Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)') and Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)').\n", + "Comparing Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)') and Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)').\n", + "Comparing Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)') and Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)').\n", + "Comparing Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)') and Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)').\n", + "Comparing Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)') and Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)').\n", + "Comparing Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)') and Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)').\n", + "Comparing Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)') and Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)') and Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)') and Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)').\n", + "Comparing Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)') and Index(method_name='NMTC', priority_communities_field='NMTC (communities)').\n", + "Comparing Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)') and Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)').\n", + "Comparing Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)') and Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)').\n", + "Comparing Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)') and Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)').\n", + "Comparing Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)') and Index(method_name='Score F', priority_communities_field='Score F (communities)').\n", + "Comparing Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)') and Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community').\n", + "Comparing Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)') and Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community').\n", + "Comparing Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)') and Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score').\n", + "Comparing Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)') and Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level').\n", + "Comparing Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)') and Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)') and Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities').\n", + "Comparing Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)') and Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices').\n", + "Comparing Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)') and Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)') and Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D').\n", + "Comparing Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='Housing Factor (Definition M)', priority_communities_field='Housing Factor (Definition M)') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)') and Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)').\n", + "Comparing Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)') and Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)').\n", + "Comparing Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)') and Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)').\n", + "Comparing Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)') and Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)').\n", + "Comparing Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)') and Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)').\n", + "Comparing Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)') and Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)').\n", + "Comparing Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)') and Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)').\n", + "Comparing Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)') and Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)').\n", + "Comparing Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)') and Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)').\n", + "Comparing Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)') and Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)').\n", + "Comparing Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)') and Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)').\n", + "Comparing Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)') and Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)') and Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)') and Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)').\n", + "Comparing Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)') and Index(method_name='NMTC', priority_communities_field='NMTC (communities)').\n", + "Comparing Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)') and Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)').\n", + "Comparing Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)') and Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)').\n", + "Comparing Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)') and Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)').\n", + "Comparing Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)') and Index(method_name='Score F', priority_communities_field='Score F (communities)').\n", + "Comparing Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)') and Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community').\n", + "Comparing Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)') and Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community').\n", + "Comparing Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)') and Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score').\n", + "Comparing Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)') and Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level').\n", + "Comparing Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)') and Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)') and Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities').\n", + "Comparing Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)') and Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices').\n", + "Comparing Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)') and Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)') and Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D').\n", + "Comparing Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='Pollution Factor (Definition M)', priority_communities_field='Pollution Factor (Definition M)') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)') and Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)').\n", + "Comparing Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)') and Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)').\n", + "Comparing Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)') and Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)').\n", + "Comparing Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)') and Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)').\n", + "Comparing Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)') and Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)').\n", + "Comparing Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)') and Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)').\n", + "Comparing Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)') and Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)').\n", + "Comparing Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)') and Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)').\n", + "Comparing Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)') and Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)').\n", + "Comparing Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)') and Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)').\n", + "Comparing Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)') and Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)') and Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)') and Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)').\n", + "Comparing Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)') and Index(method_name='NMTC', priority_communities_field='NMTC (communities)').\n", + "Comparing Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)') and Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)').\n", + "Comparing Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)') and Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)').\n", + "Comparing Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)') and Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)').\n", + "Comparing Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)') and Index(method_name='Score F', priority_communities_field='Score F (communities)').\n", + "Comparing Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)') and Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community').\n", + "Comparing Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)') and Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community').\n", + "Comparing Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)') and Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score').\n", + "Comparing Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)') and Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level').\n", + "Comparing Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)') and Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)') and Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities').\n", + "Comparing Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)') and Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices').\n", + "Comparing Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)') and Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)') and Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D').\n", + "Comparing Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='Water Factor (Definition M)', priority_communities_field='Water Factor (Definition M)') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)') and Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)').\n", + "Comparing Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)') and Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)').\n", + "Comparing Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)') and Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)').\n", + "Comparing Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)') and Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)').\n", + "Comparing Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)') and Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)').\n", + "Comparing Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)') and Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)').\n", + "Comparing Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)') and Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)').\n", + "Comparing Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)') and Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)').\n", + "Comparing Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)') and Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)').\n", + "Comparing Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)') and Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)') and Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)') and Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)').\n", + "Comparing Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)') and Index(method_name='NMTC', priority_communities_field='NMTC (communities)').\n", + "Comparing Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)') and Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)').\n", + "Comparing Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)') and Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)').\n", + "Comparing Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)') and Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)').\n", + "Comparing Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)') and Index(method_name='Score F', priority_communities_field='Score F (communities)').\n", + "Comparing Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)') and Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community').\n", + "Comparing Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)') and Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community').\n", + "Comparing Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)') and Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score').\n", + "Comparing Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)') and Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level').\n", + "Comparing Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)') and Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)') and Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities').\n", + "Comparing Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)') and Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices').\n", + "Comparing Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)') and Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)') and Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D').\n", + "Comparing Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='Health Factor (Definition M)', priority_communities_field='Health Factor (Definition M)') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)') and Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)').\n", + "Comparing Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)') and Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)').\n", + "Comparing Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)') and Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)').\n", + "Comparing Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)') and Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)').\n", + "Comparing Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)') and Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)').\n", + "Comparing Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)') and Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)').\n", + "Comparing Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)') and Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)').\n", + "Comparing Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)') and Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)').\n", + "Comparing Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)') and Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)') and Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)') and Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)').\n", + "Comparing Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)') and Index(method_name='NMTC', priority_communities_field='NMTC (communities)').\n", + "Comparing Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)') and Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)').\n", + "Comparing Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)') and Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)').\n", + "Comparing Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)') and Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)').\n", + "Comparing Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)') and Index(method_name='Score F', priority_communities_field='Score F (communities)').\n", + "Comparing Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)') and Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community').\n", + "Comparing Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)') and Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community').\n", + "Comparing Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)') and Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score').\n", + "Comparing Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)') and Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level').\n", + "Comparing Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)') and Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)') and Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities').\n", + "Comparing Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)') and Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices').\n", + "Comparing Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)') and Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)') and Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D').\n", + "Comparing Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='Workforce Factor (Definition M)', priority_communities_field='Workforce Factor (Definition M)') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)') and Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)') and Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)') and Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)') and Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)') and Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)') and Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)') and Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)') and Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)') and Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)') and Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)') and Index(method_name='NMTC', priority_communities_field='NMTC (communities)').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)') and Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)') and Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)') and Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)') and Index(method_name='Score F', priority_communities_field='Score F (communities)').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)') and Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)') and Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)') and Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)') and Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)') and Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)') and Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)') and Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)') and Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)') and Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition M)', priority_communities_field='Any Non-Workforce Factor (Definition M)') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)') and Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)').\n", + "Comparing Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)') and Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)').\n", + "Comparing Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)') and Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)').\n", + "Comparing Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)') and Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)').\n", + "Comparing Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)') and Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)').\n", + "Comparing Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)') and Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)').\n", + "Comparing Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)') and Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)') and Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)') and Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)').\n", + "Comparing Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)') and Index(method_name='NMTC', priority_communities_field='NMTC (communities)').\n", + "Comparing Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)') and Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)').\n", + "Comparing Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)') and Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)').\n", + "Comparing Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)') and Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)').\n", + "Comparing Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)') and Index(method_name='Score F', priority_communities_field='Score F (communities)').\n", + "Comparing Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)') and Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community').\n", + "Comparing Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)') and Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community').\n", + "Comparing Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)') and Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score').\n", + "Comparing Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)') and Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level').\n", + "Comparing Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)') and Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)') and Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities').\n", + "Comparing Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)') and Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices').\n", + "Comparing Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)') and Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)') and Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D').\n", + "Comparing Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='Climate Factor (Definition L)', priority_communities_field='Climate Factor (Definition L)') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)') and Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)').\n", + "Comparing Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)') and Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)').\n", + "Comparing Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)') and Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)').\n", + "Comparing Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)') and Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)').\n", + "Comparing Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)') and Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)').\n", + "Comparing Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)') and Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)') and Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)') and Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)').\n", + "Comparing Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)') and Index(method_name='NMTC', priority_communities_field='NMTC (communities)').\n", + "Comparing Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)') and Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)').\n", + "Comparing Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)') and Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)').\n", + "Comparing Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)') and Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)').\n", + "Comparing Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)') and Index(method_name='Score F', priority_communities_field='Score F (communities)').\n", + "Comparing Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)') and Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community').\n", + "Comparing Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)') and Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community').\n", + "Comparing Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)') and Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score').\n", + "Comparing Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)') and Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level').\n", + "Comparing Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)') and Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)') and Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities').\n", + "Comparing Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)') and Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices').\n", + "Comparing Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)') and Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)') and Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D').\n", + "Comparing Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='Energy Factor (Definition L)', priority_communities_field='Energy Factor (Definition L)') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)') and Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)').\n", + "Comparing Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)') and Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)').\n", + "Comparing Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)') and Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)').\n", + "Comparing Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)') and Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)').\n", + "Comparing Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)') and Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)') and Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)') and Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)').\n", + "Comparing Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)') and Index(method_name='NMTC', priority_communities_field='NMTC (communities)').\n", + "Comparing Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)') and Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)').\n", + "Comparing Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)') and Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)').\n", + "Comparing Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)') and Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)').\n", + "Comparing Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)') and Index(method_name='Score F', priority_communities_field='Score F (communities)').\n", + "Comparing Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)') and Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community').\n", + "Comparing Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)') and Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community').\n", + "Comparing Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)') and Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score').\n", + "Comparing Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)') and Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level').\n", + "Comparing Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)') and Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)') and Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities').\n", + "Comparing Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)') and Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices').\n", + "Comparing Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)') and Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)') and Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D').\n", + "Comparing Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='Transportation Factor (Definition L)', priority_communities_field='Transportation Factor (Definition L)') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)') and Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)').\n", + "Comparing Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)') and Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)').\n", + "Comparing Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)') and Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)').\n", + "Comparing Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)') and Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)') and Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)') and Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)').\n", + "Comparing Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)') and Index(method_name='NMTC', priority_communities_field='NMTC (communities)').\n", + "Comparing Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)') and Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)').\n", + "Comparing Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)') and Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)').\n", + "Comparing Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)') and Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)').\n", + "Comparing Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)') and Index(method_name='Score F', priority_communities_field='Score F (communities)').\n", + "Comparing Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)') and Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community').\n", + "Comparing Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)') and Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community').\n", + "Comparing Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)') and Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score').\n", + "Comparing Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)') and Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level').\n", + "Comparing Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)') and Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)') and Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities').\n", + "Comparing Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)') and Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices').\n", + "Comparing Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)') and Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)') and Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D').\n", + "Comparing Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='Housing Factor (Definition L)', priority_communities_field='Housing Factor (Definition L)') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)') and Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)').\n", + "Comparing Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)') and Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)').\n", + "Comparing Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)') and Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)') and Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)') and Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)').\n", + "Comparing Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)') and Index(method_name='NMTC', priority_communities_field='NMTC (communities)').\n", + "Comparing Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)') and Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)').\n", + "Comparing Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)') and Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)').\n", + "Comparing Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)') and Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)').\n", + "Comparing Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)') and Index(method_name='Score F', priority_communities_field='Score F (communities)').\n", + "Comparing Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)') and Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community').\n", + "Comparing Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)') and Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community').\n", + "Comparing Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)') and Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score').\n", + "Comparing Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)') and Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level').\n", + "Comparing Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)') and Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)') and Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities').\n", + "Comparing Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)') and Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices').\n", + "Comparing Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)') and Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)') and Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D').\n", + "Comparing Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='Pollution Factor (Definition L)', priority_communities_field='Pollution Factor (Definition L)') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)') and Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)').\n", + "Comparing Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)') and Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)') and Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)') and Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)').\n", + "Comparing Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)') and Index(method_name='NMTC', priority_communities_field='NMTC (communities)').\n", + "Comparing Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)') and Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)').\n", + "Comparing Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)') and Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)').\n", + "Comparing Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)') and Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)').\n", + "Comparing Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)') and Index(method_name='Score F', priority_communities_field='Score F (communities)').\n", + "Comparing Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)') and Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community').\n", + "Comparing Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)') and Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community').\n", + "Comparing Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)') and Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score').\n", + "Comparing Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)') and Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level').\n", + "Comparing Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)') and Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)') and Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities').\n", + "Comparing Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)') and Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices').\n", + "Comparing Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)') and Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)') and Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D').\n", + "Comparing Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='Water Factor (Definition L)', priority_communities_field='Water Factor (Definition L)') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)') and Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)') and Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)') and Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)').\n", + "Comparing Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)') and Index(method_name='NMTC', priority_communities_field='NMTC (communities)').\n", + "Comparing Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)') and Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)').\n", + "Comparing Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)') and Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)').\n", + "Comparing Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)') and Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)').\n", + "Comparing Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)') and Index(method_name='Score F', priority_communities_field='Score F (communities)').\n", + "Comparing Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)') and Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community').\n", + "Comparing Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)') and Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community').\n", + "Comparing Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)') and Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score').\n", + "Comparing Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)') and Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level').\n", + "Comparing Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)') and Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)') and Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities').\n", + "Comparing Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)') and Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices').\n", + "Comparing Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)') and Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)') and Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D').\n", + "Comparing Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='Health Factor (Definition L)', priority_communities_field='Health Factor (Definition L)') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)') and Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)').\n", + "Comparing Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)') and Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)').\n", + "Comparing Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)') and Index(method_name='NMTC', priority_communities_field='NMTC (communities)').\n", + "Comparing Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)') and Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)').\n", + "Comparing Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)') and Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)').\n", + "Comparing Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)') and Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)').\n", + "Comparing Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)') and Index(method_name='Score F', priority_communities_field='Score F (communities)').\n", + "Comparing Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)') and Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community').\n", + "Comparing Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)') and Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community').\n", + "Comparing Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)') and Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score').\n", + "Comparing Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)') and Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level').\n", + "Comparing Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)') and Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)') and Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities').\n", + "Comparing Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)') and Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices').\n", + "Comparing Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)') and Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)') and Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D').\n", + "Comparing Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='Workforce Factor (Definition L)', priority_communities_field='Workforce Factor (Definition L)') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)') and Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)') and Index(method_name='NMTC', priority_communities_field='NMTC (communities)').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)') and Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)') and Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)') and Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)') and Index(method_name='Score F', priority_communities_field='Score F (communities)').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)') and Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)') and Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)') and Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)') and Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)') and Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)') and Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)') and Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)') and Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)') and Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='Any Non-Workforce Factor (Definition L)', priority_communities_field='Any Non-Workforce Factor (Definition L)') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)') and Index(method_name='NMTC', priority_communities_field='NMTC (communities)').\n", + "Comparing Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)') and Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)').\n", + "Comparing Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)') and Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)').\n", + "Comparing Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)') and Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)').\n", + "Comparing Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)') and Index(method_name='Score F', priority_communities_field='Score F (communities)').\n", + "Comparing Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)') and Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community').\n", + "Comparing Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)') and Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community').\n", + "Comparing Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)') and Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score').\n", + "Comparing Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)') and Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level').\n", + "Comparing Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)') and Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community').\n", + "Comparing Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)') and Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities').\n", + "Comparing Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)') and Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices').\n", + "Comparing Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)') and Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community').\n", + "Comparing Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)') and Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D').\n", + "Comparing Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='NMTC Modified', priority_communities_field='Score G (communities)') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='NMTC', priority_communities_field='NMTC (communities)') and Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)').\n", + "Comparing Index(method_name='NMTC', priority_communities_field='NMTC (communities)') and Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)').\n", + "Comparing Index(method_name='NMTC', priority_communities_field='NMTC (communities)') and Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)').\n", + "Comparing Index(method_name='NMTC', priority_communities_field='NMTC (communities)') and Index(method_name='Score F', priority_communities_field='Score F (communities)').\n", + "Comparing Index(method_name='NMTC', priority_communities_field='NMTC (communities)') and Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community').\n", + "Comparing Index(method_name='NMTC', priority_communities_field='NMTC (communities)') and Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community').\n", + "Comparing Index(method_name='NMTC', priority_communities_field='NMTC (communities)') and Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score').\n", + "Comparing Index(method_name='NMTC', priority_communities_field='NMTC (communities)') and Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level').\n", + "Comparing Index(method_name='NMTC', priority_communities_field='NMTC (communities)') and Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community').\n", + "Comparing Index(method_name='NMTC', priority_communities_field='NMTC (communities)') and Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities').\n", + "Comparing Index(method_name='NMTC', priority_communities_field='NMTC (communities)') and Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices').\n", + "Comparing Index(method_name='NMTC', priority_communities_field='NMTC (communities)') and Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community').\n", + "Comparing Index(method_name='NMTC', priority_communities_field='NMTC (communities)') and Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D').\n", + "Comparing Index(method_name='NMTC', priority_communities_field='NMTC (communities)') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='NMTC', priority_communities_field='NMTC (communities)') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)') and Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)').\n", + "Comparing Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)') and Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)').\n", + "Comparing Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)') and Index(method_name='Score F', priority_communities_field='Score F (communities)').\n", + "Comparing Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)') and Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community').\n", + "Comparing Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)') and Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community').\n", + "Comparing Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)') and Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score').\n", + "Comparing Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)') and Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level').\n", + "Comparing Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)') and Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)') and Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities').\n", + "Comparing Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)') and Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices').\n", + "Comparing Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)') and Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)') and Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D').\n", + "Comparing Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='Score C', priority_communities_field='Score C (top 25th percentile)') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)') and Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)').\n", + "Comparing Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)') and Index(method_name='Score F', priority_communities_field='Score F (communities)').\n", + "Comparing Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)') and Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community').\n", + "Comparing Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)') and Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community').\n", + "Comparing Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)') and Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score').\n", + "Comparing Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)') and Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level').\n", + "Comparing Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)') and Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)') and Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities').\n", + "Comparing Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)') and Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices').\n", + "Comparing Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)') and Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)') and Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D').\n", + "Comparing Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='Score D (30th percentile)', priority_communities_field='Score D (top 30th percentile)') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)') and Index(method_name='Score F', priority_communities_field='Score F (communities)').\n", + "Comparing Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)') and Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community').\n", + "Comparing Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)') and Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community').\n", + "Comparing Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)') and Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score').\n", + "Comparing Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)') and Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level').\n", + "Comparing Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)') and Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)') and Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities').\n", + "Comparing Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)') and Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices').\n", + "Comparing Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)') and Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)') and Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D').\n", + "Comparing Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='Score D (25th percentile)', priority_communities_field='Score D (top 25th percentile)') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='Score F', priority_communities_field='Score F (communities)') and Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community').\n", + "Comparing Index(method_name='Score F', priority_communities_field='Score F (communities)') and Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community').\n", + "Comparing Index(method_name='Score F', priority_communities_field='Score F (communities)') and Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score').\n", + "Comparing Index(method_name='Score F', priority_communities_field='Score F (communities)') and Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level').\n", + "Comparing Index(method_name='Score F', priority_communities_field='Score F (communities)') and Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Score F', priority_communities_field='Score F (communities)') and Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities').\n", + "Comparing Index(method_name='Score F', priority_communities_field='Score F (communities)') and Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices').\n", + "Comparing Index(method_name='Score F', priority_communities_field='Score F (communities)') and Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Score F', priority_communities_field='Score F (communities)') and Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D').\n", + "Comparing Index(method_name='Score F', priority_communities_field='Score F (communities)') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='Score F', priority_communities_field='Score F (communities)') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community') and Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community').\n", + "Comparing Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community') and Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score').\n", + "Comparing Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community') and Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level').\n", + "Comparing Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community') and Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community').\n", + "Comparing Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community') and Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities').\n", + "Comparing Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community') and Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices').\n", + "Comparing Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community') and Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community').\n", + "Comparing Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community') and Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D').\n", + "Comparing Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='CalEnviroScreen 4.0', priority_communities_field='calenviroscreen_priority_community') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community') and Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score').\n", + "Comparing Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community') and Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level').\n", + "Comparing Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community') and Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community') and Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities').\n", + "Comparing Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community') and Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices').\n", + "Comparing Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community') and Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community') and Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D').\n", + "Comparing Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='Mapping for EJ', priority_communities_field='Mapping for Environmental Justice Priority Community') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score') and Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level').\n", + "Comparing Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score') and Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community').\n", + "Comparing Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score') and Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities').\n", + "Comparing Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score') and Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices').\n", + "Comparing Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score') and Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community').\n", + "Comparing Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score') and Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D').\n", + "Comparing Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='EPA RSEI Aggregate Microdata', priority_communities_field='At or above 75 for overall percentile for the RSEI score') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level') and Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level') and Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities').\n", + "Comparing Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level') and Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices').\n", + "Comparing Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level') and Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level') and Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D').\n", + "Comparing Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='Persistent Poverty', priority_communities_field='Persistent Poverty, Tract Level') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community') and Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities').\n", + "Comparing Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community') and Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices').\n", + "Comparing Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community') and Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community') and Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D').\n", + "Comparing Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='Maryland EJSCREEN', priority_communities_field='Maryland EJSCREEN Priority Community') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities') and Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices').\n", + "Comparing Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities') and Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community').\n", + "Comparing Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities') and Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D').\n", + "Comparing Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='Energy-related alternative definition of communities', priority_communities_field='Energy-related alternative definition of communities') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices') and Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community').\n", + "Comparing Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices') and Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D').\n", + "Comparing Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='CDC SVI Index', priority_communities_field='At or above 90 for overall percentile ranking according to Social Vulnerability Indices') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community') and Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D').\n", + "Comparing Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='Michigan EJSCREEN', priority_communities_field='Michigan EJSCREEN Priority Community') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D') and Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D').\n", + "Comparing Index(method_name='Tract is >20% HOLC Grade D', priority_communities_field='Tract is >20% HOLC Grade D') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n", + "Comparing Index(method_name='Tract is >50% HOLC Grade D', priority_communities_field='Tract is >50% HOLC Grade D') and Index(method_name='Tract is >75% HOLC Grade D', priority_communities_field='Tract is >75% HOLC Grade D').\n" + ] + } + ], "source": [ "# Compare census tract scores to each other, running secondary analysis on\n", "# characteristics of census tracts prioritized by one but not the other.\n", @@ -1121,9 +4388,7 @@ "\n", " # Also add in the count of census tracts.\n", " count_field_name = \"Count of census tracts\"\n", - " comparison_df[count_field_name] = grouped_df.size().to_frame(\n", - " count_field_name\n", - " )\n", + " comparison_df[count_field_name] = grouped_df.size().to_frame(count_field_name)\n", "\n", " comparison_df = comparison_df.reset_index()\n", "\n", @@ -1138,9 +4403,7 @@ "\n", " # Put criteria description column first.\n", " columns_to_put_first = (\n", - " [criteria_description_field_name]\n", - " + fields_to_group_by\n", - " + [count_field_name]\n", + " [criteria_description_field_name] + fields_to_group_by + [count_field_name]\n", " )\n", " new_column_order = columns_to_put_first + [\n", " col for col in comparison_df.columns if col not in columns_to_put_first\n", @@ -1171,9 +4434,7 @@ "\n", " # Convert the dataframe to an XlsxWriter Excel object. We also turn off the\n", " # index column at the left of the output dataframe.\n", - " census_tracts_score_comparison_df.to_excel(\n", - " writer, sheet_name=\"Sheet1\", index=False\n", - " )\n", + " census_tracts_score_comparison_df.to_excel(writer, sheet_name=\"Sheet1\", index=False)\n", "\n", " # Get the xlsxwriter workbook and worksheet objects.\n", " workbook = writer.book\n", @@ -1195,9 +4456,7 @@ " column_character = get_excel_column_name(column_index)\n", "\n", " # Set all columns to larger width\n", - " worksheet.set_column(\n", - " f\"{column_character}:{column_character}\", column_width\n", - " )\n", + " worksheet.set_column(f\"{column_character}:{column_character}\", column_width)\n", "\n", " # Add green to red conditional formatting.\n", " column_ranges = f\"{column_character}2:{column_character}{len(census_tracts_score_comparison_df)+1}\"\n", @@ -1213,11 +4472,7 @@ "\n", " # Special formatting for all percent columns\n", " # Note: we can't just search for `percent`, because that's included in the word `percentile`.\n", - " if (\n", - " \"percent \" in column\n", - " or \"(percent)\" in column\n", - " or \"Percent \" in column\n", - " ):\n", + " if \"percent \" in column or \"(percent)\" in column or \"Percent \" in column:\n", " # Make these columns percentages.\n", " percentage_format = workbook.add_format({\"num_format\": \"0%\"})\n", " worksheet.set_column(\n", @@ -1233,9 +4488,7 @@ " # Overwrite both the value and the format of each header cell\n", " # This is because xlsxwriter / pandas has a known bug where it can't wrap text for a dataframe.\n", " # See https://stackoverflow.com/questions/42562977/xlsxwriter-text-wrap-not-working.\n", - " for col_num, value in enumerate(\n", - " census_tracts_score_comparison_df.columns.values\n", - " ):\n", + " for col_num, value in enumerate(census_tracts_score_comparison_df.columns.values):\n", " worksheet.write(0, col_num, value, header_format)\n", "\n", " writer.save()\n", @@ -1287,12 +4540,37 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 22, "id": "48005fad", "metadata": { "scrolled": true }, - "outputs": [], + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "/var/folders/z6/9czv8cpx2hvcycd6slvfp4ph0000gq/T/ipykernel_35872/2594933895.py:125: RuntimeWarning: invalid value encountered in long_scalars\n", + " f\"{true_true_census_tracts} ({true_true_census_tracts / total_census_tracts:.0%}) \"\n", + "/var/folders/z6/9czv8cpx2hvcycd6slvfp4ph0000gq/T/ipykernel_35872/2594933895.py:128: RuntimeWarning: invalid value encountered in long_scalars\n", + " f\"{true_false_census_tracts} ({true_false_census_tracts / total_census_tracts:.0%}) \"\n", + "/var/folders/z6/9czv8cpx2hvcycd6slvfp4ph0000gq/T/ipykernel_35872/2594933895.py:131: RuntimeWarning: invalid value encountered in long_scalars\n", + " f\"{false_true_census_tracts} ({false_true_census_tracts / total_census_tracts:.0%}) \"\n", + "/var/folders/z6/9czv8cpx2hvcycd6slvfp4ph0000gq/T/ipykernel_35872/2594933895.py:134: RuntimeWarning: invalid value encountered in long_scalars\n", + " f\"{false_false_census_tracts} ({false_false_census_tracts / total_census_tracts:.0%}) \"\n" + ] + }, + { + "data": { + "text/plain": [ + "PosixPath('/Users/emmausds/Desktop/justice40-tool/data/data-pipeline/data_pipeline/data/comparison_outputs/20220217-115053/Comparison report - All census tract indices.docx')" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "def write_markdown_and_docx_content(\n", " markdown_content: str,\n", @@ -1464,10 +4742,21 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 23, "id": "7d095ebd", "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "0" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# Note: this is helpful because this file is long-running, so it alerts the user when the\n", "# data analysis is done. Can be removed when converted into scripts. -LMB.\n", @@ -1475,6 +4764,14 @@ "\n", "os.system(\"say 'data analysis is written.'\")" ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "40821ff3-0a06-4881-a33c-f9db487ac3b2", + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { @@ -1493,7 +4790,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.9.6" + "version": "3.9.10" } }, "nbformat": 4, diff --git a/data/data-pipeline/data_pipeline/score/field_names.py b/data/data-pipeline/data_pipeline/score/field_names.py index 6e941bbb..1ac9a619 100644 --- a/data/data-pipeline/data_pipeline/score/field_names.py +++ b/data/data-pipeline/data_pipeline/score/field_names.py @@ -328,6 +328,7 @@ EXPECTED_BUILDING_LOSS_RATE_LOW_INCOME_FIELD = ( f"Greater than or equal to the {PERCENTILE}th percentile" f" for expected building loss rate and is low income?" ) +AGRICULTURAL_VALUE_BOOL_FIELD = "Contains agricultural value" # Clean energy and efficiency PM25_EXPOSURE_LOW_INCOME_FIELD = f"Greater than or equal to the {PERCENTILE}th percentile for PM2.5 exposure and is low income?" diff --git a/data/data-pipeline/data_pipeline/tests/sources/national_risk_index/data/output.csv b/data/data-pipeline/data_pipeline/tests/sources/national_risk_index/data/output.csv index 54d0e663..b01e6d14 100644 --- a/data/data-pipeline/data_pipeline/tests/sources/national_risk_index/data/output.csv +++ b/data/data-pipeline/data_pipeline/tests/sources/national_risk_index/data/output.csv @@ -1,56 +1,56 @@ -GEOID10_TRACT,FEMA Risk Index Expected Annual Loss Score,Expected population loss rate (Natural Hazards Risk Index),Expected agricultural loss rate (Natural Hazards Risk Index),Expected building loss rate (Natural Hazards Risk Index) -06001020100,18.6199401875,0.0000035067,0.0087782352,0.0000661520 -06007040300,24.6571275391,0.0000000358,0.0000290505,0.0000014426 -06007040500,18.7719774304,0.0000034603,0.0000385465,0.0000436593 -15001021010,42.6674572964,0.0000000408,0.0000331733,0.0000018765 -15001021101,35.4631324234,0.0000002677,0.0000337348,0.0000507987 -15007040603,22.2413255033,0.0000182039,0.0107280896,0.0002521232 -15007040700,14.2025996464,0.0000014941,0.0005323264,0.0000207361 -15009030100,16.2238215839,0.0000000311,0.0004061121,0.0000013674 -15009030201,16.5620580551,0.0000000311,0.0000100935,0.0000014265 -15001021402,37.6719247757,0.0000062310,0.0000311565,0.0015187781 -15001021800,25.2568722397,0.0000002271,0.0000337985,0.0000262049 -15009030402,23.9449676493,0.0000000310,0.0000104613,0.0000013104 -15009030800,19.8423994159,0.0000008727,0.0000140751,0.0000109028 -15003010201,18.0813496455,0.0000001010,0.0001248723,0.0001089388 -15007040604,13.8830970216,0.0000023137,0.0000977117,0.0001482071 -15009030303,26.4505931648,0.0000000878,0.0000100823,0.0000069565 -15009030403,18.4437334890,0.0000000310,0.0000104614,0.0000013105 -15009030404,21.7984897602,0.0000000310,0.0000104610,0.0000013088 -15001021601,46.2888122040,0.0000022210,0.0001000049,0.0004101879 -15001021013,31.7870290791,0.0000000365,0.0000291145,0.0000015088 -15001021702,43.0017491363,0.0000038333,0.0006472757,0.0007289681 -15001021704,40.5478070100,0.0000000675,,0.0000124075 -15001021902,24.1028365867,0.0000012633,0.0003623064,0.0002255654 -15003007502,13.4756112773,0.0000000123,,0.0000029166 -15001020202,25.4228346534,0.0000002378,0.0000290487,0.0000415197 -15001020300,36.0264444526,0.0000009915,0.0000486073,0.0003168032 -15003009507,13.7534872042,0.0000000122,,0.0000018990 -15009031502,24.1981968780,0.0000006427,0.0000676868,0.0000108687 -15009031700,20.0761939648,0.0000010934,0.0049143834,0.0000148370 -15001021202,50.9009757018,0.0000000383,0.0000301617,0.0000017093 -15001021300,40.9441045600,0.0000039558,0.0000396241,0.0005806917 -15003010308,14.8377632042,0.0000000122,,0.0000020149 -15001021504,38.7614777296,0.0000001803,,0.0001167168 -15001021604,41.0047129501,0.0000009324,,0.0002774903 -15001022000,19.5680692358,0.0000000358,0.0000290511,0.0000014444 -15001022102,26.8749889144,0.0000000358,0.0000290467,0.0000014219 -15001021509,39.6085028569,0.0000003842,0.0000351301,0.0001122053 -15003010100,20.1899418692,0.0000000649,0.0009782148,0.0000759598 -15003010202,22.0650824666,0.0000002726,0.0017126977,0.0002904509 -15003000114,13.0024416326,0.0000000593,,0.0000559929 -15003000301,15.5029761891,0.0000000543,,0.0000439802 -15003000401,14.3094432099,0.0000000175,,0.0000089358 -15003000500,21.7355738392,0.0000001600,,0.0001780227 -15003001100,12.9865448527,0.0000000123,,0.0000021143 -15003001400,12.3585076356,0.0000000124,,0.0000023264 -15003001901,27.1286782082,0.0000003239,,0.0003416043 -15003001904,21.1782783212,0.0000003731,,0.0004239595 -15003002202,16.8452811998,0.0000003007,,0.0003313697 -15003002600,21.1208678596,0.0000000125,,0.0000024799 -15003002800,14.0640371335,0.0000000147,,0.0000053072 -15003003000,15.9122177661,0.0000000173,,0.0000088501 -15003003101,16.7794100011,0.0000000378,,0.0000269712 -15003003407,12.1430194003,0.0000000124,,0.0000023264 -15003003501,15.9378488267,0.0000000124,,0.0000023264 -15003004600,15.6406606485,0.0000000123,0.0000105419,0.0000021180 +GEOID10_TRACT,FEMA Risk Index Expected Annual Loss Score,Expected population loss rate (Natural Hazards Risk Index),Expected agricultural loss rate (Natural Hazards Risk Index),Expected building loss rate (Natural Hazards Risk Index),Contains agricultural value +06001020100,18.6199401875,0.0000035067,0.0031812618,0.0000661520,True +06007040300,24.6571275391,0.0000000358,0.0000290505,0.0000014426,True +06007040500,18.7719774304,0.0000034603,0.0000385465,0.0000436593,True +15001021010,42.6674572964,0.0000000408,0.0000331733,0.0000018765,True +15001021101,35.4631324234,0.0000002677,0.0000337348,0.0000507987,True +15007040603,22.2413255033,0.0000182039,0.0107280896,0.0002521232,True +15007040700,14.2025996464,0.0000014941,0.0005323264,0.0000207361,True +15009030100,16.2238215839,0.0000000311,0.0004061121,0.0000013674,True +15009030201,16.5620580551,0.0000000311,0.0000100935,0.0000014265,True +15001021402,37.6719247757,0.0000062310,0.0000311565,0.0015187781,True +15001021800,25.2568722397,0.0000002271,0.0000337985,0.0000262049,True +15009030402,23.9449676493,0.0000000310,0.0000104613,0.0000013104,True +15009030800,19.8423994159,0.0000008727,0.0000140751,0.0000109028,True +15003010201,18.0813496455,0.0000001010,0.0001248723,0.0001089388,True +15007040604,13.8830970216,0.0000023137,0.0000977117,0.0001482071,True +15009030303,26.4505931648,0.0000000878,0.0000048854,0.0000069565,True +15009030403,18.4437334890,0.0000000310,0.0000103042,0.0000013105,True +15009030404,21.7984897602,0.0000000310,0.0000104610,0.0000013088,True +15001021601,46.2888122040,0.0000022210,0.0001000049,0.0004101879,True +15001021013,31.7870290791,0.0000000365,0.0000291145,0.0000015088,True +15001021702,43.0017491363,0.0000038333,0.0006472757,0.0007289681,True +15001021704,40.5478070100,0.0000000675,0.0000000000,0.0000124075,False +15001021902,24.1028365867,0.0000012633,0.0003623064,0.0002255654,True +15003007502,13.4756112773,0.0000000123,0.0000000000,0.0000029166,False +15001020202,25.4228346534,0.0000002378,0.0000290487,0.0000415197,True +15001020300,36.0264444526,0.0000009915,0.0000123128,0.0003168032,True +15003009507,13.7534872042,0.0000000122,0.0000000000,0.0000018990,False +15009031502,24.1981968780,0.0000006427,0.0000676868,0.0000108687,True +15009031700,20.0761939648,0.0000010934,0.0049143834,0.0000148370,True +15001021202,50.9009757018,0.0000000383,0.0000301617,0.0000017093,True +15001021300,40.9441045600,0.0000039558,0.0000396241,0.0005806917,True +15003010308,14.8377632042,0.0000000122,0.0000000000,0.0000020149,False +15001021504,38.7614777296,0.0000001803,0.0000000000,0.0001167168,False +15001021604,41.0047129501,0.0000009324,0.0000000000,0.0002774903,False +15001022000,19.5680692358,0.0000000358,0.0000290511,0.0000014444,True +15001022102,26.8749889144,0.0000000358,0.0000290467,0.0000014219,True +15001021509,39.6085028569,0.0000003842,0.0000351301,0.0001122053,True +15003010100,20.1899418692,0.0000000649,0.0009782148,0.0000759598,True +15003010202,22.0650824666,0.0000002726,0.0017126977,0.0002904509,True +15003000114,13.0024416326,0.0000000593,0.0000000000,0.0000559929,False +15003000301,15.5029761891,0.0000000543,0.0000000000,0.0000439802,False +15003000401,14.3094432099,0.0000000175,0.0000000000,0.0000089358,False +15003000500,21.7355738392,0.0000001600,0.0000000000,0.0001780227,False +15003001100,12.9865448527,0.0000000123,0.0000000000,0.0000021143,False +15003001400,12.3585076356,0.0000000124,0.0000000000,0.0000023264,False +15003001901,27.1286782082,0.0000003239,0.0000000000,0.0003416043,False +15003001904,21.1782783212,0.0000003731,0.0000000000,0.0004239595,False +15003002202,16.8452811998,0.0000003007,0.0000000000,0.0003313697,False +15003002600,21.1208678596,0.0000000125,0.0000000000,0.0000024799,False +15003002800,14.0640371335,0.0000000147,0.0000000000,0.0000053072,False +15003003000,15.9122177661,0.0000000173,0.0000000000,0.0000088501,False +15003003101,16.7794100011,0.0000000378,0.0000000000,0.0000269712,False +15003003407,12.1430194003,0.0000000124,0.0000000000,0.0000023264,False +15003003501,15.9378488267,0.0000000124,0.0000000000,0.0000023264,False +15003004600,15.6406606485,0.0000000123,0.0000004599,0.0000021180,True diff --git a/data/data-pipeline/data_pipeline/tests/sources/national_risk_index/data/transform.csv b/data/data-pipeline/data_pipeline/tests/sources/national_risk_index/data/transform.csv index 9ad54f67..0ec87eda 100644 --- a/data/data-pipeline/data_pipeline/tests/sources/national_risk_index/data/transform.csv +++ b/data/data-pipeline/data_pipeline/tests/sources/national_risk_index/data/transform.csv @@ -1,56 +1,56 @@ -OID_,NRI_ID,STATE,STATEABBRV,STATEFIPS,COUNTY,COUNTYTYPE,COUNTYFIPS,STCOFIPS,TRACT,GEOID10_TRACT,POPULATION,BUILDVALUE,AGRIVALUE,AREA,RISK_SCORE,RISK_RATNG,RISK_NPCTL,RISK_SPCTL,FEMA Risk Index Expected Annual Loss Score,EAL_RATNG,EAL_NPCTL,EAL_SPCTL,EAL_VALT,EAL_VALB,EAL_VALP,EAL_VALPE,EAL_VALA,SOVI_SCORE,SOVI_RATNG,SOVI_NPCTL,SOVI_SPCTL,SOVI_VALUE,RESL_SCORE,RESL_RATNG,RESL_NPCTL,RESL_SPCTL,RESL_VALUE,AVLN_EVNTS,AVLN_AFREQ,AVLN_EXPB,AVLN_EXPP,AVLN_EXPPE,AVLN_EXPT,AVLN_HLRB,AVLN_HLRP,AVLN_HLRR,AVLN_EALB,AVLN_EALP,AVLN_EALPE,AVLN_EALT,AVLN_EALS,AVLN_EALR,AVLN_RISKS,AVLN_RISKR,CFLD_EVNTS,CFLD_AFREQ,CFLD_EXPB,CFLD_EXPP,CFLD_EXPPE,CFLD_EXPT,CFLD_HLRB,CFLD_HLRP,CFLD_HLRR,CFLD_EALB,CFLD_EALP,CFLD_EALPE,CFLD_EALT,CFLD_EALS,CFLD_EALR,CFLD_RISKS,CFLD_RISKR,CWAV_EVNTS,CWAV_AFREQ,CWAV_EXPB,CWAV_EXPP,CWAV_EXPPE,CWAV_EXPA,CWAV_EXPT,CWAV_HLRB,CWAV_HLRP,CWAV_HLRA,CWAV_HLRR,CWAV_EALB,CWAV_EALP,CWAV_EALPE,CWAV_EALA,CWAV_EALT,CWAV_EALS,CWAV_EALR,CWAV_RISKS,CWAV_RISKR,DRGT_EVNTS,DRGT_AFREQ,DRGT_EXPA,DRGT_EXPT,DRGT_HLRA,DRGT_HLRR,DRGT_EALA,DRGT_EALT,DRGT_EALS,DRGT_EALR,DRGT_RISKS,DRGT_RISKR,ERQK_EVNTS,ERQK_AFREQ,ERQK_EXPB,ERQK_EXPP,ERQK_EXPPE,ERQK_EXPT,ERQK_HLRB,ERQK_HLRP,ERQK_HLRR,ERQK_EALB,ERQK_EALP,ERQK_EALPE,ERQK_EALT,ERQK_EALS,ERQK_EALR,ERQK_RISKS,ERQK_RISKR,HAIL_EVNTS,HAIL_AFREQ,HAIL_EXPB,HAIL_EXPP,HAIL_EXPPE,HAIL_EXPA,HAIL_EXPT,HAIL_HLRB,HAIL_HLRP,HAIL_HLRA,HAIL_HLRR,HAIL_EALB,HAIL_EALP,HAIL_EALPE,HAIL_EALA,HAIL_EALT,HAIL_EALS,HAIL_EALR,HAIL_RISKS,HAIL_RISKR,HWAV_EVNTS,HWAV_AFREQ,HWAV_EXPB,HWAV_EXPP,HWAV_EXPPE,HWAV_EXPA,HWAV_EXPT,HWAV_HLRB,HWAV_HLRP,HWAV_HLRA,HWAV_HLRR,HWAV_EALB,HWAV_EALP,HWAV_EALPE,HWAV_EALA,HWAV_EALT,HWAV_EALS,HWAV_EALR,HWAV_RISKS,HWAV_RISKR,HRCN_EVNTS,HRCN_AFREQ,HRCN_EXPB,HRCN_EXPP,HRCN_EXPPE,HRCN_EXPA,HRCN_EXPT,HRCN_HLRB,HRCN_HLRP,HRCN_HLRA,HRCN_HLRR,HRCN_EALB,HRCN_EALP,HRCN_EALPE,HRCN_EALA,HRCN_EALT,HRCN_EALS,HRCN_EALR,HRCN_RISKS,HRCN_RISKR,ISTM_EVNTS,ISTM_AFREQ,ISTM_EXPB,ISTM_EXPP,ISTM_EXPPE,ISTM_EXPT,ISTM_HLRB,ISTM_HLRP,ISTM_HLRR,ISTM_EALB,ISTM_EALP,ISTM_EALPE,ISTM_EALT,ISTM_EALS,ISTM_EALR,ISTM_RISKS,ISTM_RISKR,LNDS_EVNTS,LNDS_AFREQ,LNDS_EXPB,LNDS_EXPP,LNDS_EXPPE,LNDS_EXPT,LNDS_HLRB,LNDS_HLRP,LNDS_HLRR,LNDS_EALB,LNDS_EALP,LNDS_EALPE,LNDS_EALT,LNDS_EALS,LNDS_EALR,LNDS_RISKS,LNDS_RISKR,LTNG_EVNTS,LTNG_AFREQ,LTNG_EXPB,LTNG_EXPP,LTNG_EXPPE,LTNG_EXPT,LTNG_HLRB,LTNG_HLRP,LTNG_HLRR,LTNG_EALB,LTNG_EALP,LTNG_EALPE,LTNG_EALT,LTNG_EALS,LTNG_EALR,LTNG_RISKS,LTNG_RISKR,RFLD_EVNTS,RFLD_AFREQ,RFLD_EXPB,RFLD_EXPP,RFLD_EXPPE,RFLD_EXPA,RFLD_EXPT,RFLD_HLRB,RFLD_HLRP,RFLD_HLRA,RFLD_HLRR,RFLD_EALB,RFLD_EALP,RFLD_EALPE,RFLD_EALA,RFLD_EALT,RFLD_EALS,RFLD_EALR,RFLD_RISKS,RFLD_RISKR,SWND_EVNTS,SWND_AFREQ,SWND_EXPB,SWND_EXPP,SWND_EXPPE,SWND_EXPA,SWND_EXPT,SWND_HLRB,SWND_HLRP,SWND_HLRA,SWND_HLRR,SWND_EALB,SWND_EALP,SWND_EALPE,SWND_EALA,SWND_EALT,SWND_EALS,SWND_EALR,SWND_RISKS,SWND_RISKR,TRND_EVNTS,TRND_AFREQ,TRND_EXPB,TRND_EXPP,TRND_EXPPE,TRND_EXPA,TRND_EXPT,TRND_HLRB,TRND_HLRP,TRND_HLRA,TRND_HLRR,TRND_EALB,TRND_EALP,TRND_EALPE,TRND_EALA,TRND_EALT,TRND_EALS,TRND_EALR,TRND_RISKS,TRND_RISKR,TSUN_EVNTS,TSUN_AFREQ,TSUN_EXPB,TSUN_EXPP,TSUN_EXPPE,TSUN_EXPT,TSUN_HLRB,TSUN_HLRP,TSUN_HLRR,TSUN_EALB,TSUN_EALP,TSUN_EALPE,TSUN_EALT,TSUN_EALS,TSUN_EALR,TSUN_RISKS,TSUN_RISKR,VLCN_EVNTS,VLCN_AFREQ,VLCN_EXPB,VLCN_EXPP,VLCN_EXPPE,VLCN_EXPT,VLCN_HLRB,VLCN_HLRP,VLCN_HLRR,VLCN_EALB,VLCN_EALP,VLCN_EALPE,VLCN_EALT,VLCN_EALS,VLCN_EALR,VLCN_RISKS,VLCN_RISKR,WFIR_EVNTS,WFIR_AFREQ,WFIR_EXPB,WFIR_EXPP,WFIR_EXPPE,WFIR_EXPA,WFIR_EXPT,WFIR_HLRB,WFIR_HLRP,WFIR_HLRA,WFIR_HLRR,WFIR_EALB,WFIR_EALP,WFIR_EALPE,WFIR_EALA,WFIR_EALT,WFIR_EALS,WFIR_EALR,WFIR_RISKS,WFIR_RISKR,WNTW_EVNTS,WNTW_AFREQ,WNTW_EXPB,WNTW_EXPP,WNTW_EXPPE,WNTW_EXPA,WNTW_EXPT,WNTW_HLRB,WNTW_HLRP,WNTW_HLRA,WNTW_HLRR,WNTW_EALB,WNTW_EALP,WNTW_EALPE,WNTW_EALA,WNTW_EALT,WNTW_EALS,WNTW_EALR,WNTW_RISKS,WNTW_RISKR,NRI_VER,Expected population loss rate (Natural Hazards Risk Index),Expected agricultural loss rate (Natural Hazards Risk Index),Expected building loss rate (Natural Hazards Risk Index) -1,T06001020100,Hawaii,HI,15,Kauai,County,7,15007,40300,06001020100,8385,992658000.0,147860.5647200878,3.6108521589,18.0705830803,Relatively Low,63.0775787404,63.4969325153,18.6199401875,Relatively Low,59.6420077263,70.5521472393,324935.2155714268,98076.5248682368,0.0296790442,225560.7358958097,1297.9548073803,31.6808724993,Relatively Moderate,48.7278745931,51.8518518519,-0.133,52.509198,Relatively Low,23.5125676106,100.0,2.6254599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,202742385.58005425,1862.6855876887,14156410466.433796,14359152852.013851,3.57579e-05,2e-09,Very Low,507.2650077305,2.606e-07,1.9802850905,509.245292821,2.6321796,Very Low,2.553881041,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0030589604,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0005345855,912658000.0,8385.0,63726000000.0,64638658000.00001,0.0167507621,0.0001397988,Very Low,22512.2,0.00015412,1171.312,23683.512,11.8920653303,Relatively Low,13.014700282,Relatively Low,0.0,0.0,912658000.0,8385.0,63726000000.0,147860.5647200878,64638805860.56472,1.80224e-05,7.6e-08,0.0002275779,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,2.0,0.0343605913,912658000.0,8385.0,63726000000.0,147860.5647200878,64638805860.56472,2.55348e-05,3.276e-07,0.0002460797,Very Low,788.9305592758,9.68737e-05,736.240125413,1.3226671624,1526.4933518512,4.6757862953,Very Low,6.1662913066,Very Low,0.0,0.01489,912658000.0,8385.0,63726000000.0,64638658000.00001,5.8883e-06,2.8944e-06,Relatively Low,80.0189118426,0.000361377,2746.46506358,2826.4839754226,19.2773661946,Relatively Low,15.4429446232,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,59632790.05858513,418.9266599156,3183842615.35848,51591.3125103788,3243526996.729576,0.000180437,1.14831e-05,0.0042466231,Very Low,63663.1136805333,0.0284625391,216315.2971586954,1296.2757495066,281274.6865887354,29.5879096062,Relatively High,26.9708819409,Relatively High,1.0,0.03125,912658000.0,8385.0,63726000000.0,147860.5647200878,64638805860.56472,3.2387e-06,1.8297e-06,7.27233e-05,Very Low,92.3692287258,0.0004794348,3643.7043933928,0.3360282071,3736.4096503256,14.9734902768,Relatively Low,16.6070545485,Relatively Low,0.0,6.5331e-05,912658000.0,8385.0,63726000000.0,147860.5647200878,64638805860.56472,0.008966239,5.9784e-06,0.0021079463,Very Low,534.6107152638,3.275e-06,24.8896914625,0.0203625042,559.5207692305,5.8706925202,Very Low,6.7469108145,Very Low,7.0,0.031969309,198555247.5326174,978.4678896234,7436355961.138096,7634911208.670712,0.001559314,3.8734e-06,Very Low,9898.0167648649,0.0001211641,920.8471781755,10818.8639430404,23.6580872265,Relatively High,20.2115884136,Relatively Moderate,0.0,0.0,0.0,0.0,0.0,0.0,0.000541107,3.7371e-06,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,3.5067e-06,0.0087782352,6.6152e-05 -2,T06007040300,Hawaii,HI,15,Hawaii,County,1,15001,20100,06007040300,5213,409283000.0,30161527.914254252,97.0642891247,26.0474557835,Relatively High,89.4815710967,87.4233128834,24.6571275391,Relatively Moderate,83.8106105391,87.4233128834,754552.3595077734,510222.1167381129,0.0320334258,243454.0359926558,876.2067770047,33.3455935266,Relatively Moderate,67.0519519602,65.5270655271,0.908,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.057971012,1082842.5920536572,13.7920666932,104819706.8679995,105902549.46005316,3.13713e-05,2.5e-09,Very Low,1.9692852387,2e-09,0.0151413322,1.984426571,0.41420772,Very Low,0.437449991,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,5.41e-08,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0099874373,409283000.0,5213.0,39618800000.0,40028083000.0,0.0008505842,1.16917e-05,Very Low,509627.8,0.03142336,238817.536,748445.336,37.5977579168,Very High,44.7882310288,Very High,1.0,0.03125,409283000.0,5213.0,39618800000.0,30161527.91425424,40058244527.914246,1.80224e-05,7.6e-08,0.0002275779,Very Low,230.5075462219,1.23856e-05,94.1304164907,214.5030827638,539.1410454765,5.2311349597,Very Low,5.8932581207,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,409283000.0,5213.0,39618800000.0,30161527.91425424,40058244527.914246,2.55348e-05,3.276e-07,0.0002460797,Very Low,104.5094165573,1.70798e-05,129.8064434247,74.2213962963,308.5372562783,2.7440512545,Very Low,3.939006349,Very Low,0.0,0.01489,409283000.0,5213.0,39618800000.0,40028083000.0,5.8883e-06,1.361e-06,Very Low,35.8846142757,0.000105643,802.886471452,838.7710857277,12.8581949229,Relatively Low,11.2121138672,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006245044,3.8327e-06,0.0003492485,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.03125,409283000.0,5213.0,39618800000.0,30161527.91425424,40058244527.914246,8.3601e-06,3.102e-07,0.0006212585,Very Low,106.9261414761,5.05411e-05,384.1124266061,585.5657605523,1076.6043286345,9.8898625798,Very Low,11.9394659724,Relatively Low,0.0,0.0006781468,409283000.0,5213.0,39618800000.0,30161527.914254252,40058244527.914246,0.0003985575,2.657e-07,9.37001e-05,Very Low,110.6212172132,9.395e-07,7.139853548,1.9165373923,119.6776081535,3.5109250974,Very Low,4.391726113,Very Low,4.0,0.018268176,315888.8587620232,2.2117928286,16809625.4977077,17125514.35646972,0.0006654598,3.8734e-06,Very Low,3.8401775301,1.565e-07,1.1894532216,5.0296307517,1.8327269938,Very Low,1.704290689,Very Low,4.0,0.0204021391,407903840.58451587,5201.979993784,39535047952.75828,39942951793.34279,7e-09,4.0043e-06,Very Low,0.0583395999,0.0004233184,3217.2197865804,3217.2781261802,17.0524727301,Relatively Low,17.9932135371,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,3.58e-08,2.90505e-05,1.4426e-06 -3,T06007040500,Hawaii,HI,15,Kauai,County,7,15007,40500,06007040500,5943,1030806000.0,459516.6731830848,6.1500338151,19.0467198618,Relatively Moderate,67.4534981234,69.3251533742,18.7719774304,Relatively Low,60.4118835838,72.0858895706,332959.9571449574,167792.7734322688,0.0217301935,165149.4709508616,17.7127618271,33.1217117362,Relatively Moderate,64.7826443794,63.5327635328,0.768,52.509198,Relatively Low,23.5125676106,100.0,2.6254599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,66594737.2848528,383.9447225607,2917979891.461138,2984574628.7459903,6.3169e-06,3e-10,Very Low,29.4350693631,8.3e-09,0.0628428106,29.4979121737,1.0184434918,Very Low,1.0330889632,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,56.0,3.111111111,0.0,0.0,0.0030589604,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0005860614,1030806000.0,5943.0,45166800000.0,46197606000.0,0.0167507621,0.0001397988,Very Low,120075.0,0.00114383,8693.108,128768.108,20.9111551033,Relatively Moderate,23.9260247408,Relatively Moderate,0.0,0.0,1030806000.0,5943.0,45166800000.0,459516.6731830846,46198065516.673195,1.80224e-05,7.6e-08,0.0002275779,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,2.0,0.0289855072,1030806000.0,5943.0,45166800000.0,459516.6731830846,46198065516.673195,2.55348e-05,3.276e-07,0.0002460797,Very Low,762.9385502884,5.64393e-05,428.9386307213,3.2776151707,1195.1547961804,4.3095415029,Very Low,5.9417734791,Very Low,0.0,0.01489,1030806000.0,5943.0,45166800000.0,46197606000.0,5.8883e-06,2.8944e-06,Relatively Low,90.3777476786,0.0002561316,1946.6001040973,2036.9778517759,17.2833380202,Relatively Low,14.4752368977,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,40606220.88329143,293.0385094863,2227092672.0956783,530.1707312656,2267699423.1497006,0.000180437,1.14831e-05,0.0042466231,Very Low,43350.6205845832,0.0199094993,151312.194528839,13.3209920158,194676.136105438,26.1722849103,Relatively High,24.9423944801,Relatively High,1.0,0.03125,1030806000.0,5943.0,45166800000.0,459516.6731830846,46198065516.673195,3.2387e-06,1.8297e-06,7.27233e-05,Very Low,104.3268729204,0.0003398069,2582.5325235382,1.0442984855,2687.9036949441,13.4166096589,Relatively Low,15.5570766452,Relatively Low,0.0,0.000122337,1030806000.0,5943.0,45166800000.0,459516.6731830848,46198065516.673195,0.0052856261,3.5243e-06,0.001242641,Very Low,666.5475081608,2.5623e-06,19.473622804,0.069856155,686.0909871197,6.2836381633,Very Low,7.5500148235,Very Low,9.0,0.041103397,42337272.98880063,137.653444203,1046166175.9429299,1088503448.9317303,0.001559314,3.8734e-06,Very Low,2713.5270992744,2.19159e-05,166.5606980512,2880.0877973256,15.2190537663,Relatively Moderate,13.5932751503,Relatively Moderate,0.0,0.0,0.0,0.0,0.0,0.0,0.000541107,3.7371e-06,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,3.4603e-06,3.85465e-05,4.36593e-05 -4,T15001021010,Hawaii,HI,15,Hawaii,County,1,15001,21010,15001021010,7884,737712000.0,8711454.309073342,58.4401512286,43.1066279987,Very High,99.4459643383,98.1595092025,42.6674572964,Very High,99.2741170486,99.0797546012,3909779.132120072,2582125.8111252696,0.1746532017,1327364.3330713348,288.9879234675,31.8903618889,Relatively Moderate,51.0956693021,54.415954416,-0.002,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0,0.0,0.0,0.0,0.0,4.78451e-05,4.8e-09,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,5.41e-08,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0099998852,737712000.0,7884.0,59918400000.0,60656112000.0,0.0008505842,1.16917e-05,Very Low,2580741.4,0.17367654,1319941.704,3900683.104,65.1861714882,Very High,74.2640163391,Very High,1.0,0.03125,737712000.0,7884.0,59918400000.0,8711454.309073342,60664823454.309074,1.80224e-05,7.6e-08,0.0002275779,Very Low,415.4782459486,1.87316e-05,142.3602922696,61.9542156517,619.7927538699,5.4799587665,Very Low,5.9041560145,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0269344664,737712000.0,7884.0,59918400000.0,8711454.309073342,60664823454.309074,2.55348e-05,3.276e-07,0.0002460797,Very Low,473.505191031,6.51127e-05,494.8567057547,57.246194849,1025.6080916347,4.0952789981,Very Low,5.6221049906,Very Low,0.0,0.01489,737712000.0,7884.0,59918400000.0,60656112000.0,5.8883e-06,1.361e-06,Very Low,64.6802104328,0.0001597715,1214.263752336,1278.9439627688,14.7995789625,Relatively Low,12.3417814165,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006245044,3.8327e-06,0.0003492485,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.03125,737712000.0,7884.0,59918400000.0,8711454.309073342,60664823454.309074,8.3601e-06,3.102e-07,0.0006212585,Very Low,192.7289862509,7.6437e-05,580.9212298706,169.1270211135,942.7772372349,9.4618177655,Very Low,10.9242145239,Very Low,1.0,0.0004673635,737712000.0,7884.0,59918400000.0,8711454.309073342,60664823454.309074,0.0006900376,4.601e-07,0.0001622266,Very Low,237.910942867,1.6953e-06,12.8843062101,0.6604918534,251.4557409305,4.4968090785,Very Low,5.3796416501,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0006654598,3.8734e-06,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,4.0,0.0207448,737708710.8628113,7883.9591351862,59918089427.41536,60655798138.27817,7e-09,4.0043e-06,Very Low,0.1075487398,0.0006549135,4977.3427848938,4977.4503336337,19.7224171343,Relatively Low,19.902265065,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,4.08e-08,3.31733e-05,1.8765e-06 -5,T15001021101,Hawaii,HI,15,Hawaii,County,1,15001,21101,15001021101,3531,365469000.0,1115552.946347012,41.0551206444,39.6369371498,Very High,99.0514029613,96.6257668712,35.4631324234,Relatively High,97.7453635601,94.4785276074,2244880.451421157,1569603.2441089998,0.0888473124,675239.574319989,37.6329921689,35.2805718581,Relatively High,83.0000273575,82.3361823362,2.118,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.067971012,53358423.69058833,515.5255139327,3917993905.8884683,3971352329.5790553,9.778e-07,1e-10,Very Low,3.5462107144,2.3e-09,0.0178004814,3.5640111958,0.5034846073,Very Low,0.562592042,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,5.41e-08,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0099998512,365469000.0,3531.0,26835600000.0,27201069000.0,0.0008505842,1.16917e-05,Very Low,1549795.8,0.08759107,665692.1319999999,2215487.932,53.9839983966,Very High,68.0399795668,Very High,1.0,0.03125,365469000.0,3531.0,26835600000.0,1115552.946347012,27202184552.946342,1.80224e-05,7.6e-08,0.0002275779,Very Low,205.8315698678,8.3893e-06,63.7587762572,7.9336015953,277.5239477203,4.192392616,Very Low,4.9971070139,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0289855072,365469000.0,3531.0,26835600000.0,1115552.946347012,27202184552.946342,2.55348e-05,3.276e-07,0.0002460797,Very Low,270.4974447523,3.35331e-05,254.8514731746,7.9569545004,533.3058724274,3.2931774779,Very Low,5.0015747332,Very Low,0.0,0.01489,365469000.0,3531.0,26835600000.0,27201069000.0,5.8883e-06,1.361e-06,Very Low,32.0431439731,7.15567e-05,543.831216324,575.8743602971,11.3433526973,Very Low,10.4651653429,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,4828130.527921984,35.1384012388,267051849.41505945,0.0,271879979.9429814,0.0006245044,3.8327e-06,0.0003492485,Very Low,17839.8663537918,0.0007968309,6055.9146131274,0.0,23895.7809669192,13.0070200492,Relatively Moderate,13.6546608024,Relatively Moderate,1.0,0.03125,365469000.0,3531.0,26835600000.0,1115552.946347012,27202184552.946342,8.3601e-06,3.102e-07,0.0006212585,Very Low,95.4796314509,3.42338e-05,260.1766695466,21.6577094941,377.3140104915,6.972778356,Very Low,8.9063071715,Very Low,0.0,0.000363433,365469000.0,3531.0,26835600000.0,1115552.946347012,27202184552.946342,0.0008889061,5.927e-07,0.0002089802,Very Low,118.0676167774,7.606e-07,5.7804922284,0.0847265791,123.9328355849,3.5520526364,Very Low,4.7010550308,Very Low,13.0,0.059371574,31437177.79214135,196.0173546829,1489731895.5901709,1521169073.3823123,0.0006654598,3.8734e-06,Very Low,1242.0638448472,4.50783e-05,342.5948426489,1584.6586874961,12.4708959075,Relatively Moderate,12.2698912376,Relatively Moderate,3.0,0.0188028,365467633.73540473,3530.9854379618,26835489328.50994,27200956962.245342,7e-09,4.0043e-06,Very Low,0.0482928249,0.0002658574,2020.5164362008,2020.5647290257,14.6032241308,Relatively Low,16.3029908639,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,2.677e-07,3.37348e-05,5.07987e-05 -6,T15007040603,Hawaii,HI,15,Kauai,County,7,15007,40603,15007040603,2544,509507000.0,3763051.378240333,15.9289735326,23.861367567,Relatively Moderate,84.6148558545,84.9693251534,22.2413255033,Relatively Moderate,75.9028856597,83.7423312883,553788.5026946985,159866.005336267,0.0465200191,353552.1448416796,40370.352516752,35.0215086434,Relatively Moderate,81.3161710393,79.7720797721,1.956,52.509198,Relatively Low,23.5125676106,100.0,2.6254599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,59268365.982889764,295.9306212878,2249072721.7871075,2308341087.7699966,2.0063e-06,1e-10,Very Low,8.3203647759,1.4e-09,0.010921869,8.3312866448,0.6682062552,Very Low,0.7166933897,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,119.0,6.611111111,1994468.3763317089,1994468.3763317089,0.0030589604,Relatively Moderate,40334.3876510453,40334.3876510453,9.31733969,Relatively Moderate,10.0118819196,Relatively Moderate,,0.0006288023,509507000.0,2544.0,19334400000.0,19843907000.0,0.0167507621,0.0001397988,Very Low,29888.8,0.0002046,1554.96,31443.76,13.0703357152,Relatively Low,15.8125293377,Relatively Low,0.0,0.0,509507000.0,2544.0,19334400000.0,3763051.378240333,19847670051.37824,1.80224e-05,7.6e-08,0.0002275779,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,2.0,0.0289855072,509500026.786716,2543.9789504995,19334240023.79628,3763051.378240333,19847503101.961227,2.55348e-05,3.276e-07,0.0002460797,Very Low,377.1002611632,2.41596e-05,183.6127961654,26.8408852286,587.5539425572,3.4012529352,Very Low,4.9584510525,Very Low,0.0,0.01489,509507000.0,2544.0,19334400000.0,19843907000.0,5.8883e-06,2.8944e-06,Relatively Low,44.6719315627,0.0001096414,833.2745523849,877.9464839477,13.0553404852,Relatively Low,11.5613443431,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,119566421.24697922,677.5008183296,5149006219.304985,0.0,5268572640.551965,0.000180437,1.14831e-05,0.0042466231,Very Low,127647.4010480262,0.0460304759,349831.6169989206,0.0,477479.0180469467,35.2957296359,Relatively High,35.566468565,Very High,1.0,0.03125,509507000.0,2544.0,19334400000.0,3763051.378240333,19847670051.37824,3.2387e-06,1.8297e-06,7.27233e-05,Very Low,51.5667080334,0.00014546,1105.4960019992,8.5519178837,1165.6146279163,10.1552327033,Very Low,12.4507973241,Relatively Low,0.0,0.0002990171,509507000.0,2544.0,19334400000.0,3763051.378240333,19847670051.37824,0.0021625099,1.4419e-06,0.0005084021,Very Low,329.4612383326,1.0968e-06,8.3360081463,0.5720625944,338.3693090733,4.964561772,Very Low,6.3071150891,Very Low,3.0,0.013701132,71084897.08187932,86.3741073938,656443216.1930951,727528113.2749742,0.001559314,3.8734e-06,Relatively Low,1518.683784373,4.5839e-06,34.8375621943,1553.5213465673,12.3886737842,Relatively Moderate,11.699932367,Relatively Moderate,0.0,0.0,0.0,0.0,0.0,0.0,0.000541107,3.7371e-06,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.82039e-05,0.0107280896,0.0002521232 -7,T15007040700,Hawaii,HI,15,Kauai,County,7,15007,40700,15007040700,8403,953840000.0,4902899.033772812,35.9094759697,14.5995882683,Relatively Low,44.799901016,33.4355828221,14.2025996464,Relatively Low,34.6292910268,25.1533742331,144200.0701977621,43942.44874484,0.0128483788,97647.6787717786,2609.9426811435,33.5566820719,Relatively Moderate,69.0887204881,66.9515669516,1.04,52.509198,Relatively Low,23.5125676106,100.0,2.6254599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,7924120.216700878,88.3295953796,671304924.8847564,679229045.1014572,1.71347e-05,1e-09,Very Low,9.5004950424,6.4e-09,0.0483633348,9.5488583772,0.6992894806,Very Low,0.718660905,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,56.0,3.111111111,0.0,0.0,0.0030589604,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.000417928,753840000.0,8403.0,63862800000.0,64616640000.0,0.0167507621,0.0001397988,Very Low,22605.7,0.00026554,2018.104,24623.804,12.0474084201,Relatively Low,13.9653684416,Relatively Low,0.0,0.0,753840000.0,8403.0,63862800000.0,4902899.033772809,64621542899.03377,1.80224e-05,7.6e-08,0.0002275779,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,2.0,0.0367917638,753839838.3895446,8402.998750639,63862790504.856735,4902899.033772809,64621533242.28005,2.55348e-05,3.276e-07,0.0002460797,Very Low,565.9880891858,8.06355e-05,612.8295337298,35.4917036305,1214.3093265461,4.3324423408,Very Low,6.0517928671,Very Low,0.0,0.01489,753840000.0,8403.0,63862800000.0,64616640000.0,5.8883e-06,2.8944e-06,Relatively Low,66.0942614905,0.0003621527,2752.3608740922,2818.4551355827,19.2590959492,Relatively Low,16.3418113695,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,17435799.68528737,171.1495864487,1300736857.009833,101991.5773982118,1318274648.2725186,0.000180437,1.14831e-05,0.0042466231,Very Low,18614.2103427484,0.0116281733,88374.1169843188,2562.6254111801,109550.9527382472,21.6077453518,Relatively Moderate,20.8627809132,Relatively High,1.0,0.03125,753840000.0,8403.0,63862800000.0,4902899.033772809,64621542899.03377,3.2387e-06,1.8297e-06,7.27233e-05,Very Low,76.2954133774,0.000480464,3651.5262990207,11.1423378834,3738.9640502815,14.976901713,Relatively Low,17.594358084,Relatively Low,0.0,0.0005599395,753840000.0,8403.0,63862800000.0,4902899.033772812,64621542899.03377,0.0010585776,7.058e-07,0.0002488696,Very Low,446.8306321093,3.321e-06,25.2397457391,0.6832284494,472.7536062978,5.5500327704,Very Low,6.7560542776,Very Low,18.0,0.082206795,12152864.1611398,88.2036899901,670348043.9244705,682500908.0856104,0.001559314,3.8734e-06,Very Low,1557.8295108863,2.80859e-05,213.4529715432,1771.2824824295,12.9424059626,Relatively Moderate,11.7116400138,Relatively Moderate,0.0,0.0,0.0,0.0,0.0,0.0,0.000541107,3.7371e-06,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.4941e-06,0.0005323264,2.07361e-05 -8,T15009030100,Hawaii,HI,15,Maui,County,9,15009,30100,15009030100,2291,368239000.0,644114.43822931,214.3878544386,15.5323735316,Relatively Low,50.1986554668,40.7975460123,16.2238215839,Relatively Low,46.8895640578,49.0797546012,214942.067418806,186581.2187114685,0.0036972718,28099.2660221777,261.5826851598,30.8317208514,Relatively Low,39.4153694635,40.1709401709,-0.664,51.8016,Relatively Low,16.9583200764,80.0,2.59008,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,50139595.99454863,311.9436410144,2370771671.7096305,2420911267.704179,3.07e-07,0.0,Very Low,1.0772166727,1.1e-09,0.0081382716,1.0853549442,0.338737887,Very Low,0.3242214636,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,427.0,23.722222222,0.0,0.0,1.625e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0071038122,368239000.0,2291.0,17411600000.0,17779839000.0,0.0008599048,7.5108e-06,Very Low,185778.4,0.00359349,27310.524,213088.924,24.7340676281,Relatively High,26.7033206855,Relatively Moderate,1.0,0.03125,368239000.0,2291.0,17411600000.0,644114.4382293099,17780483114.43823,1.80224e-05,2.1e-08,0.0002275779,Very Low,207.3916295405,1.5057e-06,11.4431512,4.580820078,223.4156008185,3.9000151241,Very Low,3.9819297582,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,368239000.0,2291.0,17411600000.0,644114.4382293099,17780483114.43823,2.55348e-05,3.276e-07,0.0002460797,Very Low,94.0289311886,7.5062e-06,57.0471056754,1.5850348535,152.6610717175,2.170363366,Very Low,2.8235447615,Very Low,0.0,0.01489,368239000.0,2291.0,17411600000.0,17779839000.0,5.8883e-06,1.627e-06,Relatively Low,32.2860086451,5.55018e-05,421.813943948,454.0999525931,10.4797118228,Very Low,8.2817973573,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,107.0,4.458333333,25.0001805198,0.0001620382,1231.4903737514,13472.8923938542,14729.3829481254,3.05947e-05,2.7267e-06,0.0042466231,Relatively Low,0.0034100604,2e-09,0.0149708011,255.0804028339,255.0987836954,2.8640034011,Very Low,2.575415095,Very Low,1.0,0.03125,368239000.0,2291.0,17411600000.0,644114.4382293099,17780483114.43823,5.132e-07,8.35e-08,1.33875e-05,Very Low,5.9052638179,5.975e-06,45.4103272432,0.2694722287,51.5850632898,3.592081699,Very Low,3.9301453807,Very Low,0.0,0.0024581721,368239000.0,2291.0,17411600000.0,644114.43822931,17780483114.43823,0.0001798702,1.199e-07,4.22872e-05,Very Low,162.8175922584,6.754e-07,5.1331444622,0.066955123,168.0176918435,3.9312947106,Very Low,4.4567490456,Very Low,6.0,0.027402265,14124383.392418932,90.8041015676,690111171.9139464,704235555.3063654,0.0007732141,3.66e-08,Very Low,299.2648749055,9.12e-08,0.692869733,299.9577446384,7.1604299781,Relatively Low,6.0346593804,Relatively Low,1.0,0.003531,368238629.3887722,2290.9968855822,17411576330.424442,17779814959.813213,7e-09,4.0104e-06,Very Low,0.0091377281,3.2442e-05,246.5589966972,246.5681344253,7.243305643,Very Low,6.9266931121,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,1.0,0.0368471205,4945035.468947387,9.3607227865,71141493.17722161,290715.7155912937,76377244.3617603,8.51e-08,1.057e-07,0.0,Very Low,0.0346466514,8.15e-08,0.6193741462,4.27e-08,0.6540208402,1.3817404111,Very Low,0.8046981705,Very Low,November 2021,3.11e-08,0.0004061121,1.3674e-06 -9,T15009030201,Hawaii,HI,15,Maui,County,9,15009,30201,15009030201,2453,240407000.0,911133.6885541946,45.603767843,16.0782655749,Relatively Low,53.1489297351,46.3190184049,16.5620580551,Relatively Low,48.7303922243,51.5337423313,228667.7111643,175591.2462281788,0.0069825353,53067.2684114386,9.1965246826,31.2634928758,Relatively Low,44.0524717533,45.8689458689,-0.394,51.8016,Relatively Low,16.9583200764,80.0,2.59008,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.067971012,1123293.7247402107,11.4615610477,87107863.96230894,88231157.68704915,0.0002145287,1.65e-08,Very Low,16.3795722727,1.29e-08,0.0979067238,16.4774789966,0.8387581763,Very Low,0.8140563845,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,42.0,2.333333333,0.0,0.0,1.625e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0066172465,240407000.0,2453.0,18642800000.0,18883207000.0,0.0008599048,7.5108e-06,Very Low,175248.3,0.0068716,52224.16,227472.46,25.2785131982,Relatively High,27.6733022248,Relatively Moderate,1.0,0.03125,240407000.0,2453.0,18642800000.0,911133.6885541948,18884118133.688553,1.80224e-05,2.1e-08,0.0002275779,Very Low,135.3968468355,1.6121e-06,12.2523133536,6.4798104909,154.12897068,3.4460630452,Very Low,3.5677158209,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,240407000.0,2453.0,18642800000.0,911133.6885541948,18884118133.688553,2.55348e-05,3.276e-07,0.0002460797,Very Low,61.387341537,8.037e-06,61.0809909305,2.2421150138,124.7104474814,2.0288843577,Very Low,2.6764507281,Very Low,0.0,0.01489,240407000.0,2453.0,18642800000.0,18883207000.0,5.8883e-06,1.627e-06,Relatively Low,21.0781109017,5.94265e-05,451.641032084,472.7191429857,10.6210287562,Very Low,8.5110193188,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,107.0,4.458333333,0.0,0.0,0.0,0.0,0.0,3.05947e-05,2.7267e-06,0.0042466231,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.03125,240407000.0,2453.0,18642800000.0,911133.6885541948,18884118133.688553,5.132e-07,8.35e-08,1.33875e-05,Very Low,3.8552862642,6.3975e-06,48.6213586754,0.3811826146,52.8578275542,3.6213846227,Very Low,4.0176934337,Very Low,0.0,0.0005103731,240407000.0,2453.0,18642800000.0,911133.6885541946,18884118133.688553,0.0008544857,5.697e-07,0.000200888,Very Low,104.8430527576,7.133e-07,5.4209693174,0.0934165632,110.3574386382,3.4173107124,Very Low,3.9282264255,Very Low,1.0,0.004567044,0.0,0.0,0.0,0.0,0.0007732141,3.66e-08,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.003531,240406941.15547386,2452.9993801304,18642795288.99131,18883202230.146786,7e-09,4.0104e-06,Very Low,0.0059656242,3.4736e-05,263.9938403539,263.9998059781,7.4101277885,Very Low,7.185459815,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,1.0,0.0106982003,7419.8231090135,0.0,0.0,0.0,7419.8231090135,8.51e-08,1.057e-07,0.0,Very Low,5.19859e-05,0.0,0.0,0.0,5.19859e-05,0.0594097511,Very Low,0.0350835894,Very Low,November 2021,3.11e-08,1.00935e-05,1.4265e-06 -10,T15001021402,Hawaii,HI,15,Hawaii,County,1,15001,21402,15001021402,4025,425500000.0,1383968.458588042,16.1940325556,40.6895862222,Very High,99.1723834532,97.2392638037,37.6719247757,Relatively High,98.4849942947,96.0122699387,2691010.34602831,1957068.2379162407,0.0965656564,733898.988498616,43.1196134532,34.0939983689,Relatively Moderate,74.000766011,71.7948717949,1.376,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,23588727.030300748,223.1366070434,1695838213.5297291,1719426940.56003,2.9443e-06,2e-10,Very Low,4.8595807616,3.4e-09,0.025793951,4.8853747126,0.5592926832,Very Low,0.6039331168,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,161.0,8.944444444,1383968.458588042,1383968.458588042,5.41e-08,Very Low,0.6696122276,0.6696122276,0.2376883514,Very Low,0.2571334241,Very Low,,0.0099990439,425500000.0,4025.0,30590000000.0,31015500000.000004,0.0008505842,1.16917e-05,Very Low,1310569.6,0.07113999,540663.924,1851233.524,50.846647139,Very High,61.9303831851,Very High,1.0,0.03125,425500000.0,4025.0,30590000000.0,1383968.4585880418,31016883968.458588,1.80224e-05,7.6e-08,0.0002275779,Very Low,239.6409352949,9.563e-06,72.6788656012,9.8425219597,322.1623228558,4.4060901141,Very Low,5.075191079,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.0144927536,425500000.0,4025.0,30590000000.0,1383968.4585880418,31016883968.458588,2.55348e-05,3.276e-07,0.0002460797,Very Low,157.4643304159,1.91122e-05,145.2530698864,4.9357469279,307.6531472301,2.7414277339,Very Low,4.0235624639,Very Low,0.0,0.01489,425500000.0,4025.0,30590000000.0,31015500000.000004,5.8883e-06,1.361e-06,Very Low,37.3064685666,8.15678e-05,619.9152211,657.2216896666,11.8541244954,Very Low,10.5685757043,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,174713506.010078,1099.3436364052,8355011636.67989,341.9328564726,8529725484.622824,0.0006245044,3.8327e-06,0.0003492485,Very Low,645563.6564497937,0.0249297326,189465.9676547664,0.7065655187,835030.3306700788,42.5243956562,Very High,43.1403413275,Very High,1.0,0.03125,425500000.0,4025.0,30590000000.0,1383968.4585880418,31016883968.458588,8.3601e-06,3.102e-07,0.0006212585,Very Low,111.1628706773,3.90232e-05,296.5763508737,26.8688159761,434.608037527,7.3092160828,Very Low,9.0220437817,Very Low,0.0,0.0001368209,425500000.0,4025.0,30590000000.0,1383968.458588042,31016883968.458588,0.0021643504,1.4431e-06,0.0005088348,Very Low,126.0026443038,7.947e-07,6.0399428818,0.0963508431,132.1389380288,3.6287819112,Very Low,4.6410708199,Very Low,3.0,0.013701132,28350000.0,217.0,1649200000.0,1677550000.0,0.0006654598,3.8734e-06,Very Low,258.482603829,1.15162e-05,87.5233472654,346.0059510944,7.5095445566,Relatively Low,7.1400125868,Relatively Low,4.0,0.0207448,425499989.0686448,4024.9999387069,30589999534.172466,31015499523.241116,7e-09,4.0043e-06,Very Low,0.0620325976,0.0003343532,2541.0842522902,2541.1462848878,15.7628369695,Relatively Low,17.0057283845,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,6.231e-06,3.11565e-05,0.0015187781 -11,T15001021800,Hawaii,HI,15,Hawaii,County,1,15001,21800,15001021800,6322,560173000.0,1734823.6758895495,140.9697985177,26.9714927226,Relatively High,91.0611913829,88.036809816,25.2568722397,Relatively Moderate,85.4191011699,88.036809816,810962.2510357033,553967.9101830884,0.0338073298,256935.7064026278,58.6344499873,33.7086018582,Relatively Moderate,70.5085765874,69.5156695157,1.135,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,51086751.82636114,576.5548233247,4381816657.267557,4432903409.093918,3.784e-07,0.0,Very Low,1.3527161263,1.5e-09,0.0117538785,1.3644700048,0.3655901691,Very Low,0.3903076103,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1575.0,87.5,1734823.6758895495,1734823.6758895495,5.41e-08,Very Low,8.2112108805,8.2112108805,0.5481118294,Very Low,0.5862496728,Very Low,,0.0097461622,560173000.0,6322.0,48047200000.0,48607373000.0,0.0008505842,1.16917e-05,Very Low,538363.3999999999,0.03189122,242373.272,780736.672,38.130875603,Very High,45.9177953623,Very High,1.0,0.03125,560173000.0,6322.0,48047200000.0,1734823.6758895495,48609107823.675896,1.80224e-05,7.6e-08,0.0002275779,Very Low,315.4885585027,1.50205e-05,114.1554753602,12.3377379153,441.9817717782,4.8958703896,Very Low,5.5756016541,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,560173000.0,6322.0,48047200000.0,1734823.6758895495,48609107823.675896,2.55348e-05,3.276e-07,0.0002460797,Very Low,143.0388103126,2.07133e-05,157.4211270537,4.2690488333,304.7289861995,2.7327145569,Very Low,3.9654366815,Very Low,0.0,0.01489,560173000.0,6322.0,48047200000.0,48607373000.0,5.8883e-06,1.361e-06,Very Low,49.1141631406,0.0001281172,973.690441688,1022.8046048286,13.7371428056,Relatively Low,12.1089418931,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,3744844.4892568006,53.3229072465,405254095.0732191,0.0,408998939.5624759,0.0006245044,3.8327e-06,0.0003492485,Very Low,13837.1414811001,0.0012091995,9189.9164965874,0.0,23027.0579776875,12.8474484831,Relatively Low,12.8862073443,Relatively Moderate,1.0,0.03125,560173000.0,6322.0,48047200000.0,1734823.6758895495,48609107823.675896,8.3601e-06,3.102e-07,0.0006212585,Very Low,146.3465070599,6.12931e-05,465.827500671,33.6804338323,645.8544415632,8.3409675847,Very Low,10.1791934049,Very Low,0.0,0.0012868546,560173000.0,6322.0,48047200000.0,1734823.6758895495,48609107823.675896,0.0002591576,1.728e-07,6.09275e-05,Very Low,186.8166860621,1.4058e-06,10.6840235122,0.136018526,197.6367281003,4.1499208704,Very Low,5.2476929578,Very Low,38.0,0.173547679,8010662.960923643,89.7924700335,682422772.2545192,690433435.2154428,0.0006654598,3.8734e-06,Very Low,925.1434444921,6.03605e-05,458.7398439858,1383.8832884779,11.920255492,Relatively Moderate,11.2055646697,Relatively Moderate,4.0,0.0199142254,554917542.964756,6278.2557780679,47714743913.315994,48269661456.28075,7e-09,4.0043e-06,Very Low,0.0678162917,0.0004199984,3191.987739891,3192.0555561827,17.0077935464,Relatively Low,18.1414348445,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,2.271e-07,3.37985e-05,2.62049e-05 -12,T15009030402,Hawaii,HI,15,Maui,County,9,15009,30402,15009030402,8652,848387000.0,6154260.50317884,17.7870581334,22.7178018808,Relatively Moderate,81.2823932141,83.7423312883,23.9449676493,Relatively Moderate,81.7621908467,85.2760736196,691042.409030566,529396.7171852423,0.0212606987,161581.3101906748,64.3816546488,30.553467769,Relatively Low,36.5264137007,37.6068376068,-0.838,51.8016,Relatively Low,16.9583200764,80.0,2.59008,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0,0.0,0.0,0.0,0.0,4.78451e-05,4.8e-09,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,49.0,2.722222222,5275080.431296148,5275080.431296148,1.625e-07,Very Low,2.3330989039,2.3330989039,0.3603389066,Very Low,0.3424150272,Very Low,,0.0063848119,848387000.0,8652.0,65755200000.0,66603587000.0,0.0008599048,7.5108e-06,Very Low,528285.0,0.02086974,158610.024,686895.024,36.5374899179,Very High,39.0904958889,Relatively High,1.0,0.03125,848387000.0,8652.0,65755200000.0,6154260.50317884,66609741260.50319,1.80224e-05,2.1e-08,0.0002275779,Very Low,477.8102330578,5.6862e-06,43.2152528077,43.7679368836,564.7934227491,5.3128187837,Very Low,5.3754527661,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,848387000.0,8652.0,65755200000.0,6154260.50317884,66609741260.50319,2.55348e-05,3.276e-07,0.0002460797,Very Low,216.6335527858,2.83473e-05,215.4393532534,15.1443855568,447.2172915961,3.1054833874,Very Low,4.0036322682,Very Low,0.0,0.01489,848387000.0,8652.0,65755200000.0,66603587000.0,5.8883e-06,1.627e-06,Relatively Low,74.3838377151,0.0002096036,1592.987447856,1667.3712855711,16.1675033957,Relatively Low,12.6613776932,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.05947e-05,2.7267e-06,0.0042466231,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.03125,848387000.0,8652.0,65755200000.0,6154260.50317884,66609741260.50319,5.132e-07,8.35e-08,1.33875e-05,Very Low,13.605156039,2.25649e-05,171.4928639494,2.5747013191,187.6727213076,5.5246563276,Very Low,5.9900496315,Very Low,0.0,0.0001715926,848387000.0,8652.0,65755200000.0,6154260.50317884,66609741260.50319,0.0022617831,1.5081e-06,0.000531741,Very Low,329.2633531826,2.2389e-06,17.0158149667,0.5615319854,346.8407001347,5.0056515598,Very Low,5.6236951437,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0007732141,3.66e-08,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.003531,848386998.4516693,8651.999977881,65755199831.89553,66603586830.347206,7e-09,4.0104e-06,Very Low,0.0210524619,0.0001225178,931.1354578416,931.1565103035,11.2797304876,Relatively Low,10.6893328863,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,1.0,0.0008568947,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,3.1e-08,1.04613e-05,1.3104e-06 -13,T15009030800,Hawaii,HI,15,Maui,County,9,15009,30800,15009030800,6907,606441000.0,4986834.924185982,54.8722617975,18.4696898486,Relatively Moderate,64.906033902,65.9509202454,19.8423994159,Relatively Moderate,65.4476965589,76.3803680982,393228.0586943021,270968.5074116394,0.0160775475,122189.3610068932,70.1902757695,29.9761725809,Relatively Low,30.7977457391,33.9031339031,-1.199,51.8016,Relatively Low,16.9583200764,80.0,2.59008,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,13759687.487434156,156.7146045134,1191030994.3018012,1204790681.789235,1.4976e-06,2e-10,Very Low,1.441846236,2e-09,0.0148379347,1.4566841707,0.3736471249,Very Low,0.347710694,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,546.0,30.333333333,0.0,0.0,1.625e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0058745704,606441000.0,6907.0,52493200000.0,53099641000.0,0.0008599048,7.5108e-06,Very Low,263409.7,0.00995124,75629.424,339039.124,28.8752126234,Relatively High,30.3091204383,Relatively High,1.0,0.03125,606441000.0,6907.0,52493200000.0,4986834.924185979,53104627834.92419,1.80224e-05,2.1e-08,0.0002275779,Very Low,341.5466238236,4.5394e-06,34.4992777558,35.4654269344,411.5113285137,4.7806732077,Very Low,4.745639852,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,606441000.0,6907.0,52493200000.0,4986834.924185979,53104627834.92419,2.55348e-05,3.276e-07,0.0002460797,Very Low,154.8532313496,2.263e-05,171.9879349193,12.2715882373,339.1127545062,2.8318552857,Very Low,3.5818854928,Very Low,0.0,0.01489,606441000.0,6907.0,52493200000.0,53099641000.0,5.8883e-06,1.627e-06,Relatively Low,53.1707922538,0.0001673292,1271.701837996,1324.8726302498,14.9746574859,Relatively Low,11.5056344625,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,107.0,4.458333333,42656810.46717848,478.2321074611,3634564016.7041287,1051.9819381299,3677221879.153245,3.05947e-05,2.7267e-06,0.0042466231,Very Low,5818.4500156325,0.0058137018,44184.1333216547,19.9170281115,50022.5003653988,16.6389480361,Relatively Moderate,14.5471523811,Relatively Moderate,1.0,0.03125,606441000.0,6907.0,52493200000.0,4986834.924185979,53104627834.92419,5.132e-07,8.35e-08,1.33875e-05,Very Low,9.725189605,1.80138e-05,136.9049019069,2.0862962253,148.7163877373,5.1123960729,Very Low,5.4383270008,Very Low,0.0,0.0005655006,606441000.0,6907.0,52493200000.0,4986834.924185982,53104627834.92419,0.0006786466,4.525e-07,0.0001595486,Very Low,232.7369430918,1.7674e-06,13.4323833739,0.4499362609,246.6192627266,4.4677918235,Very Low,4.9244889733,Very Low,4.0,0.018268176,67033876.95772268,771.7073878955,5864976148.006127,5932010024.96385,0.0007732141,3.66e-08,Very Low,946.867721006,5.165e-07,3.9256132198,950.7933342258,10.5183540477,Relatively Low,8.6186622138,Relatively Low,1.0,0.003531,606440788.3682716,6906.9980871584,52493185462.40396,53099626250.77223,7e-09,4.0104e-06,Very Low,0.0150486413,9.78075e-05,743.3368981321,743.3519467734,10.4637974095,Relatively Low,9.7287461836,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,8.727e-07,1.40751e-05,1.09028e-05 -14,T15003010201,Hawaii,HI,15,Honolulu,County,3,15003,10201,15003010201,5882,557874000.0,2011289.800396436,25.5816853094,17.5102524699,Relatively Low,60.4352548152,60.1226993865,18.0813496455,Relatively Low,56.9034493188,68.4049079755,297546.2422935,249181.3591556492,0.0063307538,48113.7288361653,251.1543016855,30.9468600579,Relatively Low,40.5985828797,41.5954415954,-0.592,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,135837044.05719995,1432.211383116,10884806511.681526,11020643555.738728,7.16225e-05,6.5e-09,Very Low,680.7471428573,6.562e-07,4.9869103498,685.7340532072,2.9066433749,Very Low,2.8141353282,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.00294104,557874000.0,5882.0,44703200000.0,45261074000.0,0.0167507621,0.0001397988,Very Low,171686.6,0.00573264,43568.064,215254.664,24.8175806479,Relatively High,27.1021914971,Relatively Moderate,1.0,0.03125,557874000.0,5882.0,44703200000.0,2011289.800396436,45263085289.8004,1.80224e-05,2.1e-08,0.0002275779,Very Low,314.1937652945,3.8612e-06,29.3453308436,14.303912711,357.8430088491,4.5630928384,Very Low,4.7126137782,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0144927536,557874000.0,5882.0,44703200000.0,2011289.800396436,45263085289.8004,2.55348e-05,3.276e-07,0.0002460797,Very Low,206.4518351676,2.793e-05,212.2679644878,7.1730084535,425.8928081089,3.0553182212,Very Low,4.020628225,Very Low,0.0,0.01489,557874000.0,5882.0,44703200000.0,45261074000.0,5.8883e-06,2.64e-07,Very Low,48.9125942306,2.31219e-05,175.726491072,224.6390853026,8.2882077573,Very Low,6.6253851293,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0,6.375,136393741.7226258,1377.3125391358,10467575297.432064,63035.3285035604,10604032074.483196,6.78921e-05,5.85e-08,0.0005670888,Very Low,59032.8473920028,0.0005136831,3903.9915132622,227.8847583929,63164.7236636579,17.9843853774,Relatively Moderate,16.3585402916,Relatively Moderate,1.0,0.03125,557874000.0,5882.0,44703200000.0,2011289.800396436,45263085289.8004,2.273e-07,1.163e-07,2.19536e-05,Very Low,3.9619053212,2.13858e-05,162.5320803577,1.379846317,167.8738319958,5.3231154392,Very Low,5.8911968528,Very Low,0.0,0.0006143702,557874000.0,5882.0,44703200000.0,2011289.800396436,45263085289.8004,0.0014208892,9.474e-07,0.0003340484,Very Low,486.9972150472,3.4236e-06,26.0196966141,0.4127758112,513.4296874725,5.7048503468,Very Low,6.5422388715,Very Low,6.0,0.027402265,391320912.7946821,4049.3333832863,30774933712.975822,31166254625.77051,0.001559314,3.65e-08,Very Low,16720.647305728,4.052e-06,30.794849178,16751.442154906,27.3696856628,Relatively High,23.3323622044,Relatively High,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.01e-07,0.0001248723,0.0001089388 -15,T15007040604,Hawaii,HI,15,Kauai,County,7,15007,40604,15007040604,3139,376167000.0,807532.1623493504,8.3880250232,14.2765841171,Relatively Low,42.8710870372,30.6748466258,13.8830970216,Relatively Low,32.6111164575,22.0858895706,134685.5527553962,77709.9447390012,0.0074864082,56896.7026370244,78.9053793707,33.569475317,Relatively Moderate,69.2104615216,67.8062678063,1.048,52.509198,Relatively Low,23.5125676106,100.0,2.6254599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,21860058.46409384,182.415585415,1386358449.1537223,1408218507.6178162,9.083e-07,0.0,Very Low,1.3892481407,4e-10,0.0030759352,1.3923240759,0.3680611303,Very Low,0.3784012134,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,119.0,6.611111111,0.0,0.0,0.0030589604,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0004927213,376167000.0,3139.0,23856400000.0,24232567000.0,0.0167507621,0.0001397988,Very Low,19693.2,0.00021504,1634.304,21327.504,11.4838786799,Relatively Low,13.3171993296,Relatively Low,0.0,0.0,376167000.0,3139.0,23856400000.0,807532.1623493504,24233374532.16235,1.80224e-05,7.6e-08,0.0002275779,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,2.0,0.0289855072,376166995.48792046,3138.9999875522,23856399905.396767,807532.1623493504,24233374433.04704,2.55348e-05,3.276e-07,0.0002460797,Very Low,278.415436274,2.98104e-05,226.5587004029,5.7599208486,510.7340575256,3.2460456341,Very Low,4.5359830678,Very Low,0.0,0.01489,376167000.0,3139.0,23856400000.0,24232567000.0,5.8883e-06,2.8944e-06,Relatively Low,32.9811101323,0.0001352847,1028.1638443146,1061.1449544468,13.9066895378,Relatively Low,11.8046630662,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,51663594.44358358,101.8023609365,773697943.117316,2833.2124537414,825364370.7733533,0.000180437,1.14831e-05,0.0042466231,Very Low,55155.3144331424,0.0069166132,52566.2605523137,71.1868804704,107792.7618659264,21.4915266456,Relatively Moderate,20.7584800543,Relatively High,1.0,0.03125,376167000.0,3139.0,23856400000.0,807532.1623493504,24233374532.16235,3.2387e-06,1.8297e-06,7.27233e-05,Very Low,38.0714962911,0.0001794807,1364.0534395736,1.8351991633,1403.960135028,10.8049594658,Very Low,12.6981405265,Relatively Low,0.0,0.0001499326,376167000.0,3139.0,23856400000.0,807532.1623493504,24233374532.16235,0.0043344678,2.8901e-06,0.0010190254,Very Low,244.4626335188,1.3602e-06,10.3373675981,0.1233788883,254.9233800052,4.517385498,Very Low,5.5009638623,Very Low,4.0,0.018268176,79552220.59858328,124.6270280907,947165413.4890952,1026717634.0876783,0.001559314,3.8734e-06,Relatively Low,2266.1103815019,8.8186e-06,67.0216568862,2333.1320383881,14.1872704626,Relatively Moderate,12.8430178115,Relatively Moderate,0.0,0.0,0.0,0.0,0.0,0.0,0.000541107,3.7371e-06,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,2.3137e-06,9.77117e-05,0.0001482071 -16,T15009030303,Hawaii,HI,15,Maui,County,9,15009,30303,15009030303,3567,1129413000.0,197696.7639710142,19.7369018049,25.6493645079,Relatively High,88.693823121,86.8098159509,26.4505931648,Relatively Moderate,88.1315387894,88.9570552147,931468.5240622706,861544.7090485197,0.0092002397,69921.8217850408,1.9932287101,31.2283114516,Relatively Low,43.6448444724,45.0142450142,-0.416,51.8016,Relatively Low,16.9583200764,80.0,2.59008,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,100790585.95376156,318.3246696267,2419267489.1627007,2520058075.116462,1.80303e-05,2e-10,Very Low,127.1574129927,4.2e-09,0.0319497717,127.1893627645,1.6576395812,Very Low,1.6070109389,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1239.0,68.833333333,0.0,0.0,1.625e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.006923474,1129413000.0,3567.0,27109200000.0,28238613000.0,0.0008599048,7.5108e-06,Very Low,848650.0,0.00883652,67157.552,915807.552,40.2139430552,Very High,43.9741165216,Very High,1.0,0.03125,1129413000.0,3567.0,27109200000.0,197696.7639710143,28238810696.76397,1.80224e-05,2.1e-08,0.0002275779,Very Low,636.0836372416,2.3443e-06,17.8165518684,1.4059819995,655.3061711094,5.5826861321,Very Low,5.7732618037,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,1129413000.0,3567.0,27109200000.0,197696.7639710143,28238810696.76397,2.55348e-05,3.276e-07,0.0002460797,Very Low,288.3928569774,1.16869e-05,88.8201771908,0.4864915964,377.6995257646,2.935430672,Very Low,3.8679850902,Very Low,0.0,0.01489,1129413000.0,3567.0,27109200000.0,28238613000.0,5.8883e-06,1.627e-06,Relatively Low,99.0232916173,8.64142e-05,656.748292476,755.7715840933,12.4192596738,Relatively Low,9.94080842,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,107.0,4.458333333,45816805.85820674,16.6469757394,126517015.61972572,0.0,172333821.47793248,3.05947e-05,2.7267e-06,0.0042466231,Very Low,6249.4779108493,0.0002023715,1538.0234492799,0.0,7787.5013601292,8.9509702135,Relatively Low,8.1525703711,Relatively Low,1.0,0.03125,1129413000.0,3567.0,27109200000.0,197696.7639710143,28238810696.76397,5.132e-07,8.35e-08,1.33875e-05,Very Low,18.1118287968,9.3029e-06,70.7021550749,0.0827085754,88.8966924471,4.3065889072,Very Low,4.7725068917,Very Low,0.0,0.0002380802,1129413000.0,3567.0,27109200000.0,197696.7639710142,28238810696.76397,0.0016308791,1.0874e-06,0.0003834167,Very Low,438.5285864888,9.235e-07,7.0183510621,0.0180465388,445.5649840897,5.4415290045,Very Low,6.2485052977,Very Low,4.0,0.018268176,356660523.69661236,240.8813720156,1830698427.3183384,2187358951.0149508,0.0007732141,3.66e-08,Relatively Low,5037.9054975204,1.612e-07,1.2253441048,5039.1308416252,18.3388016795,Relatively Moderate,15.6543612096,Relatively Moderate,1.0,0.003531,1129412989.0734086,3566.9999767517,27109199823.312626,28238612812.38603,7e-09,4.0104e-06,Very Low,0.0280260353,5.0511e-05,383.8835142123,383.9115402475,8.395274174,Very Low,8.1315765739,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,8.78e-08,1.00823e-05,6.9565e-06 -17,T15009030403,Hawaii,HI,15,Maui,County,9,15009,30403,15009030403,3269,383672000.0,401871.6484401426,7.3245313886,17.0102151832,Relatively Low,57.9029131553,53.9877300613,18.443733489,Relatively Low,58.678288126,69.6319018405,315797.3279419072,249358.1267817433,0.008741447,66434.9970379305,4.2041222335,29.7011178098,Relatively Low,28.279484584,31.6239316239,-1.371,51.8016,Relatively Low,16.9583200764,80.0,2.59008,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0,0.0,0.0,0.0,0.0,4.78451e-05,4.8e-09,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,42.0,2.333333333,401871.6484401426,401871.6484401426,1.625e-07,Very Low,0.1523507661,0.1523507661,0.1451047583,Very Low,0.134040364,Very Low,,0.0064465741,383672000.0,3269.0,24844400000.0,25228072000.0,0.0008599048,7.5108e-06,Very Low,248855.3,0.00859373,65312.348,314167.648,28.1511239294,Relatively High,29.2779385716,Relatively High,1.0,0.03125,383672000.0,3269.0,24844400000.0,401871.6484401426,25228473871.64844,1.80224e-05,2.1e-08,0.0002275779,Very Low,216.0834710312,2.1484e-06,16.3280930916,2.8580351669,235.2695992897,3.9678056982,Very Low,3.9025882218,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,383672000.0,3269.0,24844400000.0,401871.6484401426,25228473871.64844,2.55348e-05,3.276e-07,0.0002460797,Very Low,97.9697101257,1.07105e-05,81.3998203636,0.9889245321,180.3584550214,2.2943967393,Very Low,2.8754496849,Very Low,0.0,0.01489,383672000.0,3269.0,24844400000.0,25228072000.0,5.8883e-06,1.627e-06,Relatively Low,33.6391243428,7.91949e-05,601.881179732,635.5203040748,11.7221875304,Very Low,8.9239875048,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.05947e-05,2.7267e-06,0.0042466231,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.03125,383672000.0,3269.0,24844400000.0,401871.6484401426,25228473871.64844,5.132e-07,8.35e-08,1.33875e-05,Very Low,6.1527550844,8.5257e-06,64.7954429324,0.1681273425,71.1163253592,3.9978637221,Very Low,4.2137175891,Very Low,0.0,7.05247e-05,383672000.0,3269.0,24844400000.0,401871.6484401426,25228473871.64844,0.005505591,3.6709e-06,0.0012943543,Very Low,148.9722004575,8.463e-07,6.43201279,0.0366844259,155.4408976735,3.830649025,Very Low,4.1833575346,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0007732141,3.66e-08,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.003531,383671965.4931728,3268.9998233806,24844398657.692806,25228070623.18598,7e-09,4.0104e-06,Very Low,0.0095207016,4.62911e-05,351.8124890209,351.8220097225,8.1545280316,Very Low,7.5121282608,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,3.1e-08,1.04614e-05,1.3105e-06 -18,T15009030404,Hawaii,HI,15,Maui,County,9,15009,30404,15009030404,5609,567723000.0,5651711.187266577,10.5235860733,21.7626773065,Relatively Moderate,78.1547725429,80.981595092,21.7984897602,Relatively Moderate,74.1005512861,82.5153374233,521364.1375527395,400193.1732488482,0.0159357687,121111.8419998061,59.1223040851,32.1510242592,Relatively Moderate,54.1008945914,58.1196581197,0.161,51.8016,Relatively Low,16.9583200764,80.0,2.59008,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0,0.0,0.0,0.0,0.0,4.78451e-05,4.8e-09,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,42.0,2.333333333,5651711.187266577,5651711.187266577,1.625e-07,Very Low,2.1425809272,2.1425809272,0.3502508394,Very Low,0.3502314548,Very Low,,0.006220697,567723000.0,5609.0,42628400000.0,43196123000.0,0.0008599048,7.5108e-06,Very Low,399450.1,0.01568232,119185.632,518635.732,33.2707606493,Relatively High,37.4566993659,Relatively High,1.0,0.03125,567723000.0,5609.0,42628400000.0,5651711.187266581,43201774711.18726,1.80224e-05,2.1e-08,0.0002275779,Very Low,319.7407067123,3.6863e-06,28.0159908693,40.1939011846,387.9505987662,4.6876365807,Very Low,4.9908933102,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,567723000.0,5609.0,42628400000.0,5651711.187266581,43201774711.18726,2.55348e-05,3.276e-07,0.0002460797,Very Low,144.966684412,1.83772e-05,139.667051826,13.9077137264,298.5414499644,2.7140919728,Very Low,3.6820004321,Very Low,0.0,0.01489,567723000.0,5609.0,42628400000.0,43196123000.0,5.8883e-06,1.627e-06,Relatively Low,49.7761228061,0.0001358838,1032.716897252,1082.4930200581,13.9993290959,Relatively Low,11.536645038,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.05947e-05,2.7267e-06,0.0042466231,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.03125,567723000.0,5609.0,42628400000.0,5651711.187266581,43201774711.18726,5.132e-07,8.35e-08,1.33875e-05,Very Low,9.1042884934,1.46286e-05,111.1770080794,2.3644543876,122.6457509603,4.794268861,Very Low,5.4699309407,Very Low,0.0,0.0001014667,567723000.0,5609.0,42628400000.0,5651711.187266577,43201774711.18726,0.0038099356,2.5403e-06,0.0008957088,Very Low,219.4713585555,1.4458e-06,10.9878736031,0.5136538593,230.9728860179,4.3712360994,Very Low,5.1676654102,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0007732141,3.66e-08,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.003531,567722906.214587,5608.9992323313,42628394165.71775,43196117071.932335,7e-09,4.0104e-06,Very Low,0.014087869,7.9427e-05,603.6451781764,603.6592660453,9.7623667417,Very Low,9.7351198346,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,3.1e-08,1.0461e-05,1.3088e-06 -19,T15001021601,Hawaii,HI,15,Hawaii,County,1,15001,21601,15001021601,7822,1094086000.0,566994.6079257398,6.8170806188,49.7951606355,Very High,99.744291233,99.6932515337,46.288812204,Very High,99.5738187217,99.6932515337,4992177.82561776,3805158.5707100113,0.1561792832,1186962.5526520708,56.7022556784,33.9564709833,Relatively Moderate,72.8134489645,70.3703703704,1.29,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,62060272.64025827,443.6903978226,3372047023.4515033,3434107296.091761,1.30436e-05,1e-10,Very Low,56.6406985726,4.1e-09,0.031505131,56.6722037036,1.266086014,Very Low,1.3616250452,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,98.0,5.444444444,0.0,0.0,5.41e-08,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0099989874,1094086000.0,7822.0,59447200000.0,60541286000.0,0.0008505842,1.16917e-05,Very Low,3343740.7,0.13792784,1048251.584,4391992.284,67.8155218284,Very High,82.2650123419,Very High,1.0,0.03125,1094086000.0,7822.0,59447200000.0,566994.6079257398,60541852994.60792,1.80224e-05,7.6e-08,0.0002275779,Very Low,616.1875260291,1.85843e-05,141.2407668887,4.0323584288,761.4606513466,5.8691825077,Very Low,6.7331958941,Relatively Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0144927536,1094086000.0,7822.0,59447200000.0,566994.6079257398,60541852994.60792,2.55348e-05,3.276e-07,0.0002460797,Very Low,404.8872371382,3.71419e-05,282.2781397865,2.0221139266,689.1874908512,3.5870338637,Very Low,5.2434126229,Very Low,0.0,0.01489,1094086000.0,7822.0,59447200000.0,60541286000.0,5.8883e-06,1.361e-06,Very Low,95.9259341201,0.0001585151,1204.714747688,1300.6406818081,14.8827995601,Relatively Low,13.2152755837,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,120948558.08203287,753.2226728277,5724492313.490836,19158.5575277741,5845460030.130397,0.0006245044,3.8327e-06,0.0003492485,Very Low,446903.0195826046,0.0170807736,129813.8797014064,39.5889891275,576756.4882731385,37.5896454739,Very High,37.9802893472,Very High,1.0,0.03125,1094086000.0,7822.0,59447200000.0,566994.6079257398,60541852994.60792,8.3601e-06,3.102e-07,0.0006212585,Very Low,285.8325276715,7.58359e-05,576.3528488228,11.0078186279,873.1931951221,9.2230592245,Very Low,11.3384513041,Very Low,0.0,7.99759e-05,1094086000.0,7822.0,59447200000.0,566994.6079257398,60541852994.60792,0.0047816194,3.1882e-06,0.0011241499,Very Low,418.3939264616,1.9945e-06,15.1578838311,0.0509755678,433.6027858605,5.3923898832,Very Low,6.8692131386,Very Low,19.0,0.086773839,218840398.9186238,746.6182267855,5674298523.5697565,5893138922.48838,0.0006654598,3.8734e-06,Very Low,12636.8292031895,0.0002509467,1907.1951510591,14544.0243542486,26.1104249456,Relatively High,24.7254344658,Relatively High,3.0,0.0200386,1094085980.3737593,7821.9998504835,59447198863.67453,60541284844.0483,7e-09,4.0043e-06,Very Low,0.1540742249,0.0006276471,4770.117907457,4770.2719816818,19.4448923018,Relatively Low,20.8934909442,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,2.221e-06,0.0001000049,0.0004101879 -20,T15001021013,Hawaii,HI,15,Hawaii,County,1,15001,21013,15001021013,4970,472410000.0,49059676.890542656,51.0843274312,34.2704008127,Relatively High,97.6615020828,91.717791411,31.7870290791,Relatively High,95.1456577627,92.3312883436,1616634.1715474543,1092599.9326310402,0.0687639329,522605.8900662626,1428.3488501514,34.0316312987,Relatively Moderate,73.4741334501,71.2250712251,1.337,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.067971012,11575814.750016397,121.7836186947,925555502.0800141,937131316.8300304,3.7564e-06,3e-10,Very Low,2.9556129381,2.4e-09,0.0180424519,2.97365539,0.473990958,Very Low,0.5108866985,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,5.41e-08,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0099996439,472410000.0,4970.0,37772000000.0,38244410000.0,0.0008505842,1.16917e-05,Very Low,1091887.0999999999,0.06816968,518089.568,1609976.6679999998,48.5342637441,Very High,59.0058028418,Very High,1.0,0.03125,472410000.0,4970.0,37772000000.0,49059676.89054267,38293469676.89054,1.80224e-05,7.6e-08,0.0002275779,Very Low,266.0605740053,1.18082e-05,89.742599263,348.9031445064,704.7063177748,5.7195849429,Very Low,6.5760993879,Relatively Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0130926272,472410000.0,4970.0,37772000000.0,49059676.89054267,38293469676.89054,2.55348e-05,3.276e-07,0.0002460797,Very Low,143.453420139,1.9751e-05,150.1073280265,123.7327500539,417.2934982194,3.0346146773,Very Low,4.4457223006,Very Low,0.0,0.01489,472410000.0,4970.0,37772000000.0,38244410000.0,5.8883e-06,1.361e-06,Very Low,41.4193861705,0.0001007185,765.46053388,806.8799200505,12.6931230651,Relatively Low,11.295886,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,607.4849160695,0.0,0.0,0.0,607.4849160695,0.0006245044,3.8327e-06,0.0003492485,Very Low,2.2446472091,0.0,0.0,0.0,2.2446472091,0.5912712527,Very Low,0.5987382758,Very Low,1.0,0.03125,472410000.0,4970.0,37772000000.0,49059676.89054267,38293469676.89054,8.3601e-06,3.102e-07,0.0006212585,Very Low,123.4182179437,4.81852e-05,366.2073202052,952.4606012164,1442.0861393653,10.9018938929,Relatively Low,13.432007056,Relatively Low,0.0,0.00037632,472410000.0,4970.0,37772000000.0,49059676.890542656,38293469676.89054,0.0007493188,4.996e-07,0.0001761635,Very Low,133.2119011897,9.344e-07,7.1017795182,3.2523543748,143.5660350827,3.7305067727,Very Low,4.7624656829,Very Low,0.0,0.0,6173149.858796488,49.0,372400000.0,378573149.8587965,0.0006654598,3.8734e-06,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,4.0,0.0207448,472409670.70662737,4969.9964727827,37771973193.14844,38244382863.85506,7e-09,4.0043e-06,Very Low,0.0688714448,0.0004128532,3137.6844629178,3137.7533343626,16.9107977252,Relatively Low,18.2108316966,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,3.65e-08,2.91145e-05,1.5088e-06 -21,T15001021702,Hawaii,HI,15,Hawaii,County,1,15001,21702,15001021702,9540,1290871000.0,1847307.132536592,202.2053672226,41.6514079785,Very High,99.2906143884,97.5460122699,43.0017491363,Very High,99.3098612849,99.3865030675,4002398.255892564,3010194.054478895,0.1303958532,991008.4843458552,1195.7170678134,30.5742567924,Relatively Low,36.7056055591,37.8917378917,-0.825,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.002,2781293.4652375295,20.5547569497,156216152.8174247,158997446.28266224,0.0001485004,1.32e-08,Very Low,0.8260461896,5e-10,0.0041116194,0.830157809,0.3097847707,Very Low,0.2999768522,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1904.0,105.777777777,0.0,0.0,5.41e-08,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0099727839,1290871000.0,9540.0,72504000000.0,73794871000.0,0.0008505842,1.16917e-05,Very Low,2069190.1,0.09295506,706458.4560000001,2775648.556,58.1964835648,Very High,63.5647236624,Very High,1.0,0.03125,1290871000.0,9540.0,72504000000.0,1847307.132536592,73796718307.13252,1.80224e-05,7.6e-08,0.0002275779,Very Low,727.0165306165,2.26661e-05,172.2624541197,13.1376989875,912.4166837238,6.2338957004,Very Low,6.4392683964,Relatively Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,1290871000.0,9540.0,72504000000.0,1847307.132536592,73796718307.13252,2.55348e-05,3.276e-07,0.0002460797,Very Low,329.6207637766,3.12567e-05,237.5510205776,4.5458477818,571.7176321361,3.3704162765,Very Low,4.4360400879,Very Low,0.0,0.01489,1290871000.0,9540.0,72504000000.0,73794871000.0,5.8883e-06,1.361e-06,Very Low,113.1794086604,0.0001933309,1469.31458616,1582.4939948204,15.8883773218,Relatively Low,12.7029473048,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,254174294.53165004,1597.5991511029,12141753548.38204,552684.3798532827,12396480527.293545,0.0006245044,3.8327e-06,0.0003492485,Very Low,939170.020112434,0.0362286352,275337.6278939629,1142.059670892,1215649.7076772891,48.1955436376,Very High,43.8460306298,Very High,1.0,0.03125,1290871000.0,9540.0,72504000000.0,1847307.132536592,73796718307.13252,8.3601e-06,3.102e-07,0.0006212585,Very Low,337.2430694017,9.24923e-05,702.9412142414,35.8642244223,1076.0485080654,9.8881603341,Very Low,10.945298289,Very Low,0.0,0.0012659477,1290871000.0,9540.0,72504000000.0,1847307.132536592,73796718307.13252,0.0001993923,1.329e-07,4.68768e-05,Very Low,325.8419546829,1.6056e-06,12.2027969479,0.1096257297,338.1543773606,4.9635103885,Very Low,5.6929552963,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0006654598,3.8734e-06,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,5.0,0.0209036275,1283193020.0345883,9471.8345321507,71985942444.34518,73269135464.37978,7e-09,4.0043e-06,Very Low,0.2065931336,0.0008708058,6618.124268226,6618.3308613596,21.6873915176,Relatively Low,20.9819644591,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,3.8333e-06,0.0006472757,0.0007289681 -22,T15001021704,Hawaii,HI,15,Hawaii,County,1,15001,21704,15001021704,8087,1437523000.0,0.0,141.2921284365,37.4934682651,Very High,98.6279712396,95.0920245399,40.54780701,Very High,99.0060352768,97.2392638037,3355552.5856007547,2636098.9296592614,0.0946649547,719453.6559414929,0.0,29.1877888475,Relatively Low,23.8708177167,28.2051282051,-1.692,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,136722744.0023373,769.1541844874,5845571802.104352,5982294546.106689,5.2e-08,0.0,Very Low,0.4976182338,1e-10,0.0008613326,0.4984795664,0.2613498758,Very Low,0.2415990737,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1589.0,88.277777777,0.0,0.0,5.41e-08,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0099749521,1437523000.0,8087.0,61461200000.0,62898723000.0,0.0008505842,1.16917e-05,Very Low,2606385.9000000004,0.09327958,708924.808,3315310.708,61.7471139969,Very High,64.3845063537,Very High,1.0,0.03125,1437523000.0,8087.0,61461200000.0,0.0,62898723000.0,1.80224e-05,7.6e-08,0.0002275779,Very Low,809.610707915,1.92139e-05,146.0258350586,0.0,955.6365429737,6.3308113948,Relatively Low,6.2428321439,Relatively Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,1437523000.0,8087.0,61461200000.0,0.0,62898723000.0,2.55348e-05,3.276e-07,0.0002460797,Very Low,367.0679945606,2.64961e-05,201.3705559131,0.0,568.4385504738,3.3639602531,Very Low,4.2267645992,Very Low,0.0,0.01489,1437523000.0,8087.0,61461200000.0,62898723000.0,5.8883e-06,1.361e-06,Very Low,126.0373833448,0.0001638854,1245.529041748,1371.5664250928,15.1485525076,Relatively Low,11.5622238963,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,4275225.009284457,11.3075413498,85937314.2587605,0.0,90212539.26804496,0.0006245044,3.8327e-06,0.0003492485,Very Low,15796.8891596742,0.0002564203,1948.7939827883,0.0,17745.6831424625,11.7788160915,Relatively Low,10.229875008,Relatively Low,1.0,0.03125,1437523000.0,8087.0,61461200000.0,0.0,62898723000.0,8.3601e-06,3.102e-07,0.0006212585,Very Low,375.5562475673,7.84051e-05,595.8789936627,0.0,971.43524123,9.5567340721,Very Low,10.0987330053,Very Low,0.0,0.0009691875,1437523000.0,8087.0,61461200000.0,0.0,62898723000.0,0.0002586645,1.725e-07,0.0314801129,Very Low,360.3789426695,1.3518e-06,10.2735112261,0.0,370.6524538956,5.117677217,Very Low,5.6035862783,Very Low,35.0,0.159846547,111653589.95093364,124.2335248173,944174788.6111234,1055828378.5620573,0.0006654598,3.8734e-06,Very Low,11876.7538770515,7.69195e-05,584.5878715456,12461.3417485972,24.799371691,Relatively High,20.1859557314,Relatively Moderate,4.0,0.022325698,1436641529.8863049,8083.20001332,61432320101.23161,62868961631.11791,7e-09,4.0043e-06,Very Low,0.2377282447,0.0007626825,5796.3872882176,5796.6250164624,20.7499106293,Relatively Low,19.1646258394,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,6.75e-08,,1.24075e-05 -23,T15001021902,Hawaii,HI,15,Hawaii,County,1,15001,21902,15001021902,3925,399581000.0,2581801.8541268115,115.3501535902,27.002929534,Relatively High,91.1271807421,88.3435582822,24.1028365867,Relatively Moderate,82.2268659179,86.5030674847,704800.8282911462,512501.7453728801,0.0251794315,191363.6796525504,935.4032657156,35.3637279516,Relatively High,83.5376029327,82.905982906,2.17,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.067971012,22856965.639919005,224.5191591609,1706345609.62304,1729202575.262959,8.8e-09,0.0,Very Low,0.0136155178,0.0,7.29943e-05,0.0136885121,0.0788482259,Very Low,0.0883124103,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,224.0,12.444444444,0.0,0.0,5.41e-08,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.009884127,399581000.0,3925.0,29830000000.0,30229581000.0,0.0008505842,1.16917e-05,Very Low,422346.0,0.0199002,151241.52,573587.52,34.4066045743,Relatively High,43.4673703843,Very High,1.0,0.03125,399581000.0,3925.0,29830000000.0,2581801.854126812,30232162801.85412,1.80224e-05,7.6e-08,0.0002275779,Very Low,225.0433949783,9.3254e-06,70.8731794986,18.3612865492,314.2778610261,4.3698485829,Very Low,5.2209017008,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,399581000.0,3925.0,29830000000.0,2581801.854126812,30232162801.85412,2.55348e-05,3.276e-07,0.0002460797,Very Low,102.0320345028,1.28598e-05,97.734565594,6.3532901622,206.119890259,2.3988125677,Very Low,3.651828438,Very Low,0.0,0.01489,399581000.0,3925.0,29830000000.0,30229581000.0,5.8883e-06,1.361e-06,Very Low,35.0339741864,7.95413e-05,604.5136007,639.5475748864,11.7468964466,Very Low,10.8630111137,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,24231739.68756725,212.4539917618,1614650337.3899603,416363.7036091328,1639298440.7811368,0.0006245044,3.8327e-06,0.0003492485,Very Low,89535.8969783547,0.0048178031,36615.3037124016,860.3684338636,127011.5691246199,22.6996151325,Relatively High,23.8860328609,Relatively High,1.0,0.03125,399581000.0,3925.0,29830000000.0,2581801.854126812,30232162801.85412,8.3601e-06,3.102e-07,0.0006212585,Very Low,104.3914712733,3.80537e-05,289.2079943275,50.1239450006,443.7234106013,7.3599635589,Very Low,9.4230153392,Very Low,0.0,0.0010265904,399581000.0,3925.0,29830000000.0,2581801.8541268115,30232162801.85412,0.0003150456,2.101e-07,7.40666e-05,Very Low,129.2335939336,8.464e-07,6.432756402,0.1963101401,135.8626604756,3.6625534291,Very Low,4.8587514569,Very Low,4.0,0.018268176,1977759.7407743428,10.380779771,78893926.25924085,80871686.0000152,0.0006654598,3.8734e-06,Very Low,24.0431034706,7.345e-07,5.5825535655,29.6256570361,3.3098507134,Very Low,3.2641784236,Relatively Low,4.0,0.0218268636,398364800.99124306,3913.137707217,29739846574.84885,30138211375.840096,7e-09,4.0043e-06,Very Low,0.0572066629,0.0003200673,2432.5112170668,2432.5684237297,15.5350569596,Relatively Low,17.3841639553,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.2633e-06,0.0003623064,0.0002255654 -24,T15003007502,Hawaii,HI,15,Honolulu,County,3,15003,7502,15003007502,1376,196711000.0,0.0,7.7618787766,7.997483957,Very Low,5.4441221353,5.8282208589,13.4756112773,Relatively Low,29.9577943057,19.9386503067,123170.6861596142,117626.135823795,0.0007295461,5544.5503358193,0.0,18.9659859594,Very Low,1.2256175964,10.5413105413,-8.084,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0,0.0,0.0,0.0,0.0,4.78451e-05,4.8e-09,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0028437331,196711000.0,1376.0,10457600000.0,10654311000.0,0.0167507621,0.0001397988,Very Low,117052.4,0.00071256,5415.456,122467.856,20.5643959253,Relatively Moderate,13.7632106877,Relatively Low,1.0,0.03125,196711000.0,1376.0,10457600000.0,0.0,10654311000.0,1.80224e-05,2.1e-08,0.0002275779,Very Low,110.7873278999,9.033e-07,6.8648716832,0.0,117.6521995832,3.1494047356,Very Low,1.9933788852,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,196711000.0,1376.0,10457600000.0,0.0,10654311000.0,2.55348e-05,3.276e-07,0.0002460797,Very Low,50.2296744317,4.5083e-06,34.263124142,0.0,84.4927985737,1.7819530051,Very Low,1.4371183905,Very Low,0.0,0.01489,196711000.0,1376.0,10457600000.0,10654311000.0,5.8883e-06,2.64e-07,Very Low,17.2469864587,5.409e-06,41.108407296,58.3553937547,5.2884189904,Very Low,2.590807762,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0,6.375,334545.9186602516,0.0,0.0,0.0,334545.9186602516,6.78921e-05,5.85e-08,0.0005670888,Very Low,144.7954863065,0.0,0.0,0.0,144.7954863065,2.3713140511,Very Low,1.3218946842,Very Low,1.0,0.03125,196711000.0,1376.0,10457600000.0,0.0,10654311000.0,2.273e-07,1.163e-07,2.19536e-05,Very Low,1.3970006805,5.0029e-06,38.0217855444,0.0,39.4187862249,3.2840213033,Very Low,2.2274217169,Very Low,0.0,0.0002439162,196711000.0,1376.0,10457600000.0,0.0,10654311000.0,0.0051953759,3.4641e-06,0.0314801129,Very Low,249.2793480177,1.1627e-06,8.8361471536,0.0,258.1154951713,4.5361626976,Very Low,3.1876813425,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.001559314,3.65e-08,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.23e-08,,2.9166e-06 -25,T15001020202,Hawaii,HI,15,Hawaii,County,1,15001,20202,15001020202,2568,183300000.0,19450471.041291997,244.9265376883,26.8331711535,Relatively High,90.8054826159,87.7300613497,25.4228346534,Relatively Moderate,85.7586714142,88.3435582822,827053.979074397,517884.4786890347,0.040605854,308604.4903297234,565.0100556387,33.316808725,Relatively Moderate,66.7428118075,65.2421652422,0.89,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.067971012,530773.6291478402,7.4360429877,56513926.70677888,57044700.33592673,2.91625e-05,1.8e-09,Very Low,1.0521023568,9e-10,0.006837104,1.0589394608,0.3359672067,Very Low,0.35451291,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,5.41e-08,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0099986349,183300000.0,2568.0,19516800000.0,19700100000.0,0.0008505842,1.16917e-05,Very Low,510273.9,0.03978193,302342.668,812616.568,38.6429680605,Very High,45.9935976887,Very High,1.0,0.03125,183300000.0,2568.0,19516800000.0,19450471.041291986,19719550471.041286,1.80224e-05,7.6e-08,0.0002275779,Very Low,103.2342736504,6.1013e-06,46.3700190961,138.3280718214,287.9323645679,4.2441620115,Very Low,4.7772331358,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0085026261,183300000.0,2568.0,19516800000.0,19450471.041291986,19719550471.041286,2.55348e-05,3.276e-07,0.0002460797,Very Low,47.5251579324,8.8161e-06,67.0024084263,47.8636600709,162.3912264296,2.2155277901,Very Low,3.1775808335,Very Low,0.0,0.01489,183300000.0,2568.0,19516800000.0,19700100000.0,5.8883e-06,1.361e-06,Very Low,16.0711532039,5.20413e-05,395.513611872,411.5847650759,10.1418835219,Very Low,8.8359053801,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,1988278.7391910965,22.8556851439,173703207.09342223,0.0,175691485.83261335,0.0006245044,3.8327e-06,0.0003492485,Very Low,7346.6586655273,0.0005182966,3939.0545037912,0.0,11285.7131693184,10.1293226006,Relatively Low,10.0417935626,Relatively Low,1.0,0.03125,183300000.0,2568.0,19516800000.0,19450471.041291986,19719550471.041286,8.3601e-06,3.102e-07,0.0006212585,Very Low,47.8875539237,2.48973e-05,189.2193960336,377.6178017498,614.7247517071,8.2047455424,Very Low,9.8965701001,Very Low,0.0,0.0015977717,183300000.0,2568.0,19516800000.0,19450471.041291997,19719550471.041286,0.0001643146,1.096e-07,3.86301e-05,Very Low,48.1230596103,4.495e-07,3.4164308742,1.2005219967,52.7400124812,2.6717593631,Very Low,3.3389626051,Very Low,3.0,0.013701132,0.0,0.0,0.0,0.0,0.0006654598,3.8734e-06,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,4.0,0.0207448,183299817.8147132,2567.9933134509,19516749182.2268,19700049000.04151,7e-09,4.0043e-06,Very Low,0.0267228299,0.0002133209,1621.239122526,1621.265845356,13.5698768441,Relatively Low,14.3061317429,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,2.378e-07,2.90487e-05,4.15197e-05 -26,T15001020300,Hawaii,HI,15,Hawaii,County,1,15001,20300,15001020300,3934,677850000.0,103350.899803428,1.2709697914,40.5458083398,Very High,99.1517617784,96.9325153374,36.0264444526,Relatively High,97.9543298643,94.7852760736,2353564.7149971174,2038255.8316858609,0.04148735,315303.8597053038,5.0236059534,35.5252426719,Relatively High,84.6483188794,84.0455840456,2.271,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.067971012,38504874.710603446,223.4685802338,1698361209.7772455,1736866084.4878492,1.61443e-05,1e-09,Very Low,42.2530795804,1.5e-08,0.1140789343,42.3671585148,1.1490783013,Very Low,1.2928806869,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,5.41e-08,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0099965667,677850000.0,3934.0,29898400000.0,30576250000.0,0.0008505842,1.16917e-05,Very Low,1823510.7,0.0372599,283175.24,2106685.94,53.0854109894,Very High,67.3714272457,Very High,1.0,0.03125,677850000.0,3934.0,29898400000.0,103350.899803428,30576353350.8998,1.80224e-05,7.6e-08,0.0002275779,Very Low,381.7640610691,9.3468e-06,71.0356912478,0.735012055,453.5347643718,4.9381618494,Very Low,5.9268435024,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,677850000.0,3934.0,29898400000.0,103350.899803428,30576353350.8998,2.55348e-05,3.276e-07,0.0002460797,Very Low,173.0873454636,1.28893e-05,97.9586703304,0.2543255804,271.3003413745,2.6288943199,Very Low,4.020371551,Very Low,0.0,0.01489,677850000.0,3934.0,29898400000.0,30576250000.0,5.8883e-06,1.361e-06,Very Low,59.4317032147,7.97237e-05,605.899746536,665.3314497507,11.9026831383,Very Low,11.0573477508,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,57842789.44656033,165.7998817432,1260079101.2480536,978.1387811597,1317922868.8333955,0.0006245044,3.8327e-06,0.0003492485,Very Low,213728.197133329,0.0037598314,28574.7185786544,2.0212130019,242304.9369249853,28.1530091221,Relatively High,29.759755919,Relatively High,1.0,0.03125,677850000.0,3934.0,29898400000.0,103350.899803428,30576353350.8998,8.3601e-06,3.102e-07,0.0006212585,Very Low,177.0898986754,3.81409e-05,289.8711464164,2.0064881467,468.9675332385,7.4969706224,Very Low,9.6422648288,Very Low,0.0,9.7837e-06,677850000.0,3934.0,29898400000.0,103350.899803428,30576353350.8998,0.0276254828,1.84197e-05,0.0064947002,Very Low,183.2096424429,7.09e-07,5.3881035599,0.0065671694,188.6043131722,4.0857125073,Very Low,5.4449646719,Very Low,0.0,0.0,199213148.09323543,676.7842904604,5143560607.498727,5342773755.591963,0.0006654598,3.8734e-06,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,4.0,0.0207448,677850000.0,3934.0,29898400000.0,30576250000.0,7e-09,4.0043e-06,Very Low,0.0988220855,0.0003267939,2483.6336896246,2483.7325117101,15.6432181718,Relatively Low,17.585149872,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,9.915e-07,4.86073e-05,0.0003168032 -27,T15003009507,Hawaii,HI,15,Honolulu,County,3,15003,9507,15003009507,2560,291260000.0,0.0,0.6777584315,10.37452179,Very Low,17.9491057067,10.4294478528,13.7534872042,Relatively Low,31.7642530142,21.472392638,130948.4674371914,125905.400600614,0.0006635614,5043.0668365775,0.0,24.1056722051,Very Low,3.4429458594,12.8205128205,-4.87,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0,0.0,0.0,0.0,0.0,4.78451e-05,4.8e-09,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0038371924,291260000.0,2560.0,19456000000.0,19747260000.0,0.0167507621,0.0001397988,Very Low,125352.3,0.00063244,4806.544,130158.844,20.9861680407,Relatively Moderate,17.8517488934,Relatively Moderate,1.0,0.03125,291260000.0,2560.0,19456000000.0,0.0,19747260000.0,1.80224e-05,2.1e-08,0.0002275779,Very Low,164.0371769964,1.6805e-06,12.7718542944,0.0,176.8090312908,3.6074191585,Very Low,2.9020293931,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,291260000.0,2560.0,19456000000.0,0.0,19747260000.0,2.55348e-05,3.276e-07,0.0002460797,Very Low,74.3725311496,8.3875e-06,63.745347241,0.0,138.1178783905,2.0991315083,Very Low,2.1516903399,Very Low,0.0,0.01489,291260000.0,2560.0,19456000000.0,19747260000.0,5.8883e-06,2.64e-07,Very Low,25.5367380369,1.00633e-05,76.48075776,102.0174957969,6.3707477239,Very Low,3.9668297631,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.78921e-05,5.85e-08,0.0005670888,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.03125,291260000.0,2560.0,19456000000.0,0.0,19747260000.0,2.273e-07,1.163e-07,2.19536e-05,Very Low,2.0684680481,9.3077e-06,70.738205664,0.0,72.8066737121,4.0292908096,Very Low,3.4735129238,Very Low,0.0,1.65662e-05,291260000.0,2560.0,19456000000.0,0.0,19747260000.0,0.0594988816,3.96718e-05,0.0314801129,Very Low,287.0856863831,1.6825e-06,12.7866716181,0.0,299.8723580012,4.768656889,Very Low,4.2594450047,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.001559314,3.65e-08,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.22e-08,,1.899e-06 -28,T15009031502,Hawaii,HI,15,Maui,County,9,15009,31502,15009031502,5036,709032000.0,4590410.1368262,33.4481475347,20.8852252798,Relatively Moderate,74.9817841873,77.9141104294,24.198196878,Relatively Moderate,82.5403153741,86.8098159509,713199.375733464,567506.0158586083,0.019129296,145382.649682015,310.7101928407,27.79492428,Relatively Low,14.3120947665,19.3732193732,-2.563,51.8016,Relatively Low,16.9583200764,80.0,2.59008,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,23099293.95246688,164.0660003281,1246901602.4934509,1270000896.4459178,4.581e-05,2.2e-09,Very Low,74.0418791841,2.48e-08,0.1886672111,74.2305463952,1.3852688343,Very Low,1.1953078769,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,392.0,21.777777777,0.0,0.0,1.625e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0058748695,709032000.0,5036.0,38273600000.0,38982632000.0,0.0008599048,7.5108e-06,Very Low,550446.2,0.01581874,120222.424,670668.6240000001,36.2474880052,Very High,35.2789273681,Relatively High,1.0,0.03125,709032000.0,5036.0,38273600000.0,4590410.1368262,38987222410.136826,1.80224e-05,2.1e-08,0.0002275779,Very Low,399.3257147569,3.3097e-06,25.153954362,32.6461288135,457.1257979323,4.951160858,Very Low,4.5572417759,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,709032000.0,5036.0,38273600000.0,4590410.1368262,38987222410.136826,2.55348e-05,3.276e-07,0.0002460797,Very Low,181.0495931678,1.64999e-05,125.3990502756,11.2960673245,317.7447107678,2.7710803876,Very Low,3.2499679737,Very Low,0.0,0.01489,709032000.0,5036.0,38273600000.0,38982632000.0,5.8883e-06,1.627e-06,Relatively Low,62.1656404717,0.0001220023,927.217381808,989.3830222797,13.5858559669,Relatively Low,9.6789889819,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,107.0,4.458333333,49165319.45551353,253.3727385673,1925632813.1116757,13966.8999917194,1974812099.467181,3.05947e-05,2.7267e-06,0.0042466231,Very Low,6706.2199592869,0.0030801644,23409.2497895341,264.4333801592,30379.9031289802,14.0907095081,Relatively Moderate,11.4228454037,Relatively Low,1.0,0.03125,709032000.0,5036.0,38273600000.0,4590410.1368262,38987222410.136826,5.132e-07,8.35e-08,1.33875e-05,Very Low,11.3703899242,1.31341e-05,99.819470972,1.920447636,113.1103085322,4.6666541082,Very Low,4.6029446457,Very Low,0.0,0.000384431,709032000.0,5036.0,38273600000.0,4590410.1368262,38987222410.136826,0.0009982937,6.656e-07,0.000234697,Very Low,272.1088122904,1.2887e-06,9.7937574448,0.4141689076,282.3167386428,4.673721251,Very Low,4.7765928461,Very Low,5.0,0.022835221,529748701.1041623,3369.4402347956,25607745784.4464,26137494485.55056,0.0007732141,3.66e-08,Very Low,9353.516275116,2.8191e-06,21.4250892171,9374.9413643331,22.5549531321,Relatively Moderate,17.1365470909,Relatively Moderate,1.0,0.003531,709031990.6309193,5035.9999867482,38273599899.28609,38982631889.917,7e-09,4.0104e-06,Very Low,0.0175944103,7.1313e-05,541.9785211903,541.9961156007,9.4179537409,Very Low,8.1192033408,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,6.427e-07,6.76868e-05,1.08687e-05 -29,T15009031700,Hawaii,HI,15,Maui,County,9,15009,31700,15009031700,4503,555074000.0,1276731.153754402,122.8431385787,22.3560952843,Relatively Moderate,80.1344533194,82.2085889571,20.0761939648,Relatively Moderate,66.5571426607,77.9141104294,407292.1930305858,311299.9264943793,0.0118049895,89717.9200985319,6274.3464376747,35.8610653575,Relatively High,86.5482997292,85.754985755,2.481,51.8016,Relatively Low,16.9583200764,80.0,2.59008,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,69959563.72471517,567.5421933875,4313320669.745264,4383280233.469979,1.491e-07,0.0,Very Low,0.7298131267,6e-10,0.0046429426,0.7344560692,0.2973914322,Very Low,0.3310791736,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,770.0,42.777777777,0.0,0.0,1.625e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0050032569,555074000.0,4503.0,34222800000.0,34777874000.0,0.0008599048,7.5108e-06,Very Low,300975.7,0.00681676,51807.376,352783.076,29.26023654,Relatively High,36.7428620471,Relatively High,1.0,0.03125,555074000.0,4503.0,34222800000.0,1276731.153754402,34779150731.153755,1.80224e-05,2.1e-08,0.0002275779,Very Low,312.6168096693,2.9594e-06,22.4917109794,9.0798705263,344.1883911751,4.5042988642,Very Low,5.3490902368,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,555074000.0,4503.0,34222800000.0,1276731.153754402,34779150731.153755,2.55348e-05,3.276e-07,0.0002460797,Very Low,141.7367930897,1.47536e-05,112.1270697758,3.141776146,257.0056390115,2.5818870076,Very Low,3.9068333014,Very Low,0.0,0.01489,555074000.0,4503.0,34222800000.0,34777874000.0,5.8883e-06,1.627e-06,Relatively Low,48.6670992553,0.0001090898,829.082579484,877.7496787393,13.0543648938,Relatively Low,11.9993143124,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,107.0,4.458333333,53882794.81154165,393.4555693181,2990262326.8174186,330715.4008730415,3044475837.0298333,3.05947e-05,2.7267e-06,0.0042466231,Very Low,7349.6903514333,0.0047831028,36351.5812921717,6261.3888103603,49962.6604539653,16.6323105532,Relatively Moderate,17.3960927705,Relatively Moderate,1.0,0.03125,555074000.0,4503.0,34222800000.0,1276731.153754402,34779150731.153755,5.132e-07,8.35e-08,1.33875e-05,Very Low,8.9014428359,1.17441e-05,89.2547811335,0.534134261,98.6903582304,4.4592633895,Very Low,5.6748051881,Very Low,0.0,0.0024062802,555074000.0,4503.0,34222800000.0,1276731.153754402,34779150731.153755,0.0002794641,1.863e-07,6.57015e-05,Very Low,373.2700670825,2.0191e-06,15.3447945665,0.2018463811,388.8167080301,5.1999468378,Very Low,6.8569915193,Very Low,7.0,0.031969309,84493307.16276018,678.656794461,5157791637.9032755,5242284945.066035,0.0007732141,3.66e-08,Very Low,2088.6003439168,7.949e-07,6.0414768162,2094.641820733,13.6863927662,Relatively Moderate,13.4161554257,Relatively Moderate,1.0,0.003531,555073174.039344,4502.9919424707,34222738762.77709,34777811936.81642,7e-09,4.0104e-06,Very Low,0.0137739698,6.37652e-05,484.6157506621,484.6295246319,9.0732132399,Very Low,10.0919635959,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.0934e-06,0.0049143834,1.4837e-05 -30,T15001021202,Hawaii,HI,15,Hawaii,County,1,15001,21202,15001021202,8451,921317000.0,67149035.71069637,934.5492187546,57.9621366282,Very High,99.887268178,100.0,50.9009757018,Very High,99.7415416764,100.0,6638046.013878048,4824851.129846153,0.2383117837,1811169.5564462843,2025.32758561,35.9442214511,Relatively High,86.9723415315,86.6096866097,2.533,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,83809817.36564039,768.7655460141,5842618149.706782,5926427967.072424,1.5e-09,0.0,Very Low,0.0089197982,0.0,4.12276e-05,0.0089610257,0.0684634982,Very Low,0.0779399169,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,812.0,45.111111111,0.0,0.0,5.41e-08,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0099993129,921317000.0,8451.0,64227600000.0,65148917000.00001,0.0008505842,1.16917e-05,Very Low,4823252.0,0.23728574,1803371.624,6626623.624,77.7808503062,Very High,99.8769515712,Very High,1.0,0.03125,921317000.0,8451.0,64227600000.0,67149035.7106964,65216066035.7107,1.80224e-05,7.6e-08,0.0002275779,Very Low,518.8842951283,2.00788e-05,152.5985324699,477.5512436032,1149.0340712014,6.7319274673,Relatively Low,8.1750345355,Relatively Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.0145222912,916526100.2799532,8404.8988265971,63877231082.13767,67149035.7106964,64860906218.12833,2.55348e-05,3.276e-07,0.0002460797,Very Low,339.1880815019,3.99097e-05,303.3136289789,239.4784683418,881.9801788226,3.8944185305,Very Low,6.0259803913,Very Low,0.0,0.01489,921317000.0,8451.0,64227600000.0,65148917000.00001,5.8883e-06,1.361e-06,Very Low,80.7781050537,0.000171262,1301.590940004,1382.3690450577,15.1882191486,Relatively Low,14.2759487032,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,33595.8970324927,0.3104494424,2359415.7624847298,0.0,2393011.6595172225,0.0006245044,3.8327e-06,0.0003492485,Very Low,124.1363110689,7.04e-06,53.5042929894,0.0,177.6406040583,2.5385446927,Very Low,2.7150722173,Very Low,1.0,0.03125,921317000.0,8451.0,64227600000.0,67149035.7106964,65216066035.7107,8.3601e-06,3.102e-07,0.0006212585,Very Low,240.6962221409,8.19342e-05,622.6998114826,1303.6533254449,2167.0493590684,12.4870873874,Relatively Low,16.2497403306,Relatively Low,2.0,0.0070628791,921317000.0,8451.0,64227600000.0,67149035.71069637,65216066035.7107,4.16555e-05,2.78e-08,9.7931e-06,Very Low,271.0588231698,1.6578e-06,12.5993870449,4.6445482201,288.3027584348,4.7065231209,Very Low,6.3464133912,Very Low,21.0,0.095907928,379409.9916177188,1.3972932715,10619428.86368238,10998838.855300099,0.0006654598,3.8734e-06,Very Low,24.2150337388,5.191e-07,3.9450254625,28.1600592013,3.2543450395,Very Low,3.2621214124,Relatively Low,4.0,0.0207448,921315089.3788786,8450.9785947338,64227437319.97716,65148752409.35605,7e-09,4.0043e-06,Very Low,0.1343162625,0.0007020153,5335.3165094503,5335.4508257128,20.1843546699,Relatively Low,22.9576202858,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,53.0,1.2887045444,80084.4603006705,3.5257309566,26795555.270413022,0.0,26875639.730713695,8.51e-08,1.057e-07,0.0,Very Low,0.0297382894,1.6269e-06,12.364277175,0.0,12.3940154644,3.6838330638,Very Low,2.5516985128,Very Low,November 2021,3.83e-08,3.01617e-05,1.7093e-06 -31,T15001021300,Hawaii,HI,15,Hawaii,County,1,15001,21300,15001021300,5972,691942000.0,41505347.68197775,314.4847400233,44.8648895425,Very High,99.5614457169,98.773006135,40.94410456,Very High,99.0610264095,97.8527607362,3454904.678842767,2421751.9646799425,0.1357247505,1031508.1034963035,1644.6106665214,34.5881374634,Relatively Moderate,78.0811424507,75.4985754986,1.685,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,59825905.45671751,516.3442996487,3924216677.330079,3984042582.786796,3.187e-07,0.0,Very Low,1.3342353514,8e-10,0.0059722724,1.3402076238,0.363410278,Very Low,0.3981036443,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,532.0,29.555555555,0.0,0.0,5.41e-08,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0099990732,691942000.0,5972.0,45387200000.0,46079142000.0,0.0008505842,1.16917e-05,Very Low,2014339.2,0.11134262,846203.912,2860543.112,58.7838578297,Very High,72.635473364,Very High,1.0,0.03125,691942000.0,5972.0,45387200000.0,41505347.68197774,46120647347.68198,1.80224e-05,7.6e-08,0.0002275779,Very Low,389.7006534547,1.41889e-05,107.835574004,295.1781837538,792.7144112124,5.9484074704,Very Low,6.951026967,Relatively Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.0144927536,683648413.1210414,5903.058982076,44863248263.77738,41505347.68197774,45588402024.58041,2.55348e-05,3.276e-07,0.0002460797,Very Low,252.9970378585,2.803e-05,213.0279351202,148.0235268574,614.0484998361,3.4516273867,Very Low,5.1393369516,Very Low,0.0,0.01489,691942000.0,5972.0,45387200000.0,46079142000.0,5.8883e-06,1.361e-06,Very Low,60.6672443546,0.0001210243,919.784770288,980.4520146426,13.5448532024,Relatively Low,12.2509712728,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,108451273.17360821,1031.9646383704,7842931251.61482,190128.1686397818,7951572652.957066,0.0006245044,3.8327e-06,0.0003492485,Very Low,400725.748429268,0.0234017841,177853.5594508764,392.8783255313,578972.1862056758,37.6377194155,Very High,38.7362849875,Very High,1.0,0.03125,691942000.0,5972.0,45387200000.0,41505347.68197774,46120647347.68198,8.3601e-06,3.102e-07,0.0006212585,Very Low,180.7714666508,5.78998e-05,440.0382527704,805.7983849982,1426.6081044193,10.8627498557,Relatively Low,13.6026382415,Relatively Low,0.0,0.002337114,691942000.0,5972.0,45387200000.0,41505347.68197775,46120647347.68198,0.0001198082,7.99e-08,2.81667e-05,Very Low,193.7474988081,1.115e-06,8.4736995875,2.7322453807,204.9534437764,4.2005130404,Very Low,5.4502921677,Very Low,19.0,0.086773839,97112232.88584217,779.5012678,5924209635.280034,6021321868.165876,0.0006654598,3.8734e-06,Very Low,5607.6972377257,0.0002619991,1991.19306877,7598.8903064956,21.0298318769,Relatively Moderate,20.2847855136,Relatively Moderate,4.0,0.0207448,691941637.798755,5971.9970579512,45387177640.42914,46079119278.2279,7e-09,4.0043e-06,Very Low,0.1008764707,0.0004960885,3770.2727726148,3770.3736490856,17.9784656825,Relatively Low,19.6771737362,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,53.0,0.9643149741,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,3.9558e-06,3.96241e-05,0.0005806917 -32,T15003010308,Hawaii,HI,15,Honolulu,County,3,15003,10308,15003010308,3319,402502000.0,0.0,3.2978566421,14.6608364994,Relatively Low,45.1697163832,34.0490797546,14.8377632042,Relatively Low,38.7288799681,32.5153374233,164424.770555597,141142.5125061344,0.003063455,23282.2580494626,0.0,31.5753282267,Relatively Moderate,47.4995212431,49.5726495726,-0.199,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0,0.0,0.0,0.0,0.0,4.78451e-05,4.8e-09,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,133.0,7.388888888,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0031566579,402502000.0,3319.0,25224400000.0,25626902000.0,0.0167507621,0.0001397988,Very Low,140331.5,0.00302285,22973.66,163305.16,22.6347249226,Relatively Moderate,25.2203710271,Relatively Moderate,1.0,0.03125,402502000.0,3319.0,25224400000.0,0.0,25626902000.0,1.80224e-05,2.1e-08,0.0002275779,Very Low,226.6884976151,2.1788e-06,16.5585095325,0.0,243.2470071476,4.012154308,Very Low,4.2277709887,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,402502000.0,3319.0,25224400000.0,0.0,25626902000.0,2.55348e-05,3.276e-07,0.0002460797,Very Low,102.7779047338,1.08743e-05,82.6448466769,0.0,185.4227514107,2.3156736562,Very Low,3.1091817133,Very Low,0.0,0.01489,402502000.0,3319.0,25224400000.0,25626902000.0,5.8883e-06,2.64e-07,Very Low,35.2900780517,1.30469e-05,99.156107424,134.4461854757,6.984709526,Very Low,5.6967889747,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.78921e-05,5.85e-08,0.0005670888,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.03125,402502000.0,3319.0,25224400000.0,0.0,25626902000.0,2.273e-07,1.163e-07,2.19536e-05,Very Low,2.8584856358,1.20672e-05,91.7109783589,0.0,94.5694639947,4.3963121986,Very Low,4.964293599,Very Low,0.0,9.00893e-05,402502000.0,3319.0,25224400000.0,0.0,25626902000.0,0.0122279031,8.1531e-06,0.0314801129,Very Low,443.397540098,2.4378e-06,18.5276074704,0.0,461.9251475684,5.5073304115,Very Low,6.4439737658,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.001559314,3.65e-08,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.22e-08,,2.0149e-06 -33,T15001021504,Hawaii,HI,15,Hawaii,County,1,15001,21504,15001021504,3965,567799000.0,0.0,11.9815794264,39.0504271072,Very High,98.9400459176,96.0122699387,38.7614777296,Very High,98.7090831603,96.3190184049,2931317.856563528,2359248.5526345233,0.0752722768,572069.3039290046,0.0,31.8008091728,Relatively Moderate,50.0218860285,52.9914529915,-0.058,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.067971012,84051061.91404876,586.9373853938,4460724128.992736,4544775190.906784,6.689e-07,0.0,Very Low,3.8215319092,5e-10,0.0041417707,3.8256736799,0.5155163995,Very Low,0.5192212128,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,119.0,6.611111111,0.0,0.0,5.41e-08,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0099991023,567799000.0,3965.0,30134000000.0,30701798999.999996,0.0008505842,1.16917e-05,Very Low,2292113.7,0.07423251,564167.0760000001,2856280.776,58.7546464651,Very High,66.7488670584,Very High,1.0,0.03125,567799000.0,3965.0,30134000000.0,0.0,30701798999.999996,1.80224e-05,7.6e-08,0.0002275779,Very Low,319.7835097897,9.4205e-06,71.5954539393,0.0,391.3789637291,4.7014045019,Very Low,5.0511105804,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0144927536,567799000.0,3965.0,30134000000.0,0.0,30701798999.999996,2.55348e-05,3.276e-07,0.0002460797,Very Low,210.1247693141,1.88273e-05,143.0878067314,0.0,353.2125760456,2.8705717113,Very Low,3.9297288144,Very Low,0.0,0.01489,567799000.0,3965.0,30134000000.0,30701798999.999996,5.8883e-06,1.361e-06,Very Low,49.7827862412,8.03519e-05,610.67424886,660.4570351012,11.8735443385,Very Low,9.8738742457,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,17678751.916805524,25.0,190000000.0,0.0,207678751.9168055,0.0006245044,3.8327e-06,0.0003492485,Very Low,65322.7102444127,0.0005669231,4308.6156452932,0.0,69631.3258897058,18.5782850353,Relatively Moderate,17.5796928591,Relatively Moderate,1.0,0.03125,567799000.0,3965.0,30134000000.0,0.0,30701798999.999996,8.3601e-06,3.102e-07,0.0006212585,Very Low,148.338817405,3.84415e-05,292.1553369448,0.0,440.4941543498,7.3420656985,Very Low,8.4530342805,Very Low,0.0,0.0001412408,567799000.0,3965.0,30134000000.0,0.0,30701798999.999996,0.0027075331,1.8053e-06,0.0314801129,Very Low,217.1343505456,1.011e-06,7.6835859614,0.0,224.817936507,4.3320578719,Very Low,5.1679616475,Very Low,15.0,0.068505663,18932200.47665635,25.0024907062,190018929.36722437,208951129.84388068,0.0006654598,3.8734e-06,Very Low,863.0766648539,6.6344e-06,50.4216998251,913.498364679,10.3789877739,Relatively Low,9.2045087312,Relatively Low,3.0,0.0200386,567798879.682773,3964.9999981359,30133999985.83248,30701798865.51525,7e-09,4.0043e-06,Very Low,0.0799600523,0.0003181566,2417.9900096784,2418.0699697307,15.5041317216,Relatively Low,15.6015784286,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.803e-07,,0.0001167168 -34,T15001021604,Hawaii,HI,15,Hawaii,County,1,15001,21604,15001021604,7587,965922000.0,0.0,3.0342188606,39.5529446793,Very High,99.0376551781,96.3190184049,41.0047129501,Very High,99.0665255228,98.1595092025,3470269.991777817,2636463.224159166,0.1097114168,833806.7676186502,0.0,30.4479234964,Relatively Low,35.4239050146,37.3219373219,-0.904,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,29819708.47307848,234.2240141391,1780102507.4569924,1809922215.9300704,1.56136e-05,6e-10,Very Low,32.5779960448,9.6e-09,0.0727345758,32.6507306206,1.0535071298,Very Low,1.0159373566,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,49.0,2.722222222,0.0,0.0,5.41e-08,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0099990193,965922000.0,7587.0,57661200000.0,58627122000.0,0.0008505842,1.16917e-05,Very Low,2358086.4000000004,0.10171497,773033.772,3131120.172,60.5817522328,Very High,65.8966020412,Very High,1.0,0.03125,965922000.0,7587.0,57661200000.0,0.0,58627122000.0,1.80224e-05,7.6e-08,0.0002275779,Very Low,544.0057614457,1.8026e-05,136.9974045493,0.0,681.003165995,5.6547251774,Very Low,5.8168822061,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0144927536,965922000.0,7587.0,57661200000.0,0.0,58627122000.0,2.55348e-05,3.276e-07,0.0002460797,Very Low,357.4577225839,3.6026e-05,273.7975257683,0.0,631.2552483523,3.4835711241,Very Low,4.5660259096,Very Low,0.0,0.01489,965922000.0,7587.0,57661200000.0,58627122000.0,5.8883e-06,1.361e-06,Very Low,84.6889276868,0.0001537528,1168.520939748,1253.2098674348,14.6996430876,Relatively Low,11.7039784212,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,72095984.58842091,299.4473453306,2275799824.5124927,0.0,2347895809.1009145,0.0006245044,3.8327e-06,0.0003492485,Very Low,266393.5289786026,0.0067905448,51608.1406813159,0.0,318001.6696599184,30.8233993797,Relatively High,27.925805176,Relatively High,1.0,0.03125,965922000.0,7587.0,57661200000.0,0.0,58627122000.0,8.3601e-06,3.102e-07,0.0006212585,Very Low,252.3493827665,7.35575e-05,559.0372109459,0.0,811.3865937124,9.000103265,Very Low,9.9211351379,Very Low,0.0,3.96076e-05,965922000.0,7587.0,57661200000.0,0.0,58627122000.0,0.009655059,6.4377e-06,0.0314801129,Very Low,369.3822041738,1.9345e-06,14.7024884463,0.0,384.0846926201,5.1787657086,Very Low,5.9153319159,Very Low,14.0,0.063938618,243079736.71172065,1267.0762440467,9629779454.75488,9872859191.466602,0.0006654598,3.8734e-06,Very Low,10342.69716028,0.0003138052,2384.9195180287,12727.6166783087,24.9747665844,Relatively High,21.2063810389,Relatively High,3.0,0.0200386,965922000.0,7587.0,57661200000.0,58627122000.0,7e-09,4.0043e-06,Very Low,0.1360255831,0.0006087904,4626.8071152723,4626.9431408554,19.2481598108,Relatively Low,18.5451270921,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,9.324e-07,,0.0002774903 -35,T15001022000,Hawaii,HI,15,Hawaii,County,1,15001,22000,15001022000,2588,255562000.0,1087339.0101268515,464.1587560056,20.7476698713,Relatively Moderate,74.4689918751,77.3006134969,19.5680692358,Relatively Moderate,64.151280606,75.1533742331,377142.8388196314,279582.459563443,0.0128327356,97528.7908128289,31.5884433596,33.4687285113,Relatively Moderate,68.2447405138,66.3817663818,0.985,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.067971012,0.0,0.0,0.0,0.0,4.78451e-05,4.8e-09,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1631.0,90.611111111,0.0,0.0,5.41e-08,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0099812096,255562000.0,2588.0,19668800000.0,19924362000.0,0.0008505842,1.16917e-05,Very Low,279213.3,0.01253243,95246.468,374459.768,29.8476612003,Relatively High,35.6872456781,Relatively High,1.0,0.03125,255562000.0,2588.0,19668800000.0,1087339.0101268515,19925449339.010128,1.80224e-05,7.6e-08,0.0002275779,Very Low,143.9321191635,6.1488e-06,46.7311563165,7.7329494164,198.3962248964,3.7486330273,Very Low,4.2387053459,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0102889159,255562000.0,2588.0,19668800000.0,1087339.0101268515,19925449339.010128,2.55348e-05,3.276e-07,0.0002460797,Very Low,64.6707563155,8.4808e-06,64.4537491694,2.6757205341,131.8002260189,2.0666252581,Very Low,2.9775355575,Very Low,0.0,0.01489,255562000.0,2588.0,19668800000.0,19924362000.0,5.8883e-06,1.361e-06,Very Low,22.4068524555,5.24466e-05,398.593935952,421.0007884075,10.2186413768,Very Low,8.9433744405,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006245044,3.8327e-06,0.0003492485,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.03125,255562000.0,2588.0,19668800000.0,1087339.0101268515,19925449339.010128,8.3601e-06,3.102e-07,0.0006212585,Very Low,66.7661705175,2.50912e-05,190.6930673426,21.1099549152,278.5691927753,6.3020606503,Very Low,7.6362121452,Very Low,0.0,0.0031985263,255562000.0,2588.0,19668800000.0,1087339.0101268515,19925449339.010128,8.53899e-05,5.69e-08,2.0075e-05,Very Low,69.7995388104,4.713e-07,3.5818500352,0.0698184939,73.4512073395,2.9836662624,Very Low,3.7458582497,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0006654598,3.8734e-06,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,4.0,0.0203185325,254026689.5486555,2587.9972855693,19668779370.32698,19922806059.87564,7e-09,4.0043e-06,Very Low,0.0357989244,0.000207667,1578.2690540132,1578.3048529376,13.4489421521,Relatively Low,14.2432880593,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,53.0,1.2047797578,4169606.0993384407,0.0,0.0,0.0,4169606.0993384407,8.51e-08,1.057e-07,0.0,Very Low,1.5483272564,0.0,0.0,0.0,1.5483272564,1.8415500075,Very Low,1.1877446094,Very Low,November 2021,3.58e-08,2.90511e-05,1.4444e-06 -36,T15001022102,Hawaii,HI,15,Hawaii,County,1,15001,22102,15001022102,2041,231676000.0,20509139.474021494,318.206913497,28.297836669,Relatively High,93.013376593,89.5705521472,26.8749889144,Relatively High,88.8835425288,89.5705521472,977027.5682842254,707863.2039671029,0.0353379791,268568.6410903668,595.7232267555,33.2368509427,Relatively Moderate,65.9453396438,64.3874643875,0.84,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.057971012,0.0,0.0,0.0,0.0,4.78451e-05,4.8e-09,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,238.0,13.222222222,0.0,0.0,5.41e-08,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.009986985,231676000.0,2041.0,15511600000.0,15743276000.0,0.0008505842,1.16917e-05,Very Low,707499.2999999999,0.03509889,266751.564,974250.864,41.0517981635,Very High,48.7433714577,Very High,1.0,0.03125,231676000.0,2041.0,15511600000.0,20509139.4740215,15763785139.47402,1.80224e-05,7.6e-08,0.0002275779,Very Low,130.4795612794,4.8492e-06,36.8540533395,145.8571215132,313.1907361321,4.3648041515,Very Low,4.9012371629,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0117516502,231676000.0,2041.0,15511600000.0,20509139.4740215,15763785139.47402,2.55348e-05,3.276e-07,0.0002460797,Very Low,59.1840584381,6.6871e-06,50.8219741089,50.4688281351,160.4748606821,2.2067781933,Very Low,3.1574360485,Very Low,0.0,0.01489,231676000.0,2041.0,15511600000.0,15743276000.0,5.8883e-06,1.361e-06,Very Low,20.3126049627,4.13615e-05,314.347072364,334.6596773267,9.466003284,Very Low,8.2272664527,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006245044,3.8327e-06,0.0003492485,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.03125,231676000.0,2041.0,15511600000.0,20509139.4740215,15763785139.47402,8.3601e-06,3.102e-07,0.0006212585,Very Low,60.5258971247,1.97879e-05,150.3881570511,398.1711367054,609.0851908812,8.1795779715,Very Low,9.8425348042,Very Low,0.0,0.0020489727,231676000.0,2041.0,15511600000.0,20509139.474021494,15763785139.47402,0.0001241102,8.28e-08,2.91781e-05,Very Low,58.9148231709,3.461e-07,2.6301068292,1.2261404018,62.7710704018,2.8314166101,Very Low,3.5300428471,Very Low,5.0,0.022835221,2267345.0026022545,25.8386654596,196373857.49260196,198641202.4952042,0.0006654598,3.8734e-06,Very Low,34.4543953978,2.2854e-06,17.36932864,51.8237240378,3.9880624307,Relatively Low,3.696487659,Relatively Low,4.0,0.0204629272,231675410.17382696,2040.9936542881,15511551772.589231,15743227182.76306,7e-09,4.0043e-06,Very Low,0.0326267294,0.0001637719,1244.6663980342,1244.6990247637,12.4254638837,Relatively Low,13.0681887685,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,53.0,0.9612593147,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,3.58e-08,2.90467e-05,1.4219e-06 -37,T15001021509,Hawaii,HI,15,Hawaii,County,1,15001,21509,15001021509,5154,799747000.0,979196.950329917,10.1295724573,43.6441792428,Very High,99.4844581311,98.4662576687,39.6085028569,Very High,98.8685574451,96.6257668712,3127715.323796508,2488986.8228898174,0.0840386976,638694.1016106104,34.3992960803,34.7816352966,Relatively Moderate,79.5680245124,77.4928774929,1.806,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,34544698.002613455,222.6246219185,1691947126.5807436,1726491824.583357,1.09139e-05,5e-10,Very Low,26.3802562625,7.5e-09,0.0567194769,26.4369757394,0.981922252,Very Low,1.0816801748,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,28.0,1.555555555,0.0,0.0,5.41e-08,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0099990082,799747000.0,5154.0,39170400000.0,39970147000.0,0.0008505842,1.16917e-05,Very Low,2391862.2,0.08145482,619056.6319999999,3010918.832,59.7963856883,Very High,74.2999363956,Very High,1.0,0.03125,799747000.0,5154.0,39170400000.0,979196.9503299173,39971126196.950325,1.80224e-05,7.6e-08,0.0002275779,Very Low,450.4162610427,1.22454e-05,93.0650616906,6.9638635375,550.4451862709,5.2674426826,Very Low,6.1897185553,Relatively Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0144927536,799747000.0,5154.0,39170400000.0,979196.9503299173,39971126196.950325,2.55348e-05,3.276e-07,0.0002460797,Very Low,295.9615178693,2.44732e-05,185.9961048913,3.492180988,485.4498037485,3.1915706156,Very Low,4.7787076778,Very Low,0.0,0.01489,799747000.0,5154.0,39170400000.0,39970147000.0,5.8883e-06,1.361e-06,Very Low,70.1192392872,0.0001044473,793.799515416,863.9187547032,12.985434587,Relatively Low,11.8106970135,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,23918829.41099917,78.8266354636,599082429.5234789,2344.7633025502,623003603.6977806,0.0006245044,3.8327e-06,0.0003492485,Very Low,88379.6984285393,0.0017875457,13585.3469929743,4.8451877839,101969.8906092976,21.0973569676,Relatively Moderate,21.8346150102,Relatively High,1.0,0.03125,799747000.0,5154.0,39170400000.0,979196.9503299173,39971126196.950325,8.3601e-06,3.102e-07,0.0006212585,Very Low,208.9357751655,4.99691e-05,379.7650962455,19.0104496225,607.7113210335,8.1734233122,Very Low,10.2922465761,Very Low,0.0,0.0001332481,799747000.0,5154.0,39170400000.0,979196.950329917,39971126196.950325,0.0028562355,1.9044e-06,0.0006714957,Very Low,304.374019364,1.3079e-06,9.9399963725,0.0876141484,314.4016298849,4.8444617015,Very Low,6.3211251574,Very Low,11.0,0.050237486,221010989.94338924,956.0722553606,7266149140.740707,7487160130.684095,0.0006654598,3.8734e-06,Very Low,7388.6241355279,0.0001860428,1413.9249167873,8802.5490523153,22.0862454143,Relatively Moderate,21.4229529236,Relatively High,4.0,0.0202783018,799720520.0699263,5153.6368864899,39167640337.3234,39967360857.393326,7e-09,4.0043e-06,Very Low,0.1132567587,0.0004178388,3175.5752067561,3175.6884635148,16.9786748734,Relatively Low,18.686876158,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,3.842e-07,3.51301e-05,0.0001122053 -38,T15003010100,Hawaii,HI,15,Honolulu,County,3,15003,10100,15003010100,7881,844170000.0,6510793.174941882,30.2068351444,17.9023593434,Relatively Low,62.2967046564,62.5766871166,20.1899418692,Relatively Moderate,67.065810638,79.1411042945,414254.4118402396,357290.3980572544,0.0066572447,50595.0595105788,6368.9542724065,28.3354388883,Relatively Low,17.4965119142,21.0826210826,-2.225,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,108722387.39658688,1015.0101698384,7714077290.772013,7822799678.1686,2.1797e-05,1.6e-09,Very Low,165.8185422659,1.136e-07,0.8633732204,166.6819154863,1.8139946646,Very Low,1.6080612486,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0031021867,844170000.0,7881.0,59895600000.0,60739770000.0,0.0167507621,0.0001397988,Very Low,271131.7,0.00614137,46674.412,317806.112,28.2593824392,Relatively High,28.2566705,Relatively Moderate,1.0,0.03125,844170000.0,7881.0,59895600000.0,6510793.174941879,60746280793.17494,1.80224e-05,2.1e-08,0.0002275779,Very Low,475.4352252455,5.1735e-06,39.3183530055,46.3035298223,561.0571080733,5.3010774425,Very Low,5.0127961668,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0144927536,844170000.0,7881.0,59895600000.0,6510793.174941879,60746280793.17494,2.55348e-05,3.276e-07,0.0002460797,Very Low,312.4010900194,3.7422e-05,284.4073152208,23.219913149,620.0283183891,3.4627955954,Very Low,4.1723206395,Very Low,0.0,0.01489,844170000.0,7881.0,59895600000.0,60739770000.0,5.8883e-06,2.64e-07,Very Low,74.014104747,3.09799e-05,235.447207776,309.461312523,9.2221951746,Very Low,6.7499127907,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0,6.375,144063515.18652028,1085.2615309044,8247987634.8732605,1740883.8763676984,8393792033.9361515,6.78921e-05,5.85e-08,0.0005670888,Very Low,62352.4173422582,0.0004047596,3076.1731167997,6293.6278904878,71722.2183495456,18.7624106894,Relatively Moderate,15.626112207,Relatively Moderate,1.0,0.03125,844170000.0,7881.0,59895600000.0,6510793.174941879,60746280793.17494,2.273e-07,1.163e-07,2.19536e-05,Very Low,5.9951200718,2.86538e-05,217.7686714211,4.4667327311,228.230524224,5.8969773428,Very Low,5.9755854646,Very Low,0.0,0.0008089954,844170000.0,7881.0,59895600000.0,6510793.174941882,60746280793.17494,0.0010790568,7.195e-07,0.0002536843,Very Low,736.9198762201,4.5872e-06,34.8625006827,1.3362062164,773.1185831192,6.5388187819,Very Low,6.8658963899,Very Low,6.0,0.027402265,515711432.1667201,4182.4213727807,31786402433.133545,32302113865.30026,0.001559314,3.65e-08,Very Low,22035.6967564264,4.1851e-06,31.8069724526,22067.5037288791,30.003377423,Relatively High,23.4192184699,Relatively High,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,6.49e-08,0.0009782148,7.59598e-05 -39,T15003010202,Hawaii,HI,15,Honolulu,County,3,15003,10202,15003010202,7643,654554000.0,1559566.8001234492,12.8723696364,19.9405231828,Relatively Moderate,71.1832716974,73.6196319018,22.0650824666,Relatively Moderate,75.2223703928,83.4355828221,540727.6797428379,458981.6910243044,0.010404595,79074.9221952323,2671.0665233012,28.8791518078,Relatively Low,21.4100073865,26.2108262108,-1.885,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,149406920.22258168,1744.5727797266,13258753125.922472,13408160046.145056,4.63641e-05,5.7e-09,Very Low,484.6969048295,6.988e-07,5.3105325914,490.0074374209,2.5986077845,Very Low,2.3478038255,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0034127689,654554000.0,7643.0,58086800000.0,58741354000.0,0.0167507621,0.0001397988,Very Low,247080.5,0.00831546,63197.496,310277.996,28.0344631782,Relatively High,28.5696588646,Relatively High,1.0,0.03125,654554000.0,7643.0,58086800000.0,1559566.8001234487,58742913566.800125,1.80224e-05,2.1e-08,0.0002275779,Very Low,368.6437902619,5.0172e-06,38.1309696766,11.0913441572,417.8661040956,4.805156172,Very Low,4.6310331917,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0144927536,654554000.0,7643.0,58086800000.0,1559566.8001234487,58742913566.800125,2.55348e-05,3.276e-07,0.0002460797,Very Low,242.2300994782,3.62919e-05,275.818438045,5.5619960081,523.6105335314,3.2730989859,Very Low,4.0194298107,Very Low,0.0,0.01489,654554000.0,7643.0,58086800000.0,58741354000.0,5.8883e-06,2.64e-07,Very Low,57.3891850203,3.00443e-05,228.336887328,285.7260723483,8.9801201061,Very Low,6.6988536162,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0,6.375,435262433.14929074,5305.6996876866,40323317626.418304,733854.200665268,40759313913.76827,6.78921e-05,5.85e-08,0.0005670888,Very Low,188386.8018213588,0.0019788161,15039.0023789685,2653.0231726283,206078.8273729557,26.673613762,Relatively High,22.6411586896,Relatively High,1.0,0.03125,654554000.0,7643.0,58086800000.0,1559566.8001234487,58742913566.800125,2.273e-07,1.163e-07,2.19536e-05,Very Low,4.6485066083,2.77885e-05,211.1922288633,1.0699415394,216.910677011,5.7978262092,Very Low,5.9878468792,Very Low,0.0,0.0003346294,654554000.0,7643.0,58086800000.0,1559566.8001234492,58742913566.800125,0.0026087124,1.7394e-06,0.0006133035,Very Low,571.3942128474,4.4486e-06,33.8096805884,0.3200689681,605.523962404,6.0273680086,Very Low,6.4502559937,Very Low,6.0,0.027402265,509853307.4954975,6025.716242559,45795443443.4484,46305296750.943886,0.001559314,3.65e-08,Very Low,21785.3865039,6.0296e-06,45.8250791711,21831.2115830711,29.8959038814,Relatively High,23.783098318,Relatively High,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,2.726e-07,0.0017126977,0.0002904509 -40,T15003000114,Hawaii,HI,15,Honolulu,County,3,15003,114,15003000114,1594,256337000.0,0.0,0.4733660713,11.5700314407,Very Low,25.5750010311,13.4969325153,13.0024416326,Very Low,27.0776337316,15.3374233129,110646.243904659,96129.447132593,0.0019101048,14516.796772066,0.0,28.436185694,Relatively Low,18.1695072908,21.3675213675,-2.162,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.067971012,45060581.76163264,280.203666767,2129547867.4289021,2174608449.1905346,2.23874e-05,2.3e-09,Very Low,68.5682860676,4.36e-08,0.331668756,68.8999548236,1.3512825139,Very Low,1.2021374741,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,287.0,15.944444444,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0035448826,256337000.0,1594.0,12114400000.0,12370737000.0,0.0167507621,0.0001397988,Very Low,78176.6,0.00181499,13793.924,91970.524,18.6921018488,Relatively Moderate,18.7567615341,Relatively Moderate,1.0,0.03125,256337000.0,1594.0,12114400000.0,0.0,12370737000.0,1.80224e-05,2.1e-08,0.0002275779,Very Low,144.3685979527,1.0464e-06,7.9524749005,0.0,152.3210728532,3.4325361718,Very Low,3.2574099371,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,256337000.0,1594.0,12114400000.0,0.0,12370737000.0,2.55348e-05,3.276e-07,0.0002460797,Very Low,65.4550282129,5.2226e-06,39.691438868,0.0,105.1464670809,1.916701913,Very Low,2.3176443554,Very Low,0.0,0.01489,256337000.0,1594.0,12114400000.0,12370737000.0,5.8883e-06,2.64e-07,Very Low,22.4748019576,6.266e-06,47.621221824,70.0960237816,5.6216436913,Very Low,4.1292251723,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0,6.375,31810533.451878175,201.1940620543,1529074871.6130447,0.0,1560885405.0649233,6.78921e-05,5.85e-08,0.0005670888,Very Low,13767.98042935,7.50374e-05,570.2844405031,0.0,14338.264869853,10.9707486819,Relatively Low,9.1693798611,Relatively Low,1.0,0.03125,256337000.0,1594.0,12114400000.0,0.0,12370737000.0,2.273e-07,1.163e-07,2.19536e-05,Very Low,1.8204521528,5.7955e-06,44.0455858705,0.0,45.8660380233,3.4541030654,Very Low,3.5125918792,Very Low,0.0,2.0369e-05,256337000.0,1594.0,12114400000.0,0.0,12370737000.0,0.0540823568,3.60603e-05,0.0314801129,Very Low,282.3816906154,1.1708e-06,8.8981639975,0.0,291.279854613,4.7226679739,Very Low,4.97631598,Very Low,5.0,0.022835221,101097246.51534072,638.7094045184,4854191474.339953,4955288720.855295,0.001559314,3.65e-08,Very Low,3599.797846284,5.326e-07,4.0477773464,3603.8456236304,16.3998975605,Relatively Moderate,12.8464989548,Relatively Moderate,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,5.93e-08,,5.59929e-05 -41,T15003000301,Hawaii,HI,15,Honolulu,County,3,15003,301,15003000301,3307,448705000.0,0.0,3.2652746527,14.9566064901,Relatively Low,46.9610525303,36.1963190184,15.5029761891,Relatively Low,42.6456233932,39.8773006135,187545.7283336508,159140.8236666432,0.0037374875,28404.9046670075,0.0,30.8301216957,Relatively Low,39.3975870654,39.886039886,-0.665,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.045478259,25555924.556268148,188.3496785362,1431457556.8750038,1457013481.4312716,1.27441e-05,1.2e-09,Very Low,14.811687435,1.04e-08,0.0793339445,14.8910213795,0.810926215,Very Low,0.7821557032,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,287.0,15.944444444,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0032518991,448705000.0,3307.0,25133200000.0,25581905000.0,0.0167507621,0.0001397988,Very Low,137822.2,0.00355765,27038.14,164860.34,22.7063493531,Relatively Moderate,24.7030701239,Relatively Moderate,1.0,0.03125,448705000.0,3307.0,25133200000.0,0.0,25581905000.0,1.80224e-05,2.1e-08,0.0002275779,Very Low,252.7099550373,2.1709e-06,16.4986414655,0.0,269.2085965027,4.1500955944,Very Low,4.2699156153,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,448705000.0,3307.0,25133200000.0,0.0,25581905000.0,2.55348e-05,3.276e-07,0.0002460797,Very Low,114.5757281792,1.0835e-05,82.3460403617,0.0,196.9217685408,2.362585806,Very Low,3.0973030875,Very Low,0.0,0.01489,448705000.0,3307.0,25133200000.0,25581905000.0,5.8883e-06,2.64e-07,Very Low,39.3410081743,1.29997e-05,98.797603872,138.1386120463,7.0480755517,Very Low,5.6128016961,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0,6.375,43472034.28851925,372.9604933622,2834499749.552674,0.0,2877971783.8411927,6.78921e-05,5.85e-08,0.0005670888,Very Low,18815.2178652957,0.0001390995,1057.1562804341,0.0,19872.3741457298,12.2317140159,Relatively Low,11.0839590918,Relatively Low,1.0,0.03125,448705000.0,3307.0,25133200000.0,0.0,25581905000.0,2.273e-07,1.163e-07,2.19536e-05,Very Low,3.186609749,1.20236e-05,91.3793930199,0.0,94.5660027689,4.3962585632,Very Low,4.8470726091,Very Low,0.0,8.91993e-05,448705000.0,3307.0,25133200000.0,0.0,25581905000.0,0.0123499135,8.2345e-06,0.0314801129,Very Low,494.2949183598,2.429e-06,18.4606200375,0.0,512.7555383974,5.7023523714,Very Low,6.5147029765,Very Low,5.0,0.022835221,44498932.4144714,322.9626620121,2454516231.2922034,2499015163.706675,0.001559314,3.65e-08,Very Low,1584.485894413,2.693e-07,2.0467538724,1586.5326482854,12.4758098497,Relatively Moderate,10.5953740883,Relatively Moderate,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,5.43e-08,,4.39802e-05 -42,T15003000401,Hawaii,HI,15,Honolulu,County,3,15003,401,15003000401,2893,351046000.0,0.0,2.3849752201,14.1817633164,Relatively Low,42.3115522622,28.527607362,14.3094432099,Relatively Low,35.2974332889,26.3803680982,147478.9860232134,127735.041033475,0.0025978875,19743.9449897384,0.0,31.6712775654,Relatively Moderate,48.6047656827,51.2820512821,-0.139,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.002,6908402.002621479,56.9327295955,432688744.9258443,439597146.9284658,7.11351e-05,5e-09,Very Low,0.9828593662,6e-10,0.0043249758,0.987184342,0.3282005193,Very Low,0.3251932208,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,287.0,15.944444444,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0030079196,351046000.0,2893.0,21986800000.0,22337846000.0,0.0167507621,0.0001397988,Very Low,124594.1,0.00254722,19358.872,143952.972,21.7027847784,Relatively Moderate,24.2554548276,Relatively Moderate,1.0,0.03125,351046000.0,2893.0,21986800000.0,0.0,22337846000.0,1.80224e-05,2.1e-08,0.0002275779,Very Low,197.7085588006,1.8991e-06,14.4331931539,0.0,212.1417519545,3.8332797027,Very Low,4.0515578542,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,351046000.0,2893.0,21986800000.0,0.0,22337846000.0,2.55348e-05,3.276e-07,0.0002460797,Very Low,89.6387405409,9.4786e-06,72.0372224875,0.0,161.6759630284,2.2122701874,Very Low,2.9793712675,Very Low,0.0,0.01489,351046000.0,2893.0,21986800000.0,22337846000.0,5.8883e-06,2.64e-07,Very Low,30.77858182,1.13723e-05,86.429231328,117.207813148,6.6724353693,Very Low,5.4586326301,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0,6.375,5598483.872821221,40.869767693,310610234.4665992,0.0,316208718.3394204,6.78921e-05,5.85e-08,0.0005670888,Very Low,2423.0909711602,1.52428e-05,115.8453304451,0.0,2538.9363016053,6.16057622,Relatively Low,5.7348131748,Relatively Low,1.0,0.03125,351046000.0,2893.0,21986800000.0,0.0,22337846000.0,2.273e-07,1.163e-07,2.19536e-05,Very Low,2.4930558072,1.05184e-05,79.9396988232,0.0,82.4327546304,4.199569963,Very Low,4.756543386,Very Low,0.0,6.60707e-05,351046000.0,2893.0,21986800000.0,0.0,22337846000.0,0.0169083019,1.12739e-05,0.0314801129,Very Low,392.1684715683,2.1549e-06,16.3773613872,0.0,408.5458329555,5.2864507718,Very Low,6.204295772,Very Low,0.0,0.004587,570395.34451811,5.2058202244,39564233.70547603,40134629.04999414,0.001559314,3.65e-08,Very Low,4.0797944117,9e-10,0.0066271377,4.0864215494,1.7101470841,Very Low,1.4920087004,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.75e-08,,8.9358e-06 -43,T15003000500,Hawaii,HI,15,Honolulu,County,3,15003,500,15003000500,3807,768658000.0,0.0,1.1120328336,20.332352608,Relatively Moderate,72.8563769092,76.0736196319,21.7355738392,Relatively Moderate,73.8723380855,82.2085889571,516862.7907281188,477082.1470773286,0.0052342952,39780.6436507902,0.0,29.8930164873,Relatively Low,30.0289989878,33.6182336182,-1.251,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,360125556.27382886,1783.6254780858,13555553633.451992,13915679189.725824,3.0459e-05,3.5e-09,Very Low,767.5160208618,4.43e-07,3.3664820289,770.8825028907,3.022288421,Very Low,2.8264563707,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,287.0,15.944444444,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.002971023,768658000.0,3807.0,28933200000.0,29701858000.0,0.0167507621,0.0001397988,Very Low,330555.3,0.0046237,35140.12,365695.42,29.6129558301,Relatively High,31.2377595174,Relatively High,1.0,0.03125,768658000.0,3807.0,28933200000.0,0.0,29701858000.0,1.80224e-05,2.1e-08,0.0002275779,Very Low,432.9069848209,2.4991e-06,18.9931442583,0.0,451.9001290792,4.9322219806,Very Low,4.920376196,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,768658000.0,3807.0,28933200000.0,0.0,29701858000.0,2.55348e-05,3.276e-07,0.0002460797,Very Low,196.274946949,1.24732e-05,94.7963034947,0.0,291.0712504437,2.6912628627,Very Low,3.4209500746,Very Low,0.0,0.01489,768658000.0,3807.0,28933200000.0,29701858000.0,5.8883e-06,2.64e-07,Very Low,67.3934559705,1.49652e-05,113.735251872,181.1287078425,7.7142661392,Very Low,5.9565976821,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0,6.375,310362683.7705971,1505.3407549263,11440589737.439634,0.0,11750952421.210232,6.78921e-05,5.85e-08,0.0005670888,Very Low,134328.692180477,0.0005614326,4266.8874092204,0.0,138595.5795896974,23.369738873,Relatively High,20.5331678871,Relatively High,1.0,0.03125,768658000.0,3807.0,28933200000.0,0.0,29701858000.0,2.273e-07,1.163e-07,2.19536e-05,Very Low,5.4588495259,1.38415e-05,105.1954488188,0.0,110.6542983447,4.6326303292,Very Low,4.9524311546,Very Low,0.0,5.06726e-05,768658000.0,3807.0,28933200000.0,0.0,29701858000.0,0.0267087035,1.78084e-05,0.0314801129,Very Low,1040.3016804499,3.4354e-06,26.1093390095,0.0,1066.4110194594,7.2787835569,Very Low,8.063134448,Very Low,3.0,0.013701132,453479536.53912383,3008.6510313156,22865747837.998928,23319227374.538048,0.001559314,3.65e-08,Very Low,9688.3029582735,1.5053e-06,11.4402720877,9699.7432303613,22.8124793275,Relatively Moderate,18.7851444478,Relatively Moderate,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.6e-07,,0.0001780227 -44,T15003001100,Hawaii,HI,15,Honolulu,County,3,15003,1100,15003001100,3862,219684000.0,0.0,0.3193229564,14.8534461275,Relatively Low,46.3245301695,35.5828220859,12.9865448527,Very Low,26.9786496927,14.4171779141,110240.9117095661,78625.4882661912,0.0041599241,31615.4234433749,0.0,36.5503014408,Relatively High,89.7682816732,89.7435897436,2.912,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0,0.0,0.0,0.0,0.0,4.78451e-05,4.8e-09,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,287.0,15.944444444,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.002980735,219684000.0,3862.0,29351200000.0,29570883999.999996,0.0167507621,0.0001397988,Very Low,78161.0,0.00411242,31254.392,109415.392,19.8062105715,Relatively Moderate,25.5458719969,Relatively Moderate,1.0,0.03125,219684000.0,3862.0,29351200000.0,0.0,29570883999.999996,1.80224e-05,2.1e-08,0.0002275779,Very Low,123.72568562,2.5352e-06,19.2675395659,0.0,142.9932251859,3.3609878804,Very Low,4.099622446,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,219684000.0,3862.0,29351200000.0,0.0,29570883999.999996,2.55348e-05,3.276e-07,0.0002460797,Very Low,56.0957739925,1.26534e-05,96.1658324393,0.0,152.2616064318,2.1684686631,Very Low,3.3702722886,Very Low,0.0,0.01489,219684000.0,3862.0,29351200000.0,29570883999.999996,5.8883e-06,2.64e-07,Very Low,19.2611850542,1.51814e-05,115.378393152,134.6395782062,6.9880569493,Very Low,6.5975289928,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.78921e-05,5.85e-08,0.0005670888,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.03125,219684000.0,3862.0,29351200000.0,0.0,29570883999.999996,2.273e-07,1.163e-07,2.19536e-05,Very Low,1.5601501569,1.40415e-05,106.7152149592,0.0,108.2753651161,4.5991908913,Very Low,6.0116468147,Very Low,0.0,9.5105e-06,219684000.0,3862.0,29351200000.0,0.0,29570883999.999996,0.1262836527,8.42016e-05,0.0314801129,Very Low,263.8454713676,3.0927e-06,23.5044632585,0.0,287.3499346261,4.7013324703,Very Low,6.3676040782,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.001559314,3.65e-08,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.23e-08,,2.1143e-06 -45,T15003001400,Hawaii,HI,15,Honolulu,County,3,15003,1400,15003001400,2550,280795000.0,0.0,0.1948571852,13.0781432235,Relatively Low,35.3950425494,23.0061349693,12.3585076356,Very Low,23.1897606511,12.8834355828,95007.9675359395,78209.0302122659,0.0022103865,16798.9373236737,0.0,33.8173444421,Relatively Moderate,71.538587804,69.8005698006,1.203,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0,0.0,0.0,0.0,0.0,4.78451e-05,4.8e-09,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,287.0,15.944444444,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.002940859,280795000.0,2550.0,19380000000.0,19660795000.0,0.0167507621,0.0001397988,Very Low,77555.8,0.00217866,16557.816,94113.616,18.8361759451,Relatively Moderate,22.478152645,Relatively Moderate,1.0,0.03125,280795000.0,2550.0,19380000000.0,0.0,19660795000.0,1.80224e-05,2.1e-08,0.0002275779,Very Low,158.1433053447,1.6739e-06,12.7219642386,0.0,170.8652695832,3.5665341864,Very Low,4.0250552399,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,280795000.0,2550.0,19380000000.0,0.0,19660795000.0,2.55348e-05,3.276e-07,0.0002460797,Very Low,71.7003189046,8.3548e-06,63.4963419783,0.0,135.1966608829,2.0842269303,Very Low,2.9971286146,Very Low,0.0,0.01489,280795000.0,2550.0,19380000000.0,19660795000.0,5.8883e-06,2.64e-07,Very Low,24.6192005667,1.00239e-05,76.1820048,100.8012053667,6.3453282955,Very Low,5.5427782779,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.78921e-05,5.85e-08,0.0005670888,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.03125,280795000.0,2550.0,19380000000.0,0.0,19660795000.0,2.273e-07,1.163e-07,2.19536e-05,Very Low,1.9941477908,9.2713e-06,70.4618845481,0.0,72.4560323389,4.022811961,Very Low,4.8650834374,Very Low,0.0,1.05528e-05,280795000.0,2550.0,19380000000.0,0.0,19660795000.0,0.1339019955,8.92813e-05,0.0314801129,Very Low,396.7732396591,2.4025e-06,18.2591281087,0.0,415.0323677677,5.3142818813,Very Low,6.6596369426,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.001559314,3.65e-08,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.24e-08,,2.3264e-06 -46,T15003001901,Hawaii,HI,15,Honolulu,County,3,15003,1901,15003001901,837,1117472000.0,0.0,0.328277434,30.7033480191,Relatively High,95.5127235733,89.8773006135,27.1286782082,Relatively High,89.33996893,89.8773006135,1004957.8320852902,995747.3951398876,0.0012118996,9210.4369454027,0.0,36.1665040858,Relatively High,88.0789538478,88.3190883191,2.672,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,905020382.2971718,677.87117707,5151820945.731768,6056841328.028939,3.66518e-05,4.6e-09,Very Low,2320.9822630745,2.186e-07,1.6615278346,2322.6437909091,4.3651655035,Relatively Low,4.9390552318,Relatively Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,154.0,8.555555555,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0065640198,1117472000.0,837.0,6361200000.0,7478672000.0,0.0167507621,0.0001397988,Very Low,577071.7,0.00094011,7144.836,584216.536,34.6178320726,Relatively High,44.1809219918,Very High,1.0,0.03125,1117472000.0,837.0,6361200000.0,0.0,7478672000.0,1.80224e-05,2.1e-08,0.0002275779,Very Low,629.3584846957,5.494e-07,4.1757976736,0.0,633.5342823693,5.5201621225,Very Low,6.6626088408,Relatively Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,1117472000.0,837.0,6361200000.0,0.0,7478672000.0,2.55348e-05,3.276e-07,0.0002460797,Very Low,285.3437517296,2.7423e-06,20.8417404846,0.0,306.1854922143,2.7370614693,Very Low,4.2093201478,Very Low,0.0,0.01489,1117472000.0,837.0,6361200000.0,7478672000.0,5.8883e-06,2.64e-07,Very Low,97.9763432245,3.2902e-06,25.005622752,122.9819659765,6.7802545464,Very Low,6.3341222119,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0,6.375,870614950.6549523,698.4187222552,5307982289.139232,0.0,6178597239.794184,6.78921e-05,5.85e-08,0.0005670888,Very Low,376812.5932326716,0.0002604826,1979.6674225433,0.0,378792.260655215,32.6741600789,Relatively High,34.7330818955,Very High,1.0,0.03125,1117472000.0,837.0,6361200000.0,0.0,7478672000.0,2.273e-07,1.163e-07,2.19536e-05,Very Low,7.9360541324,3.0432e-06,23.1280773987,0.0,31.0641315311,3.033364655,Very Low,3.9233062707,Very Low,0.0,2.35593e-05,1117472000.0,837.0,6361200000.0,0.0,7478672000.0,0.0599777062,3.99911e-05,0.0314801129,Relatively Low,1579.0273532943,7.886e-07,5.9932902851,0.0,1585.0206435794,8.3067072474,Very Low,11.1332617875,Very Low,5.0,0.022835221,1037497917.9564592,809.0763770808,6148980465.813883,7186478383.770342,0.001559314,3.65e-08,Relatively Low,36942.4776570648,6.747e-07,5.1274664307,36947.6051234956,35.627157479,Relatively High,35.4944142526,Relatively High,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,3.239e-07,,0.0003416043 -47,T15003001904,Hawaii,HI,15,Honolulu,County,3,15003,1904,15003001904,3912,544584000.0,0.0,0.0445511515,20.52323289,Relatively Moderate,73.6152545402,76.3803680982,21.1782783212,Relatively Moderate,71.5035950453,80.981595092,478116.6755402327,435047.8831005651,0.0056669464,43068.7924396676,0.0,30.9676490813,Relatively Low,40.8133395344,42.1652421652,-0.579,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.057971012,538132301.3557038,3865.654449825,29378973818.67021,29917106120.025917,4.64411e-05,4.7e-09,Very Low,1448.779777261,1.0507e-06,7.9856652236,1456.7654424846,3.736540736,Relatively Low,3.6200502203,Relatively Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,154.0,8.555555555,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.007598724,544584000.0,3912.0,29731200000.0,30275784000.0,0.0167507621,0.0001397988,Very Low,200288.1,0.00420672,31971.072,232259.172,25.4545960597,Relatively High,27.8165217199,Relatively Moderate,1.0,0.03125,544584000.0,3912.0,29731200000.0,0.0,30275784000.0,1.80224e-05,2.1e-08,0.0002275779,Very Low,306.708858056,2.568e-06,19.5169898436,0.0,326.2258478996,4.4245378574,Very Low,4.5725883466,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,544584000.0,3912.0,29731200000.0,0.0,30275784000.0,2.55348e-05,3.276e-07,0.0002460797,Very Low,139.0581971557,1.28172e-05,97.4108587526,0.0,236.4690559083,2.5111989463,Very Low,3.3068175468,Very Low,0.0,0.01489,544584000.0,3912.0,29731200000.0,30275784000.0,5.8883e-06,2.64e-07,Very Low,47.7473698657,1.53779e-05,116.872157952,164.6195278177,7.4723861251,Very Low,5.9772504184,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0,6.375,527170866.7436609,3780.1623928368,28729234185.559956,0.0,29256405052.30361,6.78921e-05,5.85e-08,0.0005670888,Very Low,228165.8742765172,0.001409851,10714.8678902232,0.0,238880.7421667404,28.0197622945,Relatively High,25.5038085954,Relatively High,1.0,0.03125,544584000.0,3912.0,29731200000.0,0.0,30275784000.0,2.273e-07,1.163e-07,2.19536e-05,Very Low,3.8675225004,1.42233e-05,108.0968205303,0.0,111.9643430307,4.6508406739,Very Low,5.1506348041,Very Low,0.0,1.05528e-05,544584000.0,3912.0,29731200000.0,0.0,30275784000.0,0.1339019955,8.92813e-05,0.0314801129,Very Low,769.5164014548,3.6857e-06,28.0116506514,0.0,797.5280521062,6.6069231193,Very Low,7.5819369394,Very Low,1.0,0.004567044,544584000.0,3912.0,29731200000.0,30275784000.0,0.001559314,3.65e-08,Very Low,3878.2306977544,6.524e-07,4.9584064909,3883.1891042453,16.8131307015,Relatively Moderate,14.342641233,Relatively Moderate,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,3.731e-07,,0.0004239595 -48,T15003002202,Hawaii,HI,15,Honolulu,County,3,15003,2202,15003002202,3400,291464000.0,0.0,0.0920274117,17.0347962319,Relatively Low,58.036266652,54.2944785276,16.8452811998,Relatively Low,50.3182611804,55.8282208589,240600.6144384058,206514.8289788662,0.0044849718,34085.7854595395,0.0,32.3157372907,Relatively Moderate,55.9680463984,58.4045584046,0.264,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.057971012,172542690.38601866,2012.7533668393,15296925587.97904,15469468278.365055,7.00448e-05,7.1e-09,Very Low,700.6213058816,8.33e-07,6.33107466,706.9523805416,2.9363189746,Very Low,2.9686154104,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,154.0,8.555555555,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0039757619,291464000.0,3400.0,25840000000.0,26131464000.0,0.0167507621,0.0001397988,Very Low,103980.9,0.00346109,26304.284,130285.184,20.9929559904,Relatively Moderate,23.9395532155,Relatively Moderate,1.0,0.03125,291464000.0,3400.0,25840000000.0,0.0,26131464000.0,1.80224e-05,2.1e-08,0.0002275779,Very Low,164.1520694777,2.2319e-06,16.9626189847,0.0,181.1146884624,3.6364672743,Very Low,3.9217481945,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,291464000.0,3400.0,25840000000.0,0.0,26131464000.0,2.55348e-05,3.276e-07,0.0002460797,Very Low,74.4246220524,1.11397e-05,84.6617893044,0.0,159.0864113568,2.2003953055,Very Low,3.0236787973,Very Low,0.0,0.01489,291464000.0,3400.0,25840000000.0,26131464000.0,5.8883e-06,2.64e-07,Very Low,25.5546240994,1.33653e-05,101.5760064,127.1306304994,6.8556544867,Very Low,5.7226462356,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0,6.375,219965392.44813856,2625.4678449644,19953555621.729477,0.0,20173521014.17761,6.78921e-05,5.85e-08,0.0005670888,Very Low,95203.6602259949,0.0009791956,7441.8869311356,0.0,102645.5471571305,21.1438517348,Relatively Moderate,20.0830898102,Relatively High,1.0,0.03125,291464000.0,3400.0,25840000000.0,0.0,26131464000.0,2.273e-07,1.163e-07,2.19536e-05,Very Low,2.0699168137,1.23617e-05,93.9491793975,0.0,96.0190962112,4.4186617199,Very Low,5.1065299405,Very Low,0.0,1.05528e-05,291464000.0,3400.0,25840000000.0,0.0,26131464000.0,0.1339019955,8.92813e-05,0.0314801129,Very Low,411.8489129934,3.2034e-06,24.3455041449,0.0,436.1944171383,5.4031119357,Very Low,6.470278964,Very Low,3.0,0.013701132,278575886.5716552,3100.1926962857,23561464491.771404,23840040378.343056,0.001559314,3.65e-08,Very Low,5951.5973015532,1.5511e-06,11.7883555124,5963.3856570656,19.3976911898,Relatively Moderate,17.2677765053,Relatively Moderate,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,3.007e-07,,0.0003313697 -49,T15003002600,Hawaii,HI,15,Honolulu,County,3,15003,2600,15003002600,4249,791449000.0,0.0,0.2563620754,25.6530656656,Relatively High,88.7048213476,87.1165644172,21.1208678596,Relatively Moderate,71.2740070664,80.6748466258,474238.944278784,431102.878061862,0.0056757982,43136.0662169221,0.0,38.8131066797,Relatively High,95.9291986978,94.5868945869,4.327,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.043478259,206319525.33443108,1107.6540157938,8418170520.03298,8624490045.367409,1.35471e-05,1.7e-09,Very Low,121.522717025,8.2e-08,0.6229487767,122.1456658017,1.6354321518,Very Low,1.9858551825,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,154.0,8.555555555,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0035502375,791449000.0,4249.0,32292400000.0,33083849000.000004,0.0167507621,0.0001397988,Very Low,427356.7,0.0056226,42731.76,470088.46,32.1984610759,Relatively High,44.1003359351,Very High,1.0,0.03125,791449000.0,4249.0,32292400000.0,0.0,33083849000.000004,1.80224e-05,2.1e-08,0.0002275779,Very Low,445.7428404058,2.7892e-06,21.1982847254,0.0,466.9411251311,4.9863470369,Very Low,6.458725985,Relatively Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,791449000.0,4249.0,32292400000.0,0.0,33083849000.000004,2.55348e-05,3.276e-07,0.0002460797,Very Low,202.0945732534,1.39214e-05,105.8023361042,0.0,307.8969093577,2.7421515792,Very Low,4.5257518719,Very Low,0.0,0.01489,791449000.0,4249.0,32292400000.0,33083849000.000004,5.8883e-06,2.64e-07,Very Low,69.3916973926,1.67026e-05,126.940132704,196.3318300966,7.9243276913,Very Low,7.9446494857,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.78921e-05,5.85e-08,0.0005670888,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.03125,791449000.0,4249.0,32292400000.0,0.0,33083849000.000004,2.273e-07,1.163e-07,2.19536e-05,Very Low,5.6207064759,1.54485e-05,117.4088421353,0.0,123.0295486112,4.7992645854,Very Low,6.6615326154,Very Low,0.0,1.05528e-05,791449000.0,4249.0,32292400000.0,0.0,33083849000.000004,0.1339019955,8.92813e-05,0.0314801129,Relatively Low,1118.3453542795,4.0033e-06,30.4247197387,0.0,1148.7700740183,7.461537084,Very Low,10.7322937623,Very Low,0.0,0.004587,249345255.4642155,1499.5410201852,11396511753.407207,11645857008.871424,0.001559314,3.65e-08,Very Low,1783.4601730298,2.512e-07,1.9089527377,1785.3691257675,12.9766248366,Relatively Moderate,13.8743441858,Relatively Moderate,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.25e-08,,2.4799e-06 -50,T15003002800,Hawaii,HI,15,Honolulu,County,3,15003,2800,15003002800,3678,390551000.0,0.0,0.8899299747,13.276247683,Relatively Low,36.7437000784,24.5398773006,14.0640371335,Relatively Low,33.7961753667,23.9263803681,140020.6050686634,112962.0459764169,0.0035603367,27058.5590922465,0.0,30.1664721027,Relatively Low,32.6375400104,35.8974358974,-1.08,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0,0.0,0.0,0.0,0.0,4.78451e-05,4.8e-09,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,287.0,15.944444444,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0029738504,390551000.0,3678.0,27952800000.0,28343351000.0,0.0167507621,0.0001397988,Very Low,110889.3,0.00350644,26648.944,137538.244,21.3755062984,Relatively Moderate,22.7546054907,Relatively Moderate,1.0,0.03125,390551000.0,3678.0,27952800000.0,0.0,28343351000.0,1.80224e-05,2.1e-08,0.0002275779,Very Low,219.9577130893,2.4144e-06,18.3495625376,0.0,238.3072756269,3.9848094602,Very Low,4.0116038184,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,390551000.0,3678.0,27952800000.0,0.0,28343351000.0,2.55348e-05,3.276e-07,0.0002460797,Very Low,99.7262460104,1.20505e-05,91.5841356063,0.0,191.3103816168,2.3399281779,Very Low,3.0015662033,Very Low,0.0,0.01489,390551000.0,3678.0,27952800000.0,28343351000.0,5.8883e-06,2.64e-07,Very Low,34.242252891,1.44581e-05,109.881338688,144.123591579,7.1484279941,Very Low,5.5701767866,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0,6.375,2748002.747491579,22.2384646731,169012331.51587087,0.0,171760334.26336247,6.78921e-05,5.85e-08,0.0005670888,Very Low,1189.3685500276,8.2941e-06,63.0349139248,0.0,1252.4034639523,4.8676441341,Very Low,4.315942999,Very Low,1.0,0.03125,390551000.0,3678.0,27952800000.0,0.0,28343351000.0,2.273e-07,1.163e-07,2.19536e-05,Very Low,2.7736121151,1.33725e-05,101.6309064222,0.0,104.4045185373,4.5437174273,Very Low,4.9018147862,Very Low,0.0,2.97603e-05,390551000.0,3678.0,27952800000.0,0.0,28343351000.0,0.045313657,3.02136e-05,0.0314801129,Very Low,526.6776022834,3.3071e-06,25.1342350676,0.0,551.811837351,5.8436061145,Very Low,6.5323723162,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.001559314,3.65e-08,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.47e-08,,5.3072e-06 -51,T15003003000,Hawaii,HI,15,Honolulu,County,3,15003,3000,15003003000,4321,523641000.0,0.0,0.5751776938,14.3058905963,Relatively Low,43.0649307799,31.2883435583,15.9122177661,Relatively Low,45.0638584528,44.1717791411,202793.5219945092,170878.3972204398,0.0041993585,31915.1247740693,0.0,28.7304303328,Relatively Low,20.3526386343,23.6467236467,-1.978,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.002,251966.9345973358,2.0791899878,15801843.90718578,16053810.841783118,6.15999e-05,6.2e-09,Very Low,0.0310422895,0.0,0.0001956324,0.0312379219,0.1038087327,Very Low,0.0933066629,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,154.0,8.555555555,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0029729141,523641000.0,4321.0,32839600000.0,33363241000.000004,0.0167507621,0.0001397988,Very Low,166244.1,0.00412461,31347.036,197591.136,24.1192836215,Relatively Moderate,24.453155646,Relatively Moderate,1.0,0.03125,523641000.0,4321.0,32839600000.0,0.0,33363241000.000004,1.80224e-05,2.1e-08,0.0002275779,Very Low,294.9137931729,2.8365e-06,21.5574931274,0.0,316.4712863003,4.3799911192,Very Low,4.1995360505,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,523641000.0,4321.0,32839600000.0,0.0,33363241000.000004,2.55348e-05,3.276e-07,0.0002460797,Very Low,133.7104531473,1.41573e-05,107.5951739954,0.0,241.3056271427,2.5282042934,Very Low,3.0886960415,Very Low,0.0,0.01489,523641000.0,4321.0,32839600000.0,33363241000.000004,5.8883e-06,2.64e-07,Very Low,45.9111551273,1.69857e-05,129.091154016,175.0023091433,7.6262923178,Very Low,5.6596488655,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0,6.375,7892777.526380499,56.2731231073,427675735.6151205,0.0,435568513.14150095,6.78921e-05,5.85e-08,0.0005670888,Very Low,3416.088783321,2.09876e-05,159.5061315374,0.0,3575.5949148584,6.9053681457,Relatively Low,5.831245485,Relatively Low,1.0,0.03125,523641000.0,4321.0,32839600000.0,0.0,33363241000.000004,2.273e-07,1.163e-07,2.19536e-05,Very Low,3.7187896627,1.57103e-05,119.3983541696,0.0,123.1171438323,4.800403317,Very Low,4.9322027091,Very Low,0.0,2.01545e-05,523641000.0,4321.0,32839600000.0,0.0,33363241000.000004,0.0701101201,4.6747e-05,0.0314801129,Very Low,739.9232037191,4.0711e-06,30.9402715912,0.0,770.8634753103,6.5324549018,Very Low,6.9548406651,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.001559314,3.65e-08,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.73e-08,,8.8501e-06 -52,T15003003101,Hawaii,HI,15,Honolulu,County,3,15003,3101,15003003101,3687,492314000.0,0.0,2.078905601,16.6138274719,Relatively Low,55.9534775018,51.8404907975,16.7794100011,Relatively Low,49.9511953697,55.2147239264,237789.1283950368,204090.5852518204,0.0044340188,33698.5431432164,0.0,31.6408936082,Relatively Moderate,48.2340710749,50.1424501425,-0.158,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.002,4891339.637564942,36.6318431808,278402008.173919,283293347.81148404,9.81502e-05,1.02e-08,Very Low,0.9601719971,7e-10,0.0056849324,0.9658569295,0.3258197788,Very Low,0.3225245827,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,287.0,15.944444444,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0029680742,492314000.0,3687.0,28021200000.0,28513514000.0,0.0167507621,0.0001397988,Very Low,190812.3,0.00429479,32640.404,223452.704,25.1287251725,Relatively High,28.0574096887,Relatively Moderate,1.0,0.03125,492314000.0,3687.0,28021200000.0,0.0,28513514000.0,1.80224e-05,2.1e-08,0.0002275779,Very Low,277.2704757248,2.4203e-06,18.3944635877,0.0,295.6649393125,4.2818199548,Very Low,4.5212976106,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,492314000.0,3687.0,28021200000.0,0.0,28513514000.0,2.55348e-05,3.276e-07,0.0002460797,Very Low,125.7111800466,1.208e-05,91.8082403427,0.0,217.5194203893,2.4422438638,Very Low,3.2859325425,Very Low,0.0,0.01489,492314000.0,3687.0,28021200000.0,28513514000.0,5.8883e-06,2.64e-07,Very Low,43.1645047377,1.44934e-05,110.150216352,153.3147210897,7.2972653803,Very Low,5.9640707912,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0,6.375,28382955.02045255,252.3501170301,1917860889.4284637,0.0,1946243844.448916,6.78921e-05,5.85e-08,0.0005670888,Very Low,12284.4833721466,9.41166e-05,715.286245687,0.0,12999.7696178336,10.6181604917,Relatively Low,9.8748471608,Relatively Low,1.0,0.03125,492314000.0,3687.0,28021200000.0,0.0,28513514000.0,2.273e-07,1.163e-07,2.19536e-05,Very Low,3.496311813,1.34052e-05,101.8795954253,0.0,105.3759072384,4.557765662,Very Low,5.1572928361,Very Low,0.0,5.68811e-05,492314000.0,3687.0,28021200000.0,0.0,28513514000.0,0.0193976418,1.29337e-05,0.0314801129,Very Low,543.1992353547,2.7125e-06,20.6146968892,0.0,563.8139322439,5.885669415,Very Low,6.9010131938,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.001559314,3.65e-08,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,3.78e-08,,2.69712e-05 -53,T15003003407,Hawaii,HI,15,Honolulu,County,3,15003,3407,15003003407,913,159228000.0,0.0,0.0477917056,18.3386697912,Relatively Moderate,64.3052557775,65.3374233129,12.1430194003,Very Low,21.853476127,12.2699386503,90124.32051478,80912.8216251666,0.0012120393,9211.4988896134,0.0,48.2609182352,Very High,99.6593986814,100.0,10.235,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0,0.0,0.0,0.0,0.0,4.78451e-05,4.8e-09,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,154.0,8.555555555,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.004633313,159228000.0,913.0,6938800000.0,7098028000.0,0.0167507621,0.0001397988,Very Low,80542.4,0.00120068,9125.168,89667.568,18.5347634922,Relatively Moderate,31.56537885,Relatively High,1.0,0.03125,159228000.0,913.0,6938800000.0,0.0,7098028000.0,1.80224e-05,2.1e-08,0.0002275779,Very Low,89.6769608555,5.993e-07,4.554962098,0.0,94.2319229535,2.9247885716,Very Low,4.7105976451,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,159228000.0,913.0,6938800000.0,0.0,7098028000.0,2.55348e-05,3.276e-07,0.0002460797,Very Low,40.6584817341,2.9913e-06,22.7341804809,0.0,63.392662215,1.6192081391,Very Low,3.3229142555,Very Low,0.0,0.01489,159228000.0,913.0,6938800000.0,7098028000.0,5.8883e-06,2.64e-07,Very Low,13.9605978306,3.589e-06,27.276145248,41.2367430786,4.7104273192,Very Low,5.8720506988,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.78921e-05,5.85e-08,0.0005670888,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.03125,159228000.0,913.0,6938800000.0,0.0,7098028000.0,2.273e-07,1.163e-07,2.19536e-05,Very Low,1.1308041968,3.3195e-06,25.2281178794,0.0,26.3589220762,2.8717553046,Very Low,4.9563740207,Very Low,0.0,1.05528e-05,159228000.0,913.0,6938800000.0,0.0,7098028000.0,0.1339019955,8.92813e-05,0.0314801129,Relatively Low,224.9947805496,8.602e-07,6.5374839071,0.0,231.5322644568,4.3747620601,Very Low,7.8239142645,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.001559314,3.65e-08,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.24e-08,,2.3264e-06 -54,T15003003501,Hawaii,HI,15,Honolulu,County,3,15003,3501,15003003501,2282,361961000.0,0.0,0.1149769285,19.8211238437,Relatively Moderate,70.6952253949,72.6993865031,15.9378488267,Relatively Low,45.2315814075,44.7852760736,203775.0677746005,184706.9433557533,0.0025089637,19068.1244188472,0.0,39.7422161099,Relatively High,97.1001012229,95.4415954416,4.908,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0,0.0,0.0,0.0,0.0,4.78451e-05,4.8e-09,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,154.0,8.555555555,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.004633313,361961000.0,2282.0,17343200000.0,17705161000.0,0.0167507621,0.0001397988,Very Low,183464.6,0.00248054,18852.104,202316.704,24.3100488847,Relatively Moderate,34.0930840747,Relatively High,1.0,0.03125,361961000.0,2282.0,17343200000.0,0.0,17705161000.0,1.80224e-05,2.1e-08,0.0002275779,Very Low,203.8558697479,1.498e-06,11.3849107421,0.0,215.24078049,3.85185543,Very Low,5.1086719073,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,361961000.0,2282.0,17343200000.0,0.0,17705161000.0,2.55348e-05,3.276e-07,0.0002460797,Very Low,92.4258591891,7.4767e-06,56.823000939,0.0,149.2488601282,2.1540710416,Very Low,3.6402648222,Very Low,0.0,0.01489,361961000.0,2282.0,17343200000.0,17705161000.0,5.8883e-06,2.64e-07,Very Low,31.7355738398,8.9705e-06,68.175425472,99.9109993118,6.3265938633,Very Low,6.4946528924,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.78921e-05,5.85e-08,0.0005670888,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.03125,361961000.0,2282.0,17343200000.0,0.0,17705161000.0,2.273e-07,1.163e-07,2.19536e-05,Very Low,2.570571871,8.2969e-06,63.0564786427,0.0,65.6270505137,3.89223612,Very Low,5.5318744949,Very Low,0.0,1.05528e-05,361961000.0,2282.0,17343200000.0,0.0,17705161000.0,0.1339019955,8.92813e-05,0.0314801129,Relatively Low,511.4636606785,2.15e-06,16.3401295467,0.0,527.8037902252,5.7575992375,Very Low,8.4795135456,Very Low,0.0,0.004587,55964729.537551165,188.8993255307,1435634874.0330632,1491599603.5706143,0.001559314,3.65e-08,Very Low,400.291820427,3.16e-08,0.2404735047,400.5322939317,7.8849374944,Relatively Low,8.6322228692,Relatively Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.24e-08,,2.3264e-06 -55,T15003004600,Hawaii,HI,15,Honolulu,County,3,15003,4600,15003004600,3735,483204000.0,17799.9354685802,2.639124545,16.4638912986,Relatively Low,55.1767277526,50.0,15.6406606485,Relatively Low,43.4856129449,41.1042944785,192587.1103315401,163440.9148912364,0.003835001,29146.0077957004,0.1876446033,33.6382390098,Relatively Moderate,69.8861926518,68.0911680912,1.091,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0,0.0,0.0,0.0,0.0,4.78451e-05,4.8e-09,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0029215956,483204000.0,3735.0,28386000000.0,28869204000.0,0.0167507621,0.0001397988,Very Low,162417.5,0.00378905,28796.78,191214.28,23.8569741112,Relatively Moderate,28.3189396515,Relatively Moderate,1.0,0.03125,483204000.0,3735.0,28386000000.0,17799.9354685802,28869221799.935463,1.80224e-05,2.1e-08,0.0002275779,Very Low,272.139737921,2.4518e-06,18.6339358542,0.126589775,290.9002635501,4.258694604,Very Low,4.7807463515,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,483204000.0,3735.0,28386000000.0,17799.9354685802,28869221799.935463,2.55348e-05,3.276e-07,0.0002460797,Very Low,123.3849637492,1.22373e-05,93.0034656035,0.0438020271,216.4322313799,2.4381681868,Very Low,3.4875286844,Very Low,0.0,0.01489,483204000.0,3735.0,28386000000.0,28869204000.0,5.8883e-06,2.64e-07,Very Low,42.3657693002,1.46821e-05,111.58423056,153.9499998602,7.3073305357,Very Low,6.3493009578,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.78921e-05,5.85e-08,0.0005670888,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.03125,483204000.0,3735.0,28386000000.0,17799.9354685802,28869221799.935463,2.273e-07,1.163e-07,2.19536e-05,Very Low,3.431614484,1.35797e-05,103.2059367729,0.0122116541,106.649762911,4.57605794,Very Low,5.504854264,Very Low,0.0,7.90165e-05,483204000.0,3735.0,28386000000.0,17799.9354685802,28869221799.935463,0.0152455823,1.01652e-05,0.0035842084,Very Low,582.0928057819,3e-06,22.8002269098,0.0050411471,604.8980738388,6.0252906004,Very Low,7.5107533908,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.001559314,3.65e-08,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No,,,,,,,,,,,1.23e-08,1.05419e-05,2.118e-06 +OID_,NRI_ID,STATE,STATEABBRV,STATEFIPS,COUNTY,COUNTYTYPE,COUNTYFIPS,STCOFIPS,TRACT,GEOID10_TRACT,POPULATION,BUILDVALUE,AGRIVALUE,AREA,RISK_SCORE,RISK_RATNG,RISK_NPCTL,RISK_SPCTL,FEMA Risk Index Expected Annual Loss Score,EAL_RATNG,EAL_NPCTL,EAL_SPCTL,EAL_VALT,EAL_VALB,EAL_VALP,EAL_VALPE,EAL_VALA,SOVI_SCORE,SOVI_RATNG,SOVI_NPCTL,SOVI_SPCTL,SOVI_VALUE,RESL_SCORE,RESL_RATNG,RESL_NPCTL,RESL_SPCTL,RESL_VALUE,AVLN_EVNTS,AVLN_AFREQ,AVLN_EXPB,AVLN_EXPP,AVLN_EXPPE,AVLN_EXPT,AVLN_HLRB,AVLN_HLRP,AVLN_HLRR,AVLN_EALB,AVLN_EALP,AVLN_EALPE,AVLN_EALT,AVLN_EALS,AVLN_EALR,AVLN_RISKS,AVLN_RISKR,CFLD_EVNTS,CFLD_AFREQ,CFLD_EXPB,CFLD_EXPP,CFLD_EXPPE,CFLD_EXPT,CFLD_HLRB,CFLD_HLRP,CFLD_HLRR,CFLD_EALB,CFLD_EALP,CFLD_EALPE,CFLD_EALT,CFLD_EALS,CFLD_EALR,CFLD_RISKS,CFLD_RISKR,CWAV_EVNTS,CWAV_AFREQ,CWAV_EXPB,CWAV_EXPP,CWAV_EXPPE,CWAV_EXPA,CWAV_EXPT,CWAV_HLRB,CWAV_HLRP,CWAV_HLRA,CWAV_HLRR,CWAV_EALB,CWAV_EALP,CWAV_EALPE,CWAV_EALA,CWAV_EALT,CWAV_EALS,CWAV_EALR,CWAV_RISKS,CWAV_RISKR,DRGT_EVNTS,DRGT_AFREQ,DRGT_EXPA,DRGT_EXPT,DRGT_HLRA,DRGT_HLRR,DRGT_EALA,DRGT_EALT,DRGT_EALS,DRGT_EALR,DRGT_RISKS,DRGT_RISKR,ERQK_EVNTS,ERQK_AFREQ,ERQK_EXPB,ERQK_EXPP,ERQK_EXPPE,ERQK_EXPT,ERQK_HLRB,ERQK_HLRP,ERQK_HLRR,ERQK_EALB,ERQK_EALP,ERQK_EALPE,ERQK_EALT,ERQK_EALS,ERQK_EALR,ERQK_RISKS,ERQK_RISKR,HAIL_EVNTS,HAIL_AFREQ,HAIL_EXPB,HAIL_EXPP,HAIL_EXPPE,HAIL_EXPA,HAIL_EXPT,HAIL_HLRB,HAIL_HLRP,HAIL_HLRA,HAIL_HLRR,HAIL_EALB,HAIL_EALP,HAIL_EALPE,HAIL_EALA,HAIL_EALT,HAIL_EALS,HAIL_EALR,HAIL_RISKS,HAIL_RISKR,HWAV_EVNTS,HWAV_AFREQ,HWAV_EXPB,HWAV_EXPP,HWAV_EXPPE,HWAV_EXPA,HWAV_EXPT,HWAV_HLRB,HWAV_HLRP,HWAV_HLRA,HWAV_HLRR,HWAV_EALB,HWAV_EALP,HWAV_EALPE,HWAV_EALA,HWAV_EALT,HWAV_EALS,HWAV_EALR,HWAV_RISKS,HWAV_RISKR,HRCN_EVNTS,HRCN_AFREQ,HRCN_EXPB,HRCN_EXPP,HRCN_EXPPE,HRCN_EXPA,HRCN_EXPT,HRCN_HLRB,HRCN_HLRP,HRCN_HLRA,HRCN_HLRR,HRCN_EALB,HRCN_EALP,HRCN_EALPE,HRCN_EALA,HRCN_EALT,HRCN_EALS,HRCN_EALR,HRCN_RISKS,HRCN_RISKR,ISTM_EVNTS,ISTM_AFREQ,ISTM_EXPB,ISTM_EXPP,ISTM_EXPPE,ISTM_EXPT,ISTM_HLRB,ISTM_HLRP,ISTM_HLRR,ISTM_EALB,ISTM_EALP,ISTM_EALPE,ISTM_EALT,ISTM_EALS,ISTM_EALR,ISTM_RISKS,ISTM_RISKR,LNDS_EVNTS,LNDS_AFREQ,LNDS_EXPB,LNDS_EXPP,LNDS_EXPPE,LNDS_EXPT,LNDS_HLRB,LNDS_HLRP,LNDS_HLRR,LNDS_EALB,LNDS_EALP,LNDS_EALPE,LNDS_EALT,LNDS_EALS,LNDS_EALR,LNDS_RISKS,LNDS_RISKR,LTNG_EVNTS,LTNG_AFREQ,LTNG_EXPB,LTNG_EXPP,LTNG_EXPPE,LTNG_EXPT,LTNG_HLRB,LTNG_HLRP,LTNG_HLRR,LTNG_EALB,LTNG_EALP,LTNG_EALPE,LTNG_EALT,LTNG_EALS,LTNG_EALR,LTNG_RISKS,LTNG_RISKR,RFLD_EVNTS,RFLD_AFREQ,RFLD_EXPB,RFLD_EXPP,RFLD_EXPPE,RFLD_EXPA,RFLD_EXPT,RFLD_HLRB,RFLD_HLRP,RFLD_HLRA,RFLD_HLRR,RFLD_EALB,RFLD_EALP,RFLD_EALPE,RFLD_EALA,RFLD_EALT,RFLD_EALS,RFLD_EALR,RFLD_RISKS,RFLD_RISKR,SWND_EVNTS,SWND_AFREQ,SWND_EXPB,SWND_EXPP,SWND_EXPPE,SWND_EXPA,SWND_EXPT,SWND_HLRB,SWND_HLRP,SWND_HLRA,SWND_HLRR,SWND_EALB,SWND_EALP,SWND_EALPE,SWND_EALA,SWND_EALT,SWND_EALS,SWND_EALR,SWND_RISKS,SWND_RISKR,TRND_EVNTS,TRND_AFREQ,TRND_EXPB,TRND_EXPP,TRND_EXPPE,TRND_EXPA,TRND_EXPT,TRND_HLRB,TRND_HLRP,TRND_HLRA,TRND_HLRR,TRND_EALB,TRND_EALP,TRND_EALPE,TRND_EALA,TRND_EALT,TRND_EALS,TRND_EALR,TRND_RISKS,TRND_RISKR,TSUN_EVNTS,TSUN_AFREQ,TSUN_EXPB,TSUN_EXPP,TSUN_EXPPE,TSUN_EXPT,TSUN_HLRB,TSUN_HLRP,TSUN_HLRR,TSUN_EALB,TSUN_EALP,TSUN_EALPE,TSUN_EALT,TSUN_EALS,TSUN_EALR,TSUN_RISKS,TSUN_RISKR,VLCN_EVNTS,VLCN_AFREQ,VLCN_EXPB,VLCN_EXPP,VLCN_EXPPE,VLCN_EXPT,VLCN_HLRB,VLCN_HLRP,VLCN_HLRR,VLCN_EALB,VLCN_EALP,VLCN_EALPE,VLCN_EALT,VLCN_EALS,VLCN_EALR,VLCN_RISKS,VLCN_RISKR,WFIR_EVNTS,WFIR_AFREQ,WFIR_EXPB,WFIR_EXPP,WFIR_EXPPE,WFIR_EXPA,WFIR_EXPT,WFIR_HLRB,WFIR_HLRP,WFIR_HLRA,WFIR_HLRR,WFIR_EALB,WFIR_EALP,WFIR_EALPE,WFIR_EALA,WFIR_EALT,WFIR_EALS,WFIR_EALR,WFIR_RISKS,WFIR_RISKR,WNTW_EVNTS,WNTW_AFREQ,WNTW_EXPB,WNTW_EXPP,WNTW_EXPPE,WNTW_EXPA,WNTW_EXPT,WNTW_HLRB,WNTW_HLRP,WNTW_HLRA,WNTW_HLRR,WNTW_EALB,WNTW_EALP,WNTW_EALPE,WNTW_EALA,WNTW_EALT,WNTW_EALS,WNTW_EALR,WNTW_RISKS,WNTW_RISKR,NRI_VER,Expected population loss rate (Natural Hazards Risk Index),Expected agricultural loss rate (Natural Hazards Risk Index),Contains agricultural value,Expected building loss rate (Natural Hazards Risk Index) +1,T06001020100,Hawaii,HI,15,Kauai,County,7,15007,40300,06001020100,8385,992658000.0,147860.5647200878,3.6108521589,18.0705830803,Relatively Low,63.0775787404,63.4969325153,18.6199401875,Relatively Low,59.6420077263,70.5521472393,324935.2155714268,98076.5248682368,0.0296790442,225560.7358958097,1297.9548073803,31.6808724993,Relatively Moderate,48.7278745931,51.8518518519,-0.133,52.509198,Relatively Low,23.5125676106,100.0,2.6254599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,202742385.58005425,1862.6855876887,14156410466.433796,14359152852.013851,3.57579e-05,2e-09,Very Low,507.2650077305,2.606e-07,1.9802850905,509.245292821,2.6321796,Very Low,2.553881041,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0030589604,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0005345855,912658000.0,8385.0,63726000000.0,64638658000.00001,0.0167507621,0.0001397988,Very Low,22512.2,0.00015412,1171.312,23683.512,11.8920653303,Relatively Low,13.014700282,Relatively Low,0.0,0.0,912658000.0,8385.0,63726000000.0,147860.5647200878,64638805860.56472,1.80224e-05,7.6e-08,0.0002275779,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,2.0,0.0343605913,912658000.0,8385.0,63726000000.0,147860.5647200878,64638805860.56472,2.55348e-05,3.276e-07,0.0002460797,Very Low,788.9305592758,9.68737e-05,736.240125413,1.3226671624,1526.4933518512,4.6757862953,Very Low,6.1662913066,Very Low,0.0,0.01489,912658000.0,8385.0,63726000000.0,64638658000.00001,5.8883e-06,2.8944e-06,Relatively Low,80.0189118426,0.000361377,2746.46506358,2826.4839754226,19.2773661946,Relatively Low,15.4429446232,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,59632790.05858513,418.9266599156,3183842615.35848,51591.3125103788,3243526996.729576,0.000180437,1.14831e-05,0.0042466231,Very Low,63663.1136805333,0.0284625391,216315.2971586954,1296.2757495066,281274.6865887354,29.5879096062,Relatively High,26.9708819409,Relatively High,1.0,0.03125,912658000.0,8385.0,63726000000.0,147860.5647200878,64638805860.56472,3.2387e-06,1.8297e-06,7.27233e-05,Very Low,92.3692287258,0.0004794348,3643.7043933928,0.3360282071,3736.4096503256,14.9734902768,Relatively Low,16.6070545485,Relatively Low,0.0,6.5331e-05,912658000.0,8385.0,63726000000.0,147860.5647200878,64638805860.56472,0.008966239,5.9784e-06,0.0021079463,Very Low,534.6107152638,3.275e-06,24.8896914625,0.0203625042,559.5207692305,5.8706925202,Very Low,6.7469108145,Very Low,7.0,0.031969309,198555247.5326174,978.4678896234,7436355961.138096,7634911208.670712,0.001559314,3.8734e-06,Very Low,9898.0167648649,0.0001211641,920.8471781755,10818.8639430404,23.6580872265,Relatively High,20.2115884136,Relatively Moderate,0.0,0.0,0.0,0.0,0.0,0.0,0.000541107,3.7371e-06,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,3.5067e-06,0.0031812618,True,6.6152e-05 +2,T06007040300,Hawaii,HI,15,Hawaii,County,1,15001,20100,06007040300,5213,409283000.0,30161527.914254252,97.0642891247,26.0474557835,Relatively High,89.4815710967,87.4233128834,24.6571275391,Relatively Moderate,83.8106105391,87.4233128834,754552.3595077734,510222.1167381129,0.0320334258,243454.0359926558,876.2067770047,33.3455935266,Relatively Moderate,67.0519519602,65.5270655271,0.908,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.057971012,1082842.5920536572,13.7920666932,104819706.8679995,105902549.46005316,3.13713e-05,2.5e-09,Very Low,1.9692852387,2e-09,0.0151413322,1.984426571,0.41420772,Very Low,0.437449991,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,5.41e-08,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0099874373,409283000.0,5213.0,39618800000.0,40028083000.0,0.0008505842,1.16917e-05,Very Low,509627.8,0.03142336,238817.536,748445.336,37.5977579168,Very High,44.7882310288,Very High,1.0,0.03125,409283000.0,5213.0,39618800000.0,30161527.91425424,40058244527.914246,1.80224e-05,7.6e-08,0.0002275779,Very Low,230.5075462219,1.23856e-05,94.1304164907,214.5030827638,539.1410454765,5.2311349597,Very Low,5.8932581207,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,409283000.0,5213.0,39618800000.0,30161527.91425424,40058244527.914246,2.55348e-05,3.276e-07,0.0002460797,Very Low,104.5094165573,1.70798e-05,129.8064434247,74.2213962963,308.5372562783,2.7440512545,Very Low,3.939006349,Very Low,0.0,0.01489,409283000.0,5213.0,39618800000.0,40028083000.0,5.8883e-06,1.361e-06,Very Low,35.8846142757,0.000105643,802.886471452,838.7710857277,12.8581949229,Relatively Low,11.2121138672,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006245044,3.8327e-06,0.0003492485,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.03125,409283000.0,5213.0,39618800000.0,30161527.91425424,40058244527.914246,8.3601e-06,3.102e-07,0.0006212585,Very Low,106.9261414761,5.05411e-05,384.1124266061,585.5657605523,1076.6043286345,9.8898625798,Very Low,11.9394659724,Relatively Low,0.0,0.0006781468,409283000.0,5213.0,39618800000.0,30161527.914254252,40058244527.914246,0.0003985575,2.657e-07,9.37001e-05,Very Low,110.6212172132,9.395e-07,7.139853548,1.9165373923,119.6776081535,3.5109250974,Very Low,4.391726113,Very Low,4.0,0.018268176,315888.8587620232,2.2117928286,16809625.4977077,17125514.35646972,0.0006654598,3.8734e-06,Very Low,3.8401775301,1.565e-07,1.1894532216,5.0296307517,1.8327269938,Very Low,1.704290689,Very Low,4.0,0.0204021391,407903840.58451587,5201.979993784,39535047952.75828,39942951793.34279,7e-09,4.0043e-06,Very Low,0.0583395999,0.0004233184,3217.2197865804,3217.2781261802,17.0524727301,Relatively Low,17.9932135371,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,3.58e-08,2.90505e-05,True,1.4426e-06 +3,T06007040500,Hawaii,HI,15,Kauai,County,7,15007,40500,06007040500,5943,1030806000.0,459516.6731830848,6.1500338151,19.0467198618,Relatively Moderate,67.4534981234,69.3251533742,18.7719774304,Relatively Low,60.4118835838,72.0858895706,332959.9571449574,167792.7734322688,0.0217301935,165149.4709508616,17.7127618271,33.1217117362,Relatively Moderate,64.7826443794,63.5327635328,0.768,52.509198,Relatively Low,23.5125676106,100.0,2.6254599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,66594737.2848528,383.9447225607,2917979891.461138,2984574628.7459903,6.3169e-06,3e-10,Very Low,29.4350693631,8.3e-09,0.0628428106,29.4979121737,1.0184434918,Very Low,1.0330889632,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,56.0,3.111111111,0.0,0.0,0.0030589604,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0005860614,1030806000.0,5943.0,45166800000.0,46197606000.0,0.0167507621,0.0001397988,Very Low,120075.0,0.00114383,8693.108,128768.108,20.9111551033,Relatively Moderate,23.9260247408,Relatively Moderate,0.0,0.0,1030806000.0,5943.0,45166800000.0,459516.6731830846,46198065516.673195,1.80224e-05,7.6e-08,0.0002275779,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,2.0,0.0289855072,1030806000.0,5943.0,45166800000.0,459516.6731830846,46198065516.673195,2.55348e-05,3.276e-07,0.0002460797,Very Low,762.9385502884,5.64393e-05,428.9386307213,3.2776151707,1195.1547961804,4.3095415029,Very Low,5.9417734791,Very Low,0.0,0.01489,1030806000.0,5943.0,45166800000.0,46197606000.0,5.8883e-06,2.8944e-06,Relatively Low,90.3777476786,0.0002561316,1946.6001040973,2036.9778517759,17.2833380202,Relatively Low,14.4752368977,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,40606220.88329143,293.0385094863,2227092672.0956783,530.1707312656,2267699423.1497006,0.000180437,1.14831e-05,0.0042466231,Very Low,43350.6205845832,0.0199094993,151312.194528839,13.3209920158,194676.136105438,26.1722849103,Relatively High,24.9423944801,Relatively High,1.0,0.03125,1030806000.0,5943.0,45166800000.0,459516.6731830846,46198065516.673195,3.2387e-06,1.8297e-06,7.27233e-05,Very Low,104.3268729204,0.0003398069,2582.5325235382,1.0442984855,2687.9036949441,13.4166096589,Relatively Low,15.5570766452,Relatively Low,0.0,0.000122337,1030806000.0,5943.0,45166800000.0,459516.6731830848,46198065516.673195,0.0052856261,3.5243e-06,0.001242641,Very Low,666.5475081608,2.5623e-06,19.473622804,0.069856155,686.0909871197,6.2836381633,Very Low,7.5500148235,Very Low,9.0,0.041103397,42337272.98880063,137.653444203,1046166175.9429299,1088503448.9317303,0.001559314,3.8734e-06,Very Low,2713.5270992744,2.19159e-05,166.5606980512,2880.0877973256,15.2190537663,Relatively Moderate,13.5932751503,Relatively Moderate,0.0,0.0,0.0,0.0,0.0,0.0,0.000541107,3.7371e-06,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,3.4603e-06,3.85465e-05,True,4.36593e-05 +4,T15001021010,Hawaii,HI,15,Hawaii,County,1,15001,21010,15001021010,7884,737712000.0,8711454.309073342,58.4401512286,43.1066279987,Very High,99.4459643383,98.1595092025,42.6674572964,Very High,99.2741170486,99.0797546012,3909779.132120072,2582125.8111252696,0.1746532017,1327364.3330713348,288.9879234675,31.8903618889,Relatively Moderate,51.0956693021,54.415954416,-0.002,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0,0.0,0.0,0.0,0.0,4.78451e-05,4.8e-09,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,5.41e-08,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0099998852,737712000.0,7884.0,59918400000.0,60656112000.0,0.0008505842,1.16917e-05,Very Low,2580741.4,0.17367654,1319941.704,3900683.104,65.1861714882,Very High,74.2640163391,Very High,1.0,0.03125,737712000.0,7884.0,59918400000.0,8711454.309073342,60664823454.309074,1.80224e-05,7.6e-08,0.0002275779,Very Low,415.4782459486,1.87316e-05,142.3602922696,61.9542156517,619.7927538699,5.4799587665,Very Low,5.9041560145,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0269344664,737712000.0,7884.0,59918400000.0,8711454.309073342,60664823454.309074,2.55348e-05,3.276e-07,0.0002460797,Very Low,473.505191031,6.51127e-05,494.8567057547,57.246194849,1025.6080916347,4.0952789981,Very Low,5.6221049906,Very Low,0.0,0.01489,737712000.0,7884.0,59918400000.0,60656112000.0,5.8883e-06,1.361e-06,Very Low,64.6802104328,0.0001597715,1214.263752336,1278.9439627688,14.7995789625,Relatively Low,12.3417814165,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006245044,3.8327e-06,0.0003492485,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.03125,737712000.0,7884.0,59918400000.0,8711454.309073342,60664823454.309074,8.3601e-06,3.102e-07,0.0006212585,Very Low,192.7289862509,7.6437e-05,580.9212298706,169.1270211135,942.7772372349,9.4618177655,Very Low,10.9242145239,Very Low,1.0,0.0004673635,737712000.0,7884.0,59918400000.0,8711454.309073342,60664823454.309074,0.0006900376,4.601e-07,0.0001622266,Very Low,237.910942867,1.6953e-06,12.8843062101,0.6604918534,251.4557409305,4.4968090785,Very Low,5.3796416501,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0006654598,3.8734e-06,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,4.0,0.0207448,737708710.8628113,7883.9591351862,59918089427.41536,60655798138.27817,7e-09,4.0043e-06,Very Low,0.1075487398,0.0006549135,4977.3427848938,4977.4503336337,19.7224171343,Relatively Low,19.902265065,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,4.08e-08,3.31733e-05,True,1.8765e-06 +5,T15001021101,Hawaii,HI,15,Hawaii,County,1,15001,21101,15001021101,3531,365469000.0,1115552.946347012,41.0551206444,39.6369371498,Very High,99.0514029613,96.6257668712,35.4631324234,Relatively High,97.7453635601,94.4785276074,2244880.451421157,1569603.2441089998,0.0888473124,675239.574319989,37.6329921689,35.2805718581,Relatively High,83.0000273575,82.3361823362,2.118,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.067971012,53358423.69058833,515.5255139327,3917993905.8884683,3971352329.5790553,9.778e-07,1e-10,Very Low,3.5462107144,2.3e-09,0.0178004814,3.5640111958,0.5034846073,Very Low,0.562592042,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,5.41e-08,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0099998512,365469000.0,3531.0,26835600000.0,27201069000.0,0.0008505842,1.16917e-05,Very Low,1549795.8,0.08759107,665692.1319999999,2215487.932,53.9839983966,Very High,68.0399795668,Very High,1.0,0.03125,365469000.0,3531.0,26835600000.0,1115552.946347012,27202184552.946342,1.80224e-05,7.6e-08,0.0002275779,Very Low,205.8315698678,8.3893e-06,63.7587762572,7.9336015953,277.5239477203,4.192392616,Very Low,4.9971070139,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0289855072,365469000.0,3531.0,26835600000.0,1115552.946347012,27202184552.946342,2.55348e-05,3.276e-07,0.0002460797,Very Low,270.4974447523,3.35331e-05,254.8514731746,7.9569545004,533.3058724274,3.2931774779,Very Low,5.0015747332,Very Low,0.0,0.01489,365469000.0,3531.0,26835600000.0,27201069000.0,5.8883e-06,1.361e-06,Very Low,32.0431439731,7.15567e-05,543.831216324,575.8743602971,11.3433526973,Very Low,10.4651653429,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,4828130.527921984,35.1384012388,267051849.41505945,0.0,271879979.9429814,0.0006245044,3.8327e-06,0.0003492485,Very Low,17839.8663537918,0.0007968309,6055.9146131274,0.0,23895.7809669192,13.0070200492,Relatively Moderate,13.6546608024,Relatively Moderate,1.0,0.03125,365469000.0,3531.0,26835600000.0,1115552.946347012,27202184552.946342,8.3601e-06,3.102e-07,0.0006212585,Very Low,95.4796314509,3.42338e-05,260.1766695466,21.6577094941,377.3140104915,6.972778356,Very Low,8.9063071715,Very Low,0.0,0.000363433,365469000.0,3531.0,26835600000.0,1115552.946347012,27202184552.946342,0.0008889061,5.927e-07,0.0002089802,Very Low,118.0676167774,7.606e-07,5.7804922284,0.0847265791,123.9328355849,3.5520526364,Very Low,4.7010550308,Very Low,13.0,0.059371574,31437177.79214135,196.0173546829,1489731895.5901709,1521169073.3823123,0.0006654598,3.8734e-06,Very Low,1242.0638448472,4.50783e-05,342.5948426489,1584.6586874961,12.4708959075,Relatively Moderate,12.2698912376,Relatively Moderate,3.0,0.0188028,365467633.73540473,3530.9854379618,26835489328.50994,27200956962.245342,7e-09,4.0043e-06,Very Low,0.0482928249,0.0002658574,2020.5164362008,2020.5647290257,14.6032241308,Relatively Low,16.3029908639,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,2.677e-07,3.37348e-05,True,5.07987e-05 +6,T15007040603,Hawaii,HI,15,Kauai,County,7,15007,40603,15007040603,2544,509507000.0,3763051.378240333,15.9289735326,23.861367567,Relatively Moderate,84.6148558545,84.9693251534,22.2413255033,Relatively Moderate,75.9028856597,83.7423312883,553788.5026946985,159866.005336267,0.0465200191,353552.1448416796,40370.352516752,35.0215086434,Relatively Moderate,81.3161710393,79.7720797721,1.956,52.509198,Relatively Low,23.5125676106,100.0,2.6254599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,59268365.982889764,295.9306212878,2249072721.7871075,2308341087.7699966,2.0063e-06,1e-10,Very Low,8.3203647759,1.4e-09,0.010921869,8.3312866448,0.6682062552,Very Low,0.7166933897,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,119.0,6.611111111,1994468.3763317089,1994468.3763317089,0.0030589604,Relatively Moderate,40334.3876510453,40334.3876510453,9.31733969,Relatively Moderate,10.0118819196,Relatively Moderate,,0.0006288023,509507000.0,2544.0,19334400000.0,19843907000.0,0.0167507621,0.0001397988,Very Low,29888.8,0.0002046,1554.96,31443.76,13.0703357152,Relatively Low,15.8125293377,Relatively Low,0.0,0.0,509507000.0,2544.0,19334400000.0,3763051.378240333,19847670051.37824,1.80224e-05,7.6e-08,0.0002275779,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,2.0,0.0289855072,509500026.786716,2543.9789504995,19334240023.79628,3763051.378240333,19847503101.961227,2.55348e-05,3.276e-07,0.0002460797,Very Low,377.1002611632,2.41596e-05,183.6127961654,26.8408852286,587.5539425572,3.4012529352,Very Low,4.9584510525,Very Low,0.0,0.01489,509507000.0,2544.0,19334400000.0,19843907000.0,5.8883e-06,2.8944e-06,Relatively Low,44.6719315627,0.0001096414,833.2745523849,877.9464839477,13.0553404852,Relatively Low,11.5613443431,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,119566421.24697922,677.5008183296,5149006219.304985,0.0,5268572640.551965,0.000180437,1.14831e-05,0.0042466231,Very Low,127647.4010480262,0.0460304759,349831.6169989206,0.0,477479.0180469467,35.2957296359,Relatively High,35.566468565,Very High,1.0,0.03125,509507000.0,2544.0,19334400000.0,3763051.378240333,19847670051.37824,3.2387e-06,1.8297e-06,7.27233e-05,Very Low,51.5667080334,0.00014546,1105.4960019992,8.5519178837,1165.6146279163,10.1552327033,Very Low,12.4507973241,Relatively Low,0.0,0.0002990171,509507000.0,2544.0,19334400000.0,3763051.378240333,19847670051.37824,0.0021625099,1.4419e-06,0.0005084021,Very Low,329.4612383326,1.0968e-06,8.3360081463,0.5720625944,338.3693090733,4.964561772,Very Low,6.3071150891,Very Low,3.0,0.013701132,71084897.08187932,86.3741073938,656443216.1930951,727528113.2749742,0.001559314,3.8734e-06,Relatively Low,1518.683784373,4.5839e-06,34.8375621943,1553.5213465673,12.3886737842,Relatively Moderate,11.699932367,Relatively Moderate,0.0,0.0,0.0,0.0,0.0,0.0,0.000541107,3.7371e-06,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.82039e-05,0.0107280896,True,0.0002521232 +7,T15007040700,Hawaii,HI,15,Kauai,County,7,15007,40700,15007040700,8403,953840000.0,4902899.033772812,35.9094759697,14.5995882683,Relatively Low,44.799901016,33.4355828221,14.2025996464,Relatively Low,34.6292910268,25.1533742331,144200.0701977621,43942.44874484,0.0128483788,97647.6787717786,2609.9426811435,33.5566820719,Relatively Moderate,69.0887204881,66.9515669516,1.04,52.509198,Relatively Low,23.5125676106,100.0,2.6254599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,7924120.216700878,88.3295953796,671304924.8847564,679229045.1014572,1.71347e-05,1e-09,Very Low,9.5004950424,6.4e-09,0.0483633348,9.5488583772,0.6992894806,Very Low,0.718660905,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,56.0,3.111111111,0.0,0.0,0.0030589604,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.000417928,753840000.0,8403.0,63862800000.0,64616640000.0,0.0167507621,0.0001397988,Very Low,22605.7,0.00026554,2018.104,24623.804,12.0474084201,Relatively Low,13.9653684416,Relatively Low,0.0,0.0,753840000.0,8403.0,63862800000.0,4902899.033772809,64621542899.03377,1.80224e-05,7.6e-08,0.0002275779,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,2.0,0.0367917638,753839838.3895446,8402.998750639,63862790504.856735,4902899.033772809,64621533242.28005,2.55348e-05,3.276e-07,0.0002460797,Very Low,565.9880891858,8.06355e-05,612.8295337298,35.4917036305,1214.3093265461,4.3324423408,Very Low,6.0517928671,Very Low,0.0,0.01489,753840000.0,8403.0,63862800000.0,64616640000.0,5.8883e-06,2.8944e-06,Relatively Low,66.0942614905,0.0003621527,2752.3608740922,2818.4551355827,19.2590959492,Relatively Low,16.3418113695,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,17435799.68528737,171.1495864487,1300736857.009833,101991.5773982118,1318274648.2725186,0.000180437,1.14831e-05,0.0042466231,Very Low,18614.2103427484,0.0116281733,88374.1169843188,2562.6254111801,109550.9527382472,21.6077453518,Relatively Moderate,20.8627809132,Relatively High,1.0,0.03125,753840000.0,8403.0,63862800000.0,4902899.033772809,64621542899.03377,3.2387e-06,1.8297e-06,7.27233e-05,Very Low,76.2954133774,0.000480464,3651.5262990207,11.1423378834,3738.9640502815,14.976901713,Relatively Low,17.594358084,Relatively Low,0.0,0.0005599395,753840000.0,8403.0,63862800000.0,4902899.033772812,64621542899.03377,0.0010585776,7.058e-07,0.0002488696,Very Low,446.8306321093,3.321e-06,25.2397457391,0.6832284494,472.7536062978,5.5500327704,Very Low,6.7560542776,Very Low,18.0,0.082206795,12152864.1611398,88.2036899901,670348043.9244705,682500908.0856104,0.001559314,3.8734e-06,Very Low,1557.8295108863,2.80859e-05,213.4529715432,1771.2824824295,12.9424059626,Relatively Moderate,11.7116400138,Relatively Moderate,0.0,0.0,0.0,0.0,0.0,0.0,0.000541107,3.7371e-06,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.4941e-06,0.0005323264,True,2.07361e-05 +8,T15009030100,Hawaii,HI,15,Maui,County,9,15009,30100,15009030100,2291,368239000.0,644114.43822931,214.3878544386,15.5323735316,Relatively Low,50.1986554668,40.7975460123,16.2238215839,Relatively Low,46.8895640578,49.0797546012,214942.067418806,186581.2187114685,0.0036972718,28099.2660221777,261.5826851598,30.8317208514,Relatively Low,39.4153694635,40.1709401709,-0.664,51.8016,Relatively Low,16.9583200764,80.0,2.59008,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,50139595.99454863,311.9436410144,2370771671.7096305,2420911267.704179,3.07e-07,0.0,Very Low,1.0772166727,1.1e-09,0.0081382716,1.0853549442,0.338737887,Very Low,0.3242214636,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,427.0,23.722222222,0.0,0.0,1.625e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0071038122,368239000.0,2291.0,17411600000.0,17779839000.0,0.0008599048,7.5108e-06,Very Low,185778.4,0.00359349,27310.524,213088.924,24.7340676281,Relatively High,26.7033206855,Relatively Moderate,1.0,0.03125,368239000.0,2291.0,17411600000.0,644114.4382293099,17780483114.43823,1.80224e-05,2.1e-08,0.0002275779,Very Low,207.3916295405,1.5057e-06,11.4431512,4.580820078,223.4156008185,3.9000151241,Very Low,3.9819297582,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,368239000.0,2291.0,17411600000.0,644114.4382293099,17780483114.43823,2.55348e-05,3.276e-07,0.0002460797,Very Low,94.0289311886,7.5062e-06,57.0471056754,1.5850348535,152.6610717175,2.170363366,Very Low,2.8235447615,Very Low,0.0,0.01489,368239000.0,2291.0,17411600000.0,17779839000.0,5.8883e-06,1.627e-06,Relatively Low,32.2860086451,5.55018e-05,421.813943948,454.0999525931,10.4797118228,Very Low,8.2817973573,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,107.0,4.458333333,25.0001805198,0.0001620382,1231.4903737514,13472.8923938542,14729.3829481254,3.05947e-05,2.7267e-06,0.0042466231,Relatively Low,0.0034100604,2e-09,0.0149708011,255.0804028339,255.0987836954,2.8640034011,Very Low,2.575415095,Very Low,1.0,0.03125,368239000.0,2291.0,17411600000.0,644114.4382293099,17780483114.43823,5.132e-07,8.35e-08,1.33875e-05,Very Low,5.9052638179,5.975e-06,45.4103272432,0.2694722287,51.5850632898,3.592081699,Very Low,3.9301453807,Very Low,0.0,0.0024581721,368239000.0,2291.0,17411600000.0,644114.43822931,17780483114.43823,0.0001798702,1.199e-07,4.22872e-05,Very Low,162.8175922584,6.754e-07,5.1331444622,0.066955123,168.0176918435,3.9312947106,Very Low,4.4567490456,Very Low,6.0,0.027402265,14124383.392418932,90.8041015676,690111171.9139464,704235555.3063654,0.0007732141,3.66e-08,Very Low,299.2648749055,9.12e-08,0.692869733,299.9577446384,7.1604299781,Relatively Low,6.0346593804,Relatively Low,1.0,0.003531,368238629.3887722,2290.9968855822,17411576330.424442,17779814959.813213,7e-09,4.0104e-06,Very Low,0.0091377281,3.2442e-05,246.5589966972,246.5681344253,7.243305643,Very Low,6.9266931121,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,1.0,0.0368471205,4945035.468947387,9.3607227865,71141493.17722161,290715.7155912937,76377244.3617603,8.51e-08,1.057e-07,0.0,Very Low,0.0346466514,8.15e-08,0.6193741462,4.27e-08,0.6540208402,1.3817404111,Very Low,0.8046981705,Very Low,November 2021,3.11e-08,0.0004061121,True,1.3674e-06 +9,T15009030201,Hawaii,HI,15,Maui,County,9,15009,30201,15009030201,2453,240407000.0,911133.6885541946,45.603767843,16.0782655749,Relatively Low,53.1489297351,46.3190184049,16.5620580551,Relatively Low,48.7303922243,51.5337423313,228667.7111643,175591.2462281788,0.0069825353,53067.2684114386,9.1965246826,31.2634928758,Relatively Low,44.0524717533,45.8689458689,-0.394,51.8016,Relatively Low,16.9583200764,80.0,2.59008,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.067971012,1123293.7247402107,11.4615610477,87107863.96230894,88231157.68704915,0.0002145287,1.65e-08,Very Low,16.3795722727,1.29e-08,0.0979067238,16.4774789966,0.8387581763,Very Low,0.8140563845,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,42.0,2.333333333,0.0,0.0,1.625e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0066172465,240407000.0,2453.0,18642800000.0,18883207000.0,0.0008599048,7.5108e-06,Very Low,175248.3,0.0068716,52224.16,227472.46,25.2785131982,Relatively High,27.6733022248,Relatively Moderate,1.0,0.03125,240407000.0,2453.0,18642800000.0,911133.6885541948,18884118133.688553,1.80224e-05,2.1e-08,0.0002275779,Very Low,135.3968468355,1.6121e-06,12.2523133536,6.4798104909,154.12897068,3.4460630452,Very Low,3.5677158209,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,240407000.0,2453.0,18642800000.0,911133.6885541948,18884118133.688553,2.55348e-05,3.276e-07,0.0002460797,Very Low,61.387341537,8.037e-06,61.0809909305,2.2421150138,124.7104474814,2.0288843577,Very Low,2.6764507281,Very Low,0.0,0.01489,240407000.0,2453.0,18642800000.0,18883207000.0,5.8883e-06,1.627e-06,Relatively Low,21.0781109017,5.94265e-05,451.641032084,472.7191429857,10.6210287562,Very Low,8.5110193188,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,107.0,4.458333333,0.0,0.0,0.0,0.0,0.0,3.05947e-05,2.7267e-06,0.0042466231,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.03125,240407000.0,2453.0,18642800000.0,911133.6885541948,18884118133.688553,5.132e-07,8.35e-08,1.33875e-05,Very Low,3.8552862642,6.3975e-06,48.6213586754,0.3811826146,52.8578275542,3.6213846227,Very Low,4.0176934337,Very Low,0.0,0.0005103731,240407000.0,2453.0,18642800000.0,911133.6885541946,18884118133.688553,0.0008544857,5.697e-07,0.000200888,Very Low,104.8430527576,7.133e-07,5.4209693174,0.0934165632,110.3574386382,3.4173107124,Very Low,3.9282264255,Very Low,1.0,0.004567044,0.0,0.0,0.0,0.0,0.0007732141,3.66e-08,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.003531,240406941.15547386,2452.9993801304,18642795288.99131,18883202230.146786,7e-09,4.0104e-06,Very Low,0.0059656242,3.4736e-05,263.9938403539,263.9998059781,7.4101277885,Very Low,7.185459815,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,1.0,0.0106982003,7419.8231090135,0.0,0.0,0.0,7419.8231090135,8.51e-08,1.057e-07,0.0,Very Low,5.19859e-05,0.0,0.0,0.0,5.19859e-05,0.0594097511,Very Low,0.0350835894,Very Low,November 2021,3.11e-08,1.00935e-05,True,1.4265e-06 +10,T15001021402,Hawaii,HI,15,Hawaii,County,1,15001,21402,15001021402,4025,425500000.0,1383968.458588042,16.1940325556,40.6895862222,Very High,99.1723834532,97.2392638037,37.6719247757,Relatively High,98.4849942947,96.0122699387,2691010.34602831,1957068.2379162407,0.0965656564,733898.988498616,43.1196134532,34.0939983689,Relatively Moderate,74.000766011,71.7948717949,1.376,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,23588727.030300748,223.1366070434,1695838213.5297291,1719426940.56003,2.9443e-06,2e-10,Very Low,4.8595807616,3.4e-09,0.025793951,4.8853747126,0.5592926832,Very Low,0.6039331168,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,161.0,8.944444444,1383968.458588042,1383968.458588042,5.41e-08,Very Low,0.6696122276,0.6696122276,0.2376883514,Very Low,0.2571334241,Very Low,,0.0099990439,425500000.0,4025.0,30590000000.0,31015500000.000004,0.0008505842,1.16917e-05,Very Low,1310569.6,0.07113999,540663.924,1851233.524,50.846647139,Very High,61.9303831851,Very High,1.0,0.03125,425500000.0,4025.0,30590000000.0,1383968.4585880418,31016883968.458588,1.80224e-05,7.6e-08,0.0002275779,Very Low,239.6409352949,9.563e-06,72.6788656012,9.8425219597,322.1623228558,4.4060901141,Very Low,5.075191079,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.0144927536,425500000.0,4025.0,30590000000.0,1383968.4585880418,31016883968.458588,2.55348e-05,3.276e-07,0.0002460797,Very Low,157.4643304159,1.91122e-05,145.2530698864,4.9357469279,307.6531472301,2.7414277339,Very Low,4.0235624639,Very Low,0.0,0.01489,425500000.0,4025.0,30590000000.0,31015500000.000004,5.8883e-06,1.361e-06,Very Low,37.3064685666,8.15678e-05,619.9152211,657.2216896666,11.8541244954,Very Low,10.5685757043,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,174713506.010078,1099.3436364052,8355011636.67989,341.9328564726,8529725484.622824,0.0006245044,3.8327e-06,0.0003492485,Very Low,645563.6564497937,0.0249297326,189465.9676547664,0.7065655187,835030.3306700788,42.5243956562,Very High,43.1403413275,Very High,1.0,0.03125,425500000.0,4025.0,30590000000.0,1383968.4585880418,31016883968.458588,8.3601e-06,3.102e-07,0.0006212585,Very Low,111.1628706773,3.90232e-05,296.5763508737,26.8688159761,434.608037527,7.3092160828,Very Low,9.0220437817,Very Low,0.0,0.0001368209,425500000.0,4025.0,30590000000.0,1383968.458588042,31016883968.458588,0.0021643504,1.4431e-06,0.0005088348,Very Low,126.0026443038,7.947e-07,6.0399428818,0.0963508431,132.1389380288,3.6287819112,Very Low,4.6410708199,Very Low,3.0,0.013701132,28350000.0,217.0,1649200000.0,1677550000.0,0.0006654598,3.8734e-06,Very Low,258.482603829,1.15162e-05,87.5233472654,346.0059510944,7.5095445566,Relatively Low,7.1400125868,Relatively Low,4.0,0.0207448,425499989.0686448,4024.9999387069,30589999534.172466,31015499523.241116,7e-09,4.0043e-06,Very Low,0.0620325976,0.0003343532,2541.0842522902,2541.1462848878,15.7628369695,Relatively Low,17.0057283845,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,6.231e-06,3.11565e-05,True,0.0015187781 +11,T15001021800,Hawaii,HI,15,Hawaii,County,1,15001,21800,15001021800,6322,560173000.0,1734823.6758895495,140.9697985177,26.9714927226,Relatively High,91.0611913829,88.036809816,25.2568722397,Relatively Moderate,85.4191011699,88.036809816,810962.2510357033,553967.9101830884,0.0338073298,256935.7064026278,58.6344499873,33.7086018582,Relatively Moderate,70.5085765874,69.5156695157,1.135,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,51086751.82636114,576.5548233247,4381816657.267557,4432903409.093918,3.784e-07,0.0,Very Low,1.3527161263,1.5e-09,0.0117538785,1.3644700048,0.3655901691,Very Low,0.3903076103,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1575.0,87.5,1734823.6758895495,1734823.6758895495,5.41e-08,Very Low,8.2112108805,8.2112108805,0.5481118294,Very Low,0.5862496728,Very Low,,0.0097461622,560173000.0,6322.0,48047200000.0,48607373000.0,0.0008505842,1.16917e-05,Very Low,538363.3999999999,0.03189122,242373.272,780736.672,38.130875603,Very High,45.9177953623,Very High,1.0,0.03125,560173000.0,6322.0,48047200000.0,1734823.6758895495,48609107823.675896,1.80224e-05,7.6e-08,0.0002275779,Very Low,315.4885585027,1.50205e-05,114.1554753602,12.3377379153,441.9817717782,4.8958703896,Very Low,5.5756016541,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,560173000.0,6322.0,48047200000.0,1734823.6758895495,48609107823.675896,2.55348e-05,3.276e-07,0.0002460797,Very Low,143.0388103126,2.07133e-05,157.4211270537,4.2690488333,304.7289861995,2.7327145569,Very Low,3.9654366815,Very Low,0.0,0.01489,560173000.0,6322.0,48047200000.0,48607373000.0,5.8883e-06,1.361e-06,Very Low,49.1141631406,0.0001281172,973.690441688,1022.8046048286,13.7371428056,Relatively Low,12.1089418931,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,3744844.4892568006,53.3229072465,405254095.0732191,0.0,408998939.5624759,0.0006245044,3.8327e-06,0.0003492485,Very Low,13837.1414811001,0.0012091995,9189.9164965874,0.0,23027.0579776875,12.8474484831,Relatively Low,12.8862073443,Relatively Moderate,1.0,0.03125,560173000.0,6322.0,48047200000.0,1734823.6758895495,48609107823.675896,8.3601e-06,3.102e-07,0.0006212585,Very Low,146.3465070599,6.12931e-05,465.827500671,33.6804338323,645.8544415632,8.3409675847,Very Low,10.1791934049,Very Low,0.0,0.0012868546,560173000.0,6322.0,48047200000.0,1734823.6758895495,48609107823.675896,0.0002591576,1.728e-07,6.09275e-05,Very Low,186.8166860621,1.4058e-06,10.6840235122,0.136018526,197.6367281003,4.1499208704,Very Low,5.2476929578,Very Low,38.0,0.173547679,8010662.960923643,89.7924700335,682422772.2545192,690433435.2154428,0.0006654598,3.8734e-06,Very Low,925.1434444921,6.03605e-05,458.7398439858,1383.8832884779,11.920255492,Relatively Moderate,11.2055646697,Relatively Moderate,4.0,0.0199142254,554917542.964756,6278.2557780679,47714743913.315994,48269661456.28075,7e-09,4.0043e-06,Very Low,0.0678162917,0.0004199984,3191.987739891,3192.0555561827,17.0077935464,Relatively Low,18.1414348445,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,2.271e-07,3.37985e-05,True,2.62049e-05 +12,T15009030402,Hawaii,HI,15,Maui,County,9,15009,30402,15009030402,8652,848387000.0,6154260.50317884,17.7870581334,22.7178018808,Relatively Moderate,81.2823932141,83.7423312883,23.9449676493,Relatively Moderate,81.7621908467,85.2760736196,691042.409030566,529396.7171852423,0.0212606987,161581.3101906748,64.3816546488,30.553467769,Relatively Low,36.5264137007,37.6068376068,-0.838,51.8016,Relatively Low,16.9583200764,80.0,2.59008,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0,0.0,0.0,0.0,0.0,4.78451e-05,4.8e-09,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,49.0,2.722222222,5275080.431296148,5275080.431296148,1.625e-07,Very Low,2.3330989039,2.3330989039,0.3603389066,Very Low,0.3424150272,Very Low,,0.0063848119,848387000.0,8652.0,65755200000.0,66603587000.0,0.0008599048,7.5108e-06,Very Low,528285.0,0.02086974,158610.024,686895.024,36.5374899179,Very High,39.0904958889,Relatively High,1.0,0.03125,848387000.0,8652.0,65755200000.0,6154260.50317884,66609741260.50319,1.80224e-05,2.1e-08,0.0002275779,Very Low,477.8102330578,5.6862e-06,43.2152528077,43.7679368836,564.7934227491,5.3128187837,Very Low,5.3754527661,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,848387000.0,8652.0,65755200000.0,6154260.50317884,66609741260.50319,2.55348e-05,3.276e-07,0.0002460797,Very Low,216.6335527858,2.83473e-05,215.4393532534,15.1443855568,447.2172915961,3.1054833874,Very Low,4.0036322682,Very Low,0.0,0.01489,848387000.0,8652.0,65755200000.0,66603587000.0,5.8883e-06,1.627e-06,Relatively Low,74.3838377151,0.0002096036,1592.987447856,1667.3712855711,16.1675033957,Relatively Low,12.6613776932,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.05947e-05,2.7267e-06,0.0042466231,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.03125,848387000.0,8652.0,65755200000.0,6154260.50317884,66609741260.50319,5.132e-07,8.35e-08,1.33875e-05,Very Low,13.605156039,2.25649e-05,171.4928639494,2.5747013191,187.6727213076,5.5246563276,Very Low,5.9900496315,Very Low,0.0,0.0001715926,848387000.0,8652.0,65755200000.0,6154260.50317884,66609741260.50319,0.0022617831,1.5081e-06,0.000531741,Very Low,329.2633531826,2.2389e-06,17.0158149667,0.5615319854,346.8407001347,5.0056515598,Very Low,5.6236951437,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0007732141,3.66e-08,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.003531,848386998.4516693,8651.999977881,65755199831.89553,66603586830.347206,7e-09,4.0104e-06,Very Low,0.0210524619,0.0001225178,931.1354578416,931.1565103035,11.2797304876,Relatively Low,10.6893328863,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,1.0,0.0008568947,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,3.1e-08,1.04613e-05,True,1.3104e-06 +13,T15009030800,Hawaii,HI,15,Maui,County,9,15009,30800,15009030800,6907,606441000.0,4986834.924185982,54.8722617975,18.4696898486,Relatively Moderate,64.906033902,65.9509202454,19.8423994159,Relatively Moderate,65.4476965589,76.3803680982,393228.0586943021,270968.5074116394,0.0160775475,122189.3610068932,70.1902757695,29.9761725809,Relatively Low,30.7977457391,33.9031339031,-1.199,51.8016,Relatively Low,16.9583200764,80.0,2.59008,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,13759687.487434156,156.7146045134,1191030994.3018012,1204790681.789235,1.4976e-06,2e-10,Very Low,1.441846236,2e-09,0.0148379347,1.4566841707,0.3736471249,Very Low,0.347710694,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,546.0,30.333333333,0.0,0.0,1.625e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0058745704,606441000.0,6907.0,52493200000.0,53099641000.0,0.0008599048,7.5108e-06,Very Low,263409.7,0.00995124,75629.424,339039.124,28.8752126234,Relatively High,30.3091204383,Relatively High,1.0,0.03125,606441000.0,6907.0,52493200000.0,4986834.924185979,53104627834.92419,1.80224e-05,2.1e-08,0.0002275779,Very Low,341.5466238236,4.5394e-06,34.4992777558,35.4654269344,411.5113285137,4.7806732077,Very Low,4.745639852,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,606441000.0,6907.0,52493200000.0,4986834.924185979,53104627834.92419,2.55348e-05,3.276e-07,0.0002460797,Very Low,154.8532313496,2.263e-05,171.9879349193,12.2715882373,339.1127545062,2.8318552857,Very Low,3.5818854928,Very Low,0.0,0.01489,606441000.0,6907.0,52493200000.0,53099641000.0,5.8883e-06,1.627e-06,Relatively Low,53.1707922538,0.0001673292,1271.701837996,1324.8726302498,14.9746574859,Relatively Low,11.5056344625,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,107.0,4.458333333,42656810.46717848,478.2321074611,3634564016.7041287,1051.9819381299,3677221879.153245,3.05947e-05,2.7267e-06,0.0042466231,Very Low,5818.4500156325,0.0058137018,44184.1333216547,19.9170281115,50022.5003653988,16.6389480361,Relatively Moderate,14.5471523811,Relatively Moderate,1.0,0.03125,606441000.0,6907.0,52493200000.0,4986834.924185979,53104627834.92419,5.132e-07,8.35e-08,1.33875e-05,Very Low,9.725189605,1.80138e-05,136.9049019069,2.0862962253,148.7163877373,5.1123960729,Very Low,5.4383270008,Very Low,0.0,0.0005655006,606441000.0,6907.0,52493200000.0,4986834.924185982,53104627834.92419,0.0006786466,4.525e-07,0.0001595486,Very Low,232.7369430918,1.7674e-06,13.4323833739,0.4499362609,246.6192627266,4.4677918235,Very Low,4.9244889733,Very Low,4.0,0.018268176,67033876.95772268,771.7073878955,5864976148.006127,5932010024.96385,0.0007732141,3.66e-08,Very Low,946.867721006,5.165e-07,3.9256132198,950.7933342258,10.5183540477,Relatively Low,8.6186622138,Relatively Low,1.0,0.003531,606440788.3682716,6906.9980871584,52493185462.40396,53099626250.77223,7e-09,4.0104e-06,Very Low,0.0150486413,9.78075e-05,743.3368981321,743.3519467734,10.4637974095,Relatively Low,9.7287461836,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,8.727e-07,1.40751e-05,True,1.09028e-05 +14,T15003010201,Hawaii,HI,15,Honolulu,County,3,15003,10201,15003010201,5882,557874000.0,2011289.800396436,25.5816853094,17.5102524699,Relatively Low,60.4352548152,60.1226993865,18.0813496455,Relatively Low,56.9034493188,68.4049079755,297546.2422935,249181.3591556492,0.0063307538,48113.7288361653,251.1543016855,30.9468600579,Relatively Low,40.5985828797,41.5954415954,-0.592,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,135837044.05719995,1432.211383116,10884806511.681526,11020643555.738728,7.16225e-05,6.5e-09,Very Low,680.7471428573,6.562e-07,4.9869103498,685.7340532072,2.9066433749,Very Low,2.8141353282,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.00294104,557874000.0,5882.0,44703200000.0,45261074000.0,0.0167507621,0.0001397988,Very Low,171686.6,0.00573264,43568.064,215254.664,24.8175806479,Relatively High,27.1021914971,Relatively Moderate,1.0,0.03125,557874000.0,5882.0,44703200000.0,2011289.800396436,45263085289.8004,1.80224e-05,2.1e-08,0.0002275779,Very Low,314.1937652945,3.8612e-06,29.3453308436,14.303912711,357.8430088491,4.5630928384,Very Low,4.7126137782,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0144927536,557874000.0,5882.0,44703200000.0,2011289.800396436,45263085289.8004,2.55348e-05,3.276e-07,0.0002460797,Very Low,206.4518351676,2.793e-05,212.2679644878,7.1730084535,425.8928081089,3.0553182212,Very Low,4.020628225,Very Low,0.0,0.01489,557874000.0,5882.0,44703200000.0,45261074000.0,5.8883e-06,2.64e-07,Very Low,48.9125942306,2.31219e-05,175.726491072,224.6390853026,8.2882077573,Very Low,6.6253851293,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0,6.375,136393741.7226258,1377.3125391358,10467575297.432064,63035.3285035604,10604032074.483196,6.78921e-05,5.85e-08,0.0005670888,Very Low,59032.8473920028,0.0005136831,3903.9915132622,227.8847583929,63164.7236636579,17.9843853774,Relatively Moderate,16.3585402916,Relatively Moderate,1.0,0.03125,557874000.0,5882.0,44703200000.0,2011289.800396436,45263085289.8004,2.273e-07,1.163e-07,2.19536e-05,Very Low,3.9619053212,2.13858e-05,162.5320803577,1.379846317,167.8738319958,5.3231154392,Very Low,5.8911968528,Very Low,0.0,0.0006143702,557874000.0,5882.0,44703200000.0,2011289.800396436,45263085289.8004,0.0014208892,9.474e-07,0.0003340484,Very Low,486.9972150472,3.4236e-06,26.0196966141,0.4127758112,513.4296874725,5.7048503468,Very Low,6.5422388715,Very Low,6.0,0.027402265,391320912.7946821,4049.3333832863,30774933712.975822,31166254625.77051,0.001559314,3.65e-08,Very Low,16720.647305728,4.052e-06,30.794849178,16751.442154906,27.3696856628,Relatively High,23.3323622044,Relatively High,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.01e-07,0.0001248723,True,0.0001089388 +15,T15007040604,Hawaii,HI,15,Kauai,County,7,15007,40604,15007040604,3139,376167000.0,807532.1623493504,8.3880250232,14.2765841171,Relatively Low,42.8710870372,30.6748466258,13.8830970216,Relatively Low,32.6111164575,22.0858895706,134685.5527553962,77709.9447390012,0.0074864082,56896.7026370244,78.9053793707,33.569475317,Relatively Moderate,69.2104615216,67.8062678063,1.048,52.509198,Relatively Low,23.5125676106,100.0,2.6254599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,21860058.46409384,182.415585415,1386358449.1537223,1408218507.6178162,9.083e-07,0.0,Very Low,1.3892481407,4e-10,0.0030759352,1.3923240759,0.3680611303,Very Low,0.3784012134,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,119.0,6.611111111,0.0,0.0,0.0030589604,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0004927213,376167000.0,3139.0,23856400000.0,24232567000.0,0.0167507621,0.0001397988,Very Low,19693.2,0.00021504,1634.304,21327.504,11.4838786799,Relatively Low,13.3171993296,Relatively Low,0.0,0.0,376167000.0,3139.0,23856400000.0,807532.1623493504,24233374532.16235,1.80224e-05,7.6e-08,0.0002275779,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,2.0,0.0289855072,376166995.48792046,3138.9999875522,23856399905.396767,807532.1623493504,24233374433.04704,2.55348e-05,3.276e-07,0.0002460797,Very Low,278.415436274,2.98104e-05,226.5587004029,5.7599208486,510.7340575256,3.2460456341,Very Low,4.5359830678,Very Low,0.0,0.01489,376167000.0,3139.0,23856400000.0,24232567000.0,5.8883e-06,2.8944e-06,Relatively Low,32.9811101323,0.0001352847,1028.1638443146,1061.1449544468,13.9066895378,Relatively Low,11.8046630662,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,51663594.44358358,101.8023609365,773697943.117316,2833.2124537414,825364370.7733533,0.000180437,1.14831e-05,0.0042466231,Very Low,55155.3144331424,0.0069166132,52566.2605523137,71.1868804704,107792.7618659264,21.4915266456,Relatively Moderate,20.7584800543,Relatively High,1.0,0.03125,376167000.0,3139.0,23856400000.0,807532.1623493504,24233374532.16235,3.2387e-06,1.8297e-06,7.27233e-05,Very Low,38.0714962911,0.0001794807,1364.0534395736,1.8351991633,1403.960135028,10.8049594658,Very Low,12.6981405265,Relatively Low,0.0,0.0001499326,376167000.0,3139.0,23856400000.0,807532.1623493504,24233374532.16235,0.0043344678,2.8901e-06,0.0010190254,Very Low,244.4626335188,1.3602e-06,10.3373675981,0.1233788883,254.9233800052,4.517385498,Very Low,5.5009638623,Very Low,4.0,0.018268176,79552220.59858328,124.6270280907,947165413.4890952,1026717634.0876783,0.001559314,3.8734e-06,Relatively Low,2266.1103815019,8.8186e-06,67.0216568862,2333.1320383881,14.1872704626,Relatively Moderate,12.8430178115,Relatively Moderate,0.0,0.0,0.0,0.0,0.0,0.0,0.000541107,3.7371e-06,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,2.3137e-06,9.77117e-05,True,0.0001482071 +16,T15009030303,Hawaii,HI,15,Maui,County,9,15009,30303,15009030303,3567,1129413000.0,197696.7639710142,19.7369018049,25.6493645079,Relatively High,88.693823121,86.8098159509,26.4505931648,Relatively Moderate,88.1315387894,88.9570552147,931468.5240622706,861544.7090485197,0.0092002397,69921.8217850408,1.9932287101,31.2283114516,Relatively Low,43.6448444724,45.0142450142,-0.416,51.8016,Relatively Low,16.9583200764,80.0,2.59008,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,100790585.95376156,318.3246696267,2419267489.1627007,2520058075.116462,1.80303e-05,2e-10,Very Low,127.1574129927,4.2e-09,0.0319497717,127.1893627645,1.6576395812,Very Low,1.6070109389,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1239.0,68.833333333,0.0,0.0,1.625e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.006923474,1129413000.0,3567.0,27109200000.0,28238613000.0,0.0008599048,7.5108e-06,Very Low,848650.0,0.00883652,67157.552,915807.552,40.2139430552,Very High,43.9741165216,Very High,1.0,0.03125,1129413000.0,3567.0,27109200000.0,197696.7639710143,28238810696.76397,1.80224e-05,2.1e-08,0.0002275779,Very Low,636.0836372416,2.3443e-06,17.8165518684,1.4059819995,655.3061711094,5.5826861321,Very Low,5.7732618037,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,1129413000.0,3567.0,27109200000.0,197696.7639710143,28238810696.76397,2.55348e-05,3.276e-07,0.0002460797,Very Low,288.3928569774,1.16869e-05,88.8201771908,0.4864915964,377.6995257646,2.935430672,Very Low,3.8679850902,Very Low,0.0,0.01489,1129413000.0,3567.0,27109200000.0,28238613000.0,5.8883e-06,1.627e-06,Relatively Low,99.0232916173,8.64142e-05,656.748292476,755.7715840933,12.4192596738,Relatively Low,9.94080842,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,107.0,4.458333333,45816805.85820674,16.6469757394,126517015.61972572,0.0,172333821.47793248,3.05947e-05,2.7267e-06,0.0042466231,Very Low,6249.4779108493,0.0002023715,1538.0234492799,0.0,7787.5013601292,8.9509702135,Relatively Low,8.1525703711,Relatively Low,1.0,0.03125,1129413000.0,3567.0,27109200000.0,197696.7639710143,28238810696.76397,5.132e-07,8.35e-08,1.33875e-05,Very Low,18.1118287968,9.3029e-06,70.7021550749,0.0827085754,88.8966924471,4.3065889072,Very Low,4.7725068917,Very Low,0.0,0.0002380802,1129413000.0,3567.0,27109200000.0,197696.7639710142,28238810696.76397,0.0016308791,1.0874e-06,0.0003834167,Very Low,438.5285864888,9.235e-07,7.0183510621,0.0180465388,445.5649840897,5.4415290045,Very Low,6.2485052977,Very Low,4.0,0.018268176,356660523.69661236,240.8813720156,1830698427.3183384,2187358951.0149508,0.0007732141,3.66e-08,Relatively Low,5037.9054975204,1.612e-07,1.2253441048,5039.1308416252,18.3388016795,Relatively Moderate,15.6543612096,Relatively Moderate,1.0,0.003531,1129412989.0734086,3566.9999767517,27109199823.312626,28238612812.38603,7e-09,4.0104e-06,Very Low,0.0280260353,5.0511e-05,383.8835142123,383.9115402475,8.395274174,Very Low,8.1315765739,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,8.78e-08,4.8854e-06,True,6.9565e-06 +17,T15009030403,Hawaii,HI,15,Maui,County,9,15009,30403,15009030403,3269,383672000.0,401871.6484401426,7.3245313886,17.0102151832,Relatively Low,57.9029131553,53.9877300613,18.443733489,Relatively Low,58.678288126,69.6319018405,315797.3279419072,249358.1267817433,0.008741447,66434.9970379305,4.2041222335,29.7011178098,Relatively Low,28.279484584,31.6239316239,-1.371,51.8016,Relatively Low,16.9583200764,80.0,2.59008,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0,0.0,0.0,0.0,0.0,4.78451e-05,4.8e-09,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,42.0,2.333333333,401871.6484401426,401871.6484401426,1.625e-07,Very Low,0.1523507661,0.1523507661,0.1451047583,Very Low,0.134040364,Very Low,,0.0064465741,383672000.0,3269.0,24844400000.0,25228072000.0,0.0008599048,7.5108e-06,Very Low,248855.3,0.00859373,65312.348,314167.648,28.1511239294,Relatively High,29.2779385716,Relatively High,1.0,0.03125,383672000.0,3269.0,24844400000.0,401871.6484401426,25228473871.64844,1.80224e-05,2.1e-08,0.0002275779,Very Low,216.0834710312,2.1484e-06,16.3280930916,2.8580351669,235.2695992897,3.9678056982,Very Low,3.9025882218,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,383672000.0,3269.0,24844400000.0,401871.6484401426,25228473871.64844,2.55348e-05,3.276e-07,0.0002460797,Very Low,97.9697101257,1.07105e-05,81.3998203636,0.9889245321,180.3584550214,2.2943967393,Very Low,2.8754496849,Very Low,0.0,0.01489,383672000.0,3269.0,24844400000.0,25228072000.0,5.8883e-06,1.627e-06,Relatively Low,33.6391243428,7.91949e-05,601.881179732,635.5203040748,11.7221875304,Very Low,8.9239875048,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.05947e-05,2.7267e-06,0.0042466231,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.03125,383672000.0,3269.0,24844400000.0,401871.6484401426,25228473871.64844,5.132e-07,8.35e-08,1.33875e-05,Very Low,6.1527550844,8.5257e-06,64.7954429324,0.1681273425,71.1163253592,3.9978637221,Very Low,4.2137175891,Very Low,0.0,7.05247e-05,383672000.0,3269.0,24844400000.0,401871.6484401426,25228473871.64844,0.005505591,3.6709e-06,0.0012943543,Very Low,148.9722004575,8.463e-07,6.43201279,0.0366844259,155.4408976735,3.830649025,Very Low,4.1833575346,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0007732141,3.66e-08,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.003531,383671965.4931728,3268.9998233806,24844398657.692806,25228070623.18598,7e-09,4.0104e-06,Very Low,0.0095207016,4.62911e-05,351.8124890209,351.8220097225,8.1545280316,Very Low,7.5121282608,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,3.1e-08,1.03042e-05,True,1.3105e-06 +18,T15009030404,Hawaii,HI,15,Maui,County,9,15009,30404,15009030404,5609,567723000.0,5651711.187266577,10.5235860733,21.7626773065,Relatively Moderate,78.1547725429,80.981595092,21.7984897602,Relatively Moderate,74.1005512861,82.5153374233,521364.1375527395,400193.1732488482,0.0159357687,121111.8419998061,59.1223040851,32.1510242592,Relatively Moderate,54.1008945914,58.1196581197,0.161,51.8016,Relatively Low,16.9583200764,80.0,2.59008,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0,0.0,0.0,0.0,0.0,4.78451e-05,4.8e-09,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,42.0,2.333333333,5651711.187266577,5651711.187266577,1.625e-07,Very Low,2.1425809272,2.1425809272,0.3502508394,Very Low,0.3502314548,Very Low,,0.006220697,567723000.0,5609.0,42628400000.0,43196123000.0,0.0008599048,7.5108e-06,Very Low,399450.1,0.01568232,119185.632,518635.732,33.2707606493,Relatively High,37.4566993659,Relatively High,1.0,0.03125,567723000.0,5609.0,42628400000.0,5651711.187266581,43201774711.18726,1.80224e-05,2.1e-08,0.0002275779,Very Low,319.7407067123,3.6863e-06,28.0159908693,40.1939011846,387.9505987662,4.6876365807,Very Low,4.9908933102,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,567723000.0,5609.0,42628400000.0,5651711.187266581,43201774711.18726,2.55348e-05,3.276e-07,0.0002460797,Very Low,144.966684412,1.83772e-05,139.667051826,13.9077137264,298.5414499644,2.7140919728,Very Low,3.6820004321,Very Low,0.0,0.01489,567723000.0,5609.0,42628400000.0,43196123000.0,5.8883e-06,1.627e-06,Relatively Low,49.7761228061,0.0001358838,1032.716897252,1082.4930200581,13.9993290959,Relatively Low,11.536645038,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,3.05947e-05,2.7267e-06,0.0042466231,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.03125,567723000.0,5609.0,42628400000.0,5651711.187266581,43201774711.18726,5.132e-07,8.35e-08,1.33875e-05,Very Low,9.1042884934,1.46286e-05,111.1770080794,2.3644543876,122.6457509603,4.794268861,Very Low,5.4699309407,Very Low,0.0,0.0001014667,567723000.0,5609.0,42628400000.0,5651711.187266577,43201774711.18726,0.0038099356,2.5403e-06,0.0008957088,Very Low,219.4713585555,1.4458e-06,10.9878736031,0.5136538593,230.9728860179,4.3712360994,Very Low,5.1676654102,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0007732141,3.66e-08,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.003531,567722906.214587,5608.9992323313,42628394165.71775,43196117071.932335,7e-09,4.0104e-06,Very Low,0.014087869,7.9427e-05,603.6451781764,603.6592660453,9.7623667417,Very Low,9.7351198346,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,3.1e-08,1.0461e-05,True,1.3088e-06 +19,T15001021601,Hawaii,HI,15,Hawaii,County,1,15001,21601,15001021601,7822,1094086000.0,566994.6079257398,6.8170806188,49.7951606355,Very High,99.744291233,99.6932515337,46.288812204,Very High,99.5738187217,99.6932515337,4992177.82561776,3805158.5707100113,0.1561792832,1186962.5526520708,56.7022556784,33.9564709833,Relatively Moderate,72.8134489645,70.3703703704,1.29,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,62060272.64025827,443.6903978226,3372047023.4515033,3434107296.091761,1.30436e-05,1e-10,Very Low,56.6406985726,4.1e-09,0.031505131,56.6722037036,1.266086014,Very Low,1.3616250452,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,98.0,5.444444444,0.0,0.0,5.41e-08,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0099989874,1094086000.0,7822.0,59447200000.0,60541286000.0,0.0008505842,1.16917e-05,Very Low,3343740.7,0.13792784,1048251.584,4391992.284,67.8155218284,Very High,82.2650123419,Very High,1.0,0.03125,1094086000.0,7822.0,59447200000.0,566994.6079257398,60541852994.60792,1.80224e-05,7.6e-08,0.0002275779,Very Low,616.1875260291,1.85843e-05,141.2407668887,4.0323584288,761.4606513466,5.8691825077,Very Low,6.7331958941,Relatively Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0144927536,1094086000.0,7822.0,59447200000.0,566994.6079257398,60541852994.60792,2.55348e-05,3.276e-07,0.0002460797,Very Low,404.8872371382,3.71419e-05,282.2781397865,2.0221139266,689.1874908512,3.5870338637,Very Low,5.2434126229,Very Low,0.0,0.01489,1094086000.0,7822.0,59447200000.0,60541286000.0,5.8883e-06,1.361e-06,Very Low,95.9259341201,0.0001585151,1204.714747688,1300.6406818081,14.8827995601,Relatively Low,13.2152755837,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,120948558.08203287,753.2226728277,5724492313.490836,19158.5575277741,5845460030.130397,0.0006245044,3.8327e-06,0.0003492485,Very Low,446903.0195826046,0.0170807736,129813.8797014064,39.5889891275,576756.4882731385,37.5896454739,Very High,37.9802893472,Very High,1.0,0.03125,1094086000.0,7822.0,59447200000.0,566994.6079257398,60541852994.60792,8.3601e-06,3.102e-07,0.0006212585,Very Low,285.8325276715,7.58359e-05,576.3528488228,11.0078186279,873.1931951221,9.2230592245,Very Low,11.3384513041,Very Low,0.0,7.99759e-05,1094086000.0,7822.0,59447200000.0,566994.6079257398,60541852994.60792,0.0047816194,3.1882e-06,0.0011241499,Very Low,418.3939264616,1.9945e-06,15.1578838311,0.0509755678,433.6027858605,5.3923898832,Very Low,6.8692131386,Very Low,19.0,0.086773839,218840398.9186238,746.6182267855,5674298523.5697565,5893138922.48838,0.0006654598,3.8734e-06,Very Low,12636.8292031895,0.0002509467,1907.1951510591,14544.0243542486,26.1104249456,Relatively High,24.7254344658,Relatively High,3.0,0.0200386,1094085980.3737593,7821.9998504835,59447198863.67453,60541284844.0483,7e-09,4.0043e-06,Very Low,0.1540742249,0.0006276471,4770.117907457,4770.2719816818,19.4448923018,Relatively Low,20.8934909442,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,2.221e-06,0.0001000049,True,0.0004101879 +20,T15001021013,Hawaii,HI,15,Hawaii,County,1,15001,21013,15001021013,4970,472410000.0,49059676.890542656,51.0843274312,34.2704008127,Relatively High,97.6615020828,91.717791411,31.7870290791,Relatively High,95.1456577627,92.3312883436,1616634.1715474543,1092599.9326310402,0.0687639329,522605.8900662626,1428.3488501514,34.0316312987,Relatively Moderate,73.4741334501,71.2250712251,1.337,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.067971012,11575814.750016397,121.7836186947,925555502.0800141,937131316.8300304,3.7564e-06,3e-10,Very Low,2.9556129381,2.4e-09,0.0180424519,2.97365539,0.473990958,Very Low,0.5108866985,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,5.41e-08,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0099996439,472410000.0,4970.0,37772000000.0,38244410000.0,0.0008505842,1.16917e-05,Very Low,1091887.0999999999,0.06816968,518089.568,1609976.6679999998,48.5342637441,Very High,59.0058028418,Very High,1.0,0.03125,472410000.0,4970.0,37772000000.0,49059676.89054267,38293469676.89054,1.80224e-05,7.6e-08,0.0002275779,Very Low,266.0605740053,1.18082e-05,89.742599263,348.9031445064,704.7063177748,5.7195849429,Very Low,6.5760993879,Relatively Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0130926272,472410000.0,4970.0,37772000000.0,49059676.89054267,38293469676.89054,2.55348e-05,3.276e-07,0.0002460797,Very Low,143.453420139,1.9751e-05,150.1073280265,123.7327500539,417.2934982194,3.0346146773,Very Low,4.4457223006,Very Low,0.0,0.01489,472410000.0,4970.0,37772000000.0,38244410000.0,5.8883e-06,1.361e-06,Very Low,41.4193861705,0.0001007185,765.46053388,806.8799200505,12.6931230651,Relatively Low,11.295886,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,607.4849160695,0.0,0.0,0.0,607.4849160695,0.0006245044,3.8327e-06,0.0003492485,Very Low,2.2446472091,0.0,0.0,0.0,2.2446472091,0.5912712527,Very Low,0.5987382758,Very Low,1.0,0.03125,472410000.0,4970.0,37772000000.0,49059676.89054267,38293469676.89054,8.3601e-06,3.102e-07,0.0006212585,Very Low,123.4182179437,4.81852e-05,366.2073202052,952.4606012164,1442.0861393653,10.9018938929,Relatively Low,13.432007056,Relatively Low,0.0,0.00037632,472410000.0,4970.0,37772000000.0,49059676.890542656,38293469676.89054,0.0007493188,4.996e-07,0.0001761635,Very Low,133.2119011897,9.344e-07,7.1017795182,3.2523543748,143.5660350827,3.7305067727,Very Low,4.7624656829,Very Low,0.0,0.0,6173149.858796488,49.0,372400000.0,378573149.8587965,0.0006654598,3.8734e-06,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,4.0,0.0207448,472409670.70662737,4969.9964727827,37771973193.14844,38244382863.85506,7e-09,4.0043e-06,Very Low,0.0688714448,0.0004128532,3137.6844629178,3137.7533343626,16.9107977252,Relatively Low,18.2108316966,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,3.65e-08,2.91145e-05,True,1.5088e-06 +21,T15001021702,Hawaii,HI,15,Hawaii,County,1,15001,21702,15001021702,9540,1290871000.0,1847307.132536592,202.2053672226,41.6514079785,Very High,99.2906143884,97.5460122699,43.0017491363,Very High,99.3098612849,99.3865030675,4002398.255892564,3010194.054478895,0.1303958532,991008.4843458552,1195.7170678134,30.5742567924,Relatively Low,36.7056055591,37.8917378917,-0.825,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.002,2781293.4652375295,20.5547569497,156216152.8174247,158997446.28266224,0.0001485004,1.32e-08,Very Low,0.8260461896,5e-10,0.0041116194,0.830157809,0.3097847707,Very Low,0.2999768522,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1904.0,105.777777777,0.0,0.0,5.41e-08,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0099727839,1290871000.0,9540.0,72504000000.0,73794871000.0,0.0008505842,1.16917e-05,Very Low,2069190.1,0.09295506,706458.4560000001,2775648.556,58.1964835648,Very High,63.5647236624,Very High,1.0,0.03125,1290871000.0,9540.0,72504000000.0,1847307.132536592,73796718307.13252,1.80224e-05,7.6e-08,0.0002275779,Very Low,727.0165306165,2.26661e-05,172.2624541197,13.1376989875,912.4166837238,6.2338957004,Very Low,6.4392683964,Relatively Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,1290871000.0,9540.0,72504000000.0,1847307.132536592,73796718307.13252,2.55348e-05,3.276e-07,0.0002460797,Very Low,329.6207637766,3.12567e-05,237.5510205776,4.5458477818,571.7176321361,3.3704162765,Very Low,4.4360400879,Very Low,0.0,0.01489,1290871000.0,9540.0,72504000000.0,73794871000.0,5.8883e-06,1.361e-06,Very Low,113.1794086604,0.0001933309,1469.31458616,1582.4939948204,15.8883773218,Relatively Low,12.7029473048,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,254174294.53165004,1597.5991511029,12141753548.38204,552684.3798532827,12396480527.293545,0.0006245044,3.8327e-06,0.0003492485,Very Low,939170.020112434,0.0362286352,275337.6278939629,1142.059670892,1215649.7076772891,48.1955436376,Very High,43.8460306298,Very High,1.0,0.03125,1290871000.0,9540.0,72504000000.0,1847307.132536592,73796718307.13252,8.3601e-06,3.102e-07,0.0006212585,Very Low,337.2430694017,9.24923e-05,702.9412142414,35.8642244223,1076.0485080654,9.8881603341,Very Low,10.945298289,Very Low,0.0,0.0012659477,1290871000.0,9540.0,72504000000.0,1847307.132536592,73796718307.13252,0.0001993923,1.329e-07,4.68768e-05,Very Low,325.8419546829,1.6056e-06,12.2027969479,0.1096257297,338.1543773606,4.9635103885,Very Low,5.6929552963,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0006654598,3.8734e-06,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,5.0,0.0209036275,1283193020.0345883,9471.8345321507,71985942444.34518,73269135464.37978,7e-09,4.0043e-06,Very Low,0.2065931336,0.0008708058,6618.124268226,6618.3308613596,21.6873915176,Relatively Low,20.9819644591,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,3.8333e-06,0.0006472757,True,0.0007289681 +22,T15001021704,Hawaii,HI,15,Hawaii,County,1,15001,21704,15001021704,8087,1437523000.0,0.0,141.2921284365,37.4934682651,Very High,98.6279712396,95.0920245399,40.54780701,Very High,99.0060352768,97.2392638037,3355552.5856007547,2636098.9296592614,0.0946649547,719453.6559414929,0.0,29.1877888475,Relatively Low,23.8708177167,28.2051282051,-1.692,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,136722744.0023373,769.1541844874,5845571802.104352,5982294546.106689,5.2e-08,0.0,Very Low,0.4976182338,1e-10,0.0008613326,0.4984795664,0.2613498758,Very Low,0.2415990737,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1589.0,88.277777777,0.0,0.0,5.41e-08,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0099749521,1437523000.0,8087.0,61461200000.0,62898723000.0,0.0008505842,1.16917e-05,Very Low,2606385.9000000004,0.09327958,708924.808,3315310.708,61.7471139969,Very High,64.3845063537,Very High,1.0,0.03125,1437523000.0,8087.0,61461200000.0,0.0,62898723000.0,1.80224e-05,7.6e-08,0.0002275779,Very Low,809.610707915,1.92139e-05,146.0258350586,0.0,955.6365429737,6.3308113948,Relatively Low,6.2428321439,Relatively Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,1437523000.0,8087.0,61461200000.0,0.0,62898723000.0,2.55348e-05,3.276e-07,0.0002460797,Very Low,367.0679945606,2.64961e-05,201.3705559131,0.0,568.4385504738,3.3639602531,Very Low,4.2267645992,Very Low,0.0,0.01489,1437523000.0,8087.0,61461200000.0,62898723000.0,5.8883e-06,1.361e-06,Very Low,126.0373833448,0.0001638854,1245.529041748,1371.5664250928,15.1485525076,Relatively Low,11.5622238963,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,4275225.009284457,11.3075413498,85937314.2587605,0.0,90212539.26804496,0.0006245044,3.8327e-06,0.0003492485,Very Low,15796.8891596742,0.0002564203,1948.7939827883,0.0,17745.6831424625,11.7788160915,Relatively Low,10.229875008,Relatively Low,1.0,0.03125,1437523000.0,8087.0,61461200000.0,0.0,62898723000.0,8.3601e-06,3.102e-07,0.0006212585,Very Low,375.5562475673,7.84051e-05,595.8789936627,0.0,971.43524123,9.5567340721,Very Low,10.0987330053,Very Low,0.0,0.0009691875,1437523000.0,8087.0,61461200000.0,0.0,62898723000.0,0.0002586645,1.725e-07,0.0314801129,Very Low,360.3789426695,1.3518e-06,10.2735112261,0.0,370.6524538956,5.117677217,Very Low,5.6035862783,Very Low,35.0,0.159846547,111653589.95093364,124.2335248173,944174788.6111234,1055828378.5620573,0.0006654598,3.8734e-06,Very Low,11876.7538770515,7.69195e-05,584.5878715456,12461.3417485972,24.799371691,Relatively High,20.1859557314,Relatively Moderate,4.0,0.022325698,1436641529.8863049,8083.20001332,61432320101.23161,62868961631.11791,7e-09,4.0043e-06,Very Low,0.2377282447,0.0007626825,5796.3872882176,5796.6250164624,20.7499106293,Relatively Low,19.1646258394,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,6.75e-08,0.0,False,1.24075e-05 +23,T15001021902,Hawaii,HI,15,Hawaii,County,1,15001,21902,15001021902,3925,399581000.0,2581801.8541268115,115.3501535902,27.002929534,Relatively High,91.1271807421,88.3435582822,24.1028365867,Relatively Moderate,82.2268659179,86.5030674847,704800.8282911462,512501.7453728801,0.0251794315,191363.6796525504,935.4032657156,35.3637279516,Relatively High,83.5376029327,82.905982906,2.17,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.067971012,22856965.639919005,224.5191591609,1706345609.62304,1729202575.262959,8.8e-09,0.0,Very Low,0.0136155178,0.0,7.29943e-05,0.0136885121,0.0788482259,Very Low,0.0883124103,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,224.0,12.444444444,0.0,0.0,5.41e-08,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.009884127,399581000.0,3925.0,29830000000.0,30229581000.0,0.0008505842,1.16917e-05,Very Low,422346.0,0.0199002,151241.52,573587.52,34.4066045743,Relatively High,43.4673703843,Very High,1.0,0.03125,399581000.0,3925.0,29830000000.0,2581801.854126812,30232162801.85412,1.80224e-05,7.6e-08,0.0002275779,Very Low,225.0433949783,9.3254e-06,70.8731794986,18.3612865492,314.2778610261,4.3698485829,Very Low,5.2209017008,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,399581000.0,3925.0,29830000000.0,2581801.854126812,30232162801.85412,2.55348e-05,3.276e-07,0.0002460797,Very Low,102.0320345028,1.28598e-05,97.734565594,6.3532901622,206.119890259,2.3988125677,Very Low,3.651828438,Very Low,0.0,0.01489,399581000.0,3925.0,29830000000.0,30229581000.0,5.8883e-06,1.361e-06,Very Low,35.0339741864,7.95413e-05,604.5136007,639.5475748864,11.7468964466,Very Low,10.8630111137,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,24231739.68756725,212.4539917618,1614650337.3899603,416363.7036091328,1639298440.7811368,0.0006245044,3.8327e-06,0.0003492485,Very Low,89535.8969783547,0.0048178031,36615.3037124016,860.3684338636,127011.5691246199,22.6996151325,Relatively High,23.8860328609,Relatively High,1.0,0.03125,399581000.0,3925.0,29830000000.0,2581801.854126812,30232162801.85412,8.3601e-06,3.102e-07,0.0006212585,Very Low,104.3914712733,3.80537e-05,289.2079943275,50.1239450006,443.7234106013,7.3599635589,Very Low,9.4230153392,Very Low,0.0,0.0010265904,399581000.0,3925.0,29830000000.0,2581801.8541268115,30232162801.85412,0.0003150456,2.101e-07,7.40666e-05,Very Low,129.2335939336,8.464e-07,6.432756402,0.1963101401,135.8626604756,3.6625534291,Very Low,4.8587514569,Very Low,4.0,0.018268176,1977759.7407743428,10.380779771,78893926.25924085,80871686.0000152,0.0006654598,3.8734e-06,Very Low,24.0431034706,7.345e-07,5.5825535655,29.6256570361,3.3098507134,Very Low,3.2641784236,Relatively Low,4.0,0.0218268636,398364800.99124306,3913.137707217,29739846574.84885,30138211375.840096,7e-09,4.0043e-06,Very Low,0.0572066629,0.0003200673,2432.5112170668,2432.5684237297,15.5350569596,Relatively Low,17.3841639553,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.2633e-06,0.0003623064,True,0.0002255654 +24,T15003007502,Hawaii,HI,15,Honolulu,County,3,15003,7502,15003007502,1376,196711000.0,0.0,7.7618787766,7.997483957,Very Low,5.4441221353,5.8282208589,13.4756112773,Relatively Low,29.9577943057,19.9386503067,123170.6861596142,117626.135823795,0.0007295461,5544.5503358193,0.0,18.9659859594,Very Low,1.2256175964,10.5413105413,-8.084,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0,0.0,0.0,0.0,0.0,4.78451e-05,4.8e-09,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0028437331,196711000.0,1376.0,10457600000.0,10654311000.0,0.0167507621,0.0001397988,Very Low,117052.4,0.00071256,5415.456,122467.856,20.5643959253,Relatively Moderate,13.7632106877,Relatively Low,1.0,0.03125,196711000.0,1376.0,10457600000.0,0.0,10654311000.0,1.80224e-05,2.1e-08,0.0002275779,Very Low,110.7873278999,9.033e-07,6.8648716832,0.0,117.6521995832,3.1494047356,Very Low,1.9933788852,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,196711000.0,1376.0,10457600000.0,0.0,10654311000.0,2.55348e-05,3.276e-07,0.0002460797,Very Low,50.2296744317,4.5083e-06,34.263124142,0.0,84.4927985737,1.7819530051,Very Low,1.4371183905,Very Low,0.0,0.01489,196711000.0,1376.0,10457600000.0,10654311000.0,5.8883e-06,2.64e-07,Very Low,17.2469864587,5.409e-06,41.108407296,58.3553937547,5.2884189904,Very Low,2.590807762,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0,6.375,334545.9186602516,0.0,0.0,0.0,334545.9186602516,6.78921e-05,5.85e-08,0.0005670888,Very Low,144.7954863065,0.0,0.0,0.0,144.7954863065,2.3713140511,Very Low,1.3218946842,Very Low,1.0,0.03125,196711000.0,1376.0,10457600000.0,0.0,10654311000.0,2.273e-07,1.163e-07,2.19536e-05,Very Low,1.3970006805,5.0029e-06,38.0217855444,0.0,39.4187862249,3.2840213033,Very Low,2.2274217169,Very Low,0.0,0.0002439162,196711000.0,1376.0,10457600000.0,0.0,10654311000.0,0.0051953759,3.4641e-06,0.0314801129,Very Low,249.2793480177,1.1627e-06,8.8361471536,0.0,258.1154951713,4.5361626976,Very Low,3.1876813425,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.001559314,3.65e-08,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.23e-08,0.0,False,2.9166e-06 +25,T15001020202,Hawaii,HI,15,Hawaii,County,1,15001,20202,15001020202,2568,183300000.0,19450471.041291997,244.9265376883,26.8331711535,Relatively High,90.8054826159,87.7300613497,25.4228346534,Relatively Moderate,85.7586714142,88.3435582822,827053.979074397,517884.4786890347,0.040605854,308604.4903297234,565.0100556387,33.316808725,Relatively Moderate,66.7428118075,65.2421652422,0.89,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.067971012,530773.6291478402,7.4360429877,56513926.70677888,57044700.33592673,2.91625e-05,1.8e-09,Very Low,1.0521023568,9e-10,0.006837104,1.0589394608,0.3359672067,Very Low,0.35451291,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,5.41e-08,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0099986349,183300000.0,2568.0,19516800000.0,19700100000.0,0.0008505842,1.16917e-05,Very Low,510273.9,0.03978193,302342.668,812616.568,38.6429680605,Very High,45.9935976887,Very High,1.0,0.03125,183300000.0,2568.0,19516800000.0,19450471.041291986,19719550471.041286,1.80224e-05,7.6e-08,0.0002275779,Very Low,103.2342736504,6.1013e-06,46.3700190961,138.3280718214,287.9323645679,4.2441620115,Very Low,4.7772331358,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0085026261,183300000.0,2568.0,19516800000.0,19450471.041291986,19719550471.041286,2.55348e-05,3.276e-07,0.0002460797,Very Low,47.5251579324,8.8161e-06,67.0024084263,47.8636600709,162.3912264296,2.2155277901,Very Low,3.1775808335,Very Low,0.0,0.01489,183300000.0,2568.0,19516800000.0,19700100000.0,5.8883e-06,1.361e-06,Very Low,16.0711532039,5.20413e-05,395.513611872,411.5847650759,10.1418835219,Very Low,8.8359053801,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,1988278.7391910965,22.8556851439,173703207.09342223,0.0,175691485.83261335,0.0006245044,3.8327e-06,0.0003492485,Very Low,7346.6586655273,0.0005182966,3939.0545037912,0.0,11285.7131693184,10.1293226006,Relatively Low,10.0417935626,Relatively Low,1.0,0.03125,183300000.0,2568.0,19516800000.0,19450471.041291986,19719550471.041286,8.3601e-06,3.102e-07,0.0006212585,Very Low,47.8875539237,2.48973e-05,189.2193960336,377.6178017498,614.7247517071,8.2047455424,Very Low,9.8965701001,Very Low,0.0,0.0015977717,183300000.0,2568.0,19516800000.0,19450471.041291997,19719550471.041286,0.0001643146,1.096e-07,3.86301e-05,Very Low,48.1230596103,4.495e-07,3.4164308742,1.2005219967,52.7400124812,2.6717593631,Very Low,3.3389626051,Very Low,3.0,0.013701132,0.0,0.0,0.0,0.0,0.0006654598,3.8734e-06,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,4.0,0.0207448,183299817.8147132,2567.9933134509,19516749182.2268,19700049000.04151,7e-09,4.0043e-06,Very Low,0.0267228299,0.0002133209,1621.239122526,1621.265845356,13.5698768441,Relatively Low,14.3061317429,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,2.378e-07,2.90487e-05,True,4.15197e-05 +26,T15001020300,Hawaii,HI,15,Hawaii,County,1,15001,20300,15001020300,3934,677850000.0,103350.899803428,1.2709697914,40.5458083398,Very High,99.1517617784,96.9325153374,36.0264444526,Relatively High,97.9543298643,94.7852760736,2353564.7149971174,2038255.8316858609,0.04148735,315303.8597053038,5.0236059534,35.5252426719,Relatively High,84.6483188794,84.0455840456,2.271,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.067971012,38504874.710603446,223.4685802338,1698361209.7772455,1736866084.4878492,1.61443e-05,1e-09,Very Low,42.2530795804,1.5e-08,0.1140789343,42.3671585148,1.1490783013,Very Low,1.2928806869,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,5.41e-08,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0099965667,677850000.0,3934.0,29898400000.0,30576250000.0,0.0008505842,1.16917e-05,Very Low,1823510.7,0.0372599,283175.24,2106685.94,53.0854109894,Very High,67.3714272457,Very High,1.0,0.03125,677850000.0,3934.0,29898400000.0,103350.899803428,30576353350.8998,1.80224e-05,7.6e-08,0.0002275779,Very Low,381.7640610691,9.3468e-06,71.0356912478,0.735012055,453.5347643718,4.9381618494,Very Low,5.9268435024,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,677850000.0,3934.0,29898400000.0,103350.899803428,30576353350.8998,2.55348e-05,3.276e-07,0.0002460797,Very Low,173.0873454636,1.28893e-05,97.9586703304,0.2543255804,271.3003413745,2.6288943199,Very Low,4.020371551,Very Low,0.0,0.01489,677850000.0,3934.0,29898400000.0,30576250000.0,5.8883e-06,1.361e-06,Very Low,59.4317032147,7.97237e-05,605.899746536,665.3314497507,11.9026831383,Very Low,11.0573477508,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,57842789.44656033,165.7998817432,1260079101.2480536,978.1387811597,1317922868.8333955,0.0006245044,3.8327e-06,0.0003492485,Very Low,213728.197133329,0.0037598314,28574.7185786544,2.0212130019,242304.9369249853,28.1530091221,Relatively High,29.759755919,Relatively High,1.0,0.03125,677850000.0,3934.0,29898400000.0,103350.899803428,30576353350.8998,8.3601e-06,3.102e-07,0.0006212585,Very Low,177.0898986754,3.81409e-05,289.8711464164,2.0064881467,468.9675332385,7.4969706224,Very Low,9.6422648288,Very Low,0.0,9.7837e-06,677850000.0,3934.0,29898400000.0,103350.899803428,30576353350.8998,0.0276254828,1.84197e-05,0.0064947002,Very Low,183.2096424429,7.09e-07,5.3881035599,0.0065671694,188.6043131722,4.0857125073,Very Low,5.4449646719,Very Low,0.0,0.0,199213148.09323543,676.7842904604,5143560607.498727,5342773755.591963,0.0006654598,3.8734e-06,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,4.0,0.0207448,677850000.0,3934.0,29898400000.0,30576250000.0,7e-09,4.0043e-06,Very Low,0.0988220855,0.0003267939,2483.6336896246,2483.7325117101,15.6432181718,Relatively Low,17.585149872,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,9.915e-07,1.23128e-05,True,0.0003168032 +27,T15003009507,Hawaii,HI,15,Honolulu,County,3,15003,9507,15003009507,2560,291260000.0,0.0,0.6777584315,10.37452179,Very Low,17.9491057067,10.4294478528,13.7534872042,Relatively Low,31.7642530142,21.472392638,130948.4674371914,125905.400600614,0.0006635614,5043.0668365775,0.0,24.1056722051,Very Low,3.4429458594,12.8205128205,-4.87,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0,0.0,0.0,0.0,0.0,4.78451e-05,4.8e-09,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0038371924,291260000.0,2560.0,19456000000.0,19747260000.0,0.0167507621,0.0001397988,Very Low,125352.3,0.00063244,4806.544,130158.844,20.9861680407,Relatively Moderate,17.8517488934,Relatively Moderate,1.0,0.03125,291260000.0,2560.0,19456000000.0,0.0,19747260000.0,1.80224e-05,2.1e-08,0.0002275779,Very Low,164.0371769964,1.6805e-06,12.7718542944,0.0,176.8090312908,3.6074191585,Very Low,2.9020293931,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,291260000.0,2560.0,19456000000.0,0.0,19747260000.0,2.55348e-05,3.276e-07,0.0002460797,Very Low,74.3725311496,8.3875e-06,63.745347241,0.0,138.1178783905,2.0991315083,Very Low,2.1516903399,Very Low,0.0,0.01489,291260000.0,2560.0,19456000000.0,19747260000.0,5.8883e-06,2.64e-07,Very Low,25.5367380369,1.00633e-05,76.48075776,102.0174957969,6.3707477239,Very Low,3.9668297631,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.78921e-05,5.85e-08,0.0005670888,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.03125,291260000.0,2560.0,19456000000.0,0.0,19747260000.0,2.273e-07,1.163e-07,2.19536e-05,Very Low,2.0684680481,9.3077e-06,70.738205664,0.0,72.8066737121,4.0292908096,Very Low,3.4735129238,Very Low,0.0,1.65662e-05,291260000.0,2560.0,19456000000.0,0.0,19747260000.0,0.0594988816,3.96718e-05,0.0314801129,Very Low,287.0856863831,1.6825e-06,12.7866716181,0.0,299.8723580012,4.768656889,Very Low,4.2594450047,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.001559314,3.65e-08,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.22e-08,0.0,False,1.899e-06 +28,T15009031502,Hawaii,HI,15,Maui,County,9,15009,31502,15009031502,5036,709032000.0,4590410.1368262,33.4481475347,20.8852252798,Relatively Moderate,74.9817841873,77.9141104294,24.198196878,Relatively Moderate,82.5403153741,86.8098159509,713199.375733464,567506.0158586083,0.019129296,145382.649682015,310.7101928407,27.79492428,Relatively Low,14.3120947665,19.3732193732,-2.563,51.8016,Relatively Low,16.9583200764,80.0,2.59008,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,23099293.95246688,164.0660003281,1246901602.4934509,1270000896.4459178,4.581e-05,2.2e-09,Very Low,74.0418791841,2.48e-08,0.1886672111,74.2305463952,1.3852688343,Very Low,1.1953078769,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,392.0,21.777777777,0.0,0.0,1.625e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0058748695,709032000.0,5036.0,38273600000.0,38982632000.0,0.0008599048,7.5108e-06,Very Low,550446.2,0.01581874,120222.424,670668.6240000001,36.2474880052,Very High,35.2789273681,Relatively High,1.0,0.03125,709032000.0,5036.0,38273600000.0,4590410.1368262,38987222410.136826,1.80224e-05,2.1e-08,0.0002275779,Very Low,399.3257147569,3.3097e-06,25.153954362,32.6461288135,457.1257979323,4.951160858,Very Low,4.5572417759,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,709032000.0,5036.0,38273600000.0,4590410.1368262,38987222410.136826,2.55348e-05,3.276e-07,0.0002460797,Very Low,181.0495931678,1.64999e-05,125.3990502756,11.2960673245,317.7447107678,2.7710803876,Very Low,3.2499679737,Very Low,0.0,0.01489,709032000.0,5036.0,38273600000.0,38982632000.0,5.8883e-06,1.627e-06,Relatively Low,62.1656404717,0.0001220023,927.217381808,989.3830222797,13.5858559669,Relatively Low,9.6789889819,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,107.0,4.458333333,49165319.45551353,253.3727385673,1925632813.1116757,13966.8999917194,1974812099.467181,3.05947e-05,2.7267e-06,0.0042466231,Very Low,6706.2199592869,0.0030801644,23409.2497895341,264.4333801592,30379.9031289802,14.0907095081,Relatively Moderate,11.4228454037,Relatively Low,1.0,0.03125,709032000.0,5036.0,38273600000.0,4590410.1368262,38987222410.136826,5.132e-07,8.35e-08,1.33875e-05,Very Low,11.3703899242,1.31341e-05,99.819470972,1.920447636,113.1103085322,4.6666541082,Very Low,4.6029446457,Very Low,0.0,0.000384431,709032000.0,5036.0,38273600000.0,4590410.1368262,38987222410.136826,0.0009982937,6.656e-07,0.000234697,Very Low,272.1088122904,1.2887e-06,9.7937574448,0.4141689076,282.3167386428,4.673721251,Very Low,4.7765928461,Very Low,5.0,0.022835221,529748701.1041623,3369.4402347956,25607745784.4464,26137494485.55056,0.0007732141,3.66e-08,Very Low,9353.516275116,2.8191e-06,21.4250892171,9374.9413643331,22.5549531321,Relatively Moderate,17.1365470909,Relatively Moderate,1.0,0.003531,709031990.6309193,5035.9999867482,38273599899.28609,38982631889.917,7e-09,4.0104e-06,Very Low,0.0175944103,7.1313e-05,541.9785211903,541.9961156007,9.4179537409,Very Low,8.1192033408,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,6.427e-07,6.76868e-05,True,1.08687e-05 +29,T15009031700,Hawaii,HI,15,Maui,County,9,15009,31700,15009031700,4503,555074000.0,1276731.153754402,122.8431385787,22.3560952843,Relatively Moderate,80.1344533194,82.2085889571,20.0761939648,Relatively Moderate,66.5571426607,77.9141104294,407292.1930305858,311299.9264943793,0.0118049895,89717.9200985319,6274.3464376747,35.8610653575,Relatively High,86.5482997292,85.754985755,2.481,51.8016,Relatively Low,16.9583200764,80.0,2.59008,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,69959563.72471517,567.5421933875,4313320669.745264,4383280233.469979,1.491e-07,0.0,Very Low,0.7298131267,6e-10,0.0046429426,0.7344560692,0.2973914322,Very Low,0.3310791736,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,770.0,42.777777777,0.0,0.0,1.625e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0050032569,555074000.0,4503.0,34222800000.0,34777874000.0,0.0008599048,7.5108e-06,Very Low,300975.7,0.00681676,51807.376,352783.076,29.26023654,Relatively High,36.7428620471,Relatively High,1.0,0.03125,555074000.0,4503.0,34222800000.0,1276731.153754402,34779150731.153755,1.80224e-05,2.1e-08,0.0002275779,Very Low,312.6168096693,2.9594e-06,22.4917109794,9.0798705263,344.1883911751,4.5042988642,Very Low,5.3490902368,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,555074000.0,4503.0,34222800000.0,1276731.153754402,34779150731.153755,2.55348e-05,3.276e-07,0.0002460797,Very Low,141.7367930897,1.47536e-05,112.1270697758,3.141776146,257.0056390115,2.5818870076,Very Low,3.9068333014,Very Low,0.0,0.01489,555074000.0,4503.0,34222800000.0,34777874000.0,5.8883e-06,1.627e-06,Relatively Low,48.6670992553,0.0001090898,829.082579484,877.7496787393,13.0543648938,Relatively Low,11.9993143124,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,107.0,4.458333333,53882794.81154165,393.4555693181,2990262326.8174186,330715.4008730415,3044475837.0298333,3.05947e-05,2.7267e-06,0.0042466231,Very Low,7349.6903514333,0.0047831028,36351.5812921717,6261.3888103603,49962.6604539653,16.6323105532,Relatively Moderate,17.3960927705,Relatively Moderate,1.0,0.03125,555074000.0,4503.0,34222800000.0,1276731.153754402,34779150731.153755,5.132e-07,8.35e-08,1.33875e-05,Very Low,8.9014428359,1.17441e-05,89.2547811335,0.534134261,98.6903582304,4.4592633895,Very Low,5.6748051881,Very Low,0.0,0.0024062802,555074000.0,4503.0,34222800000.0,1276731.153754402,34779150731.153755,0.0002794641,1.863e-07,6.57015e-05,Very Low,373.2700670825,2.0191e-06,15.3447945665,0.2018463811,388.8167080301,5.1999468378,Very Low,6.8569915193,Very Low,7.0,0.031969309,84493307.16276018,678.656794461,5157791637.9032755,5242284945.066035,0.0007732141,3.66e-08,Very Low,2088.6003439168,7.949e-07,6.0414768162,2094.641820733,13.6863927662,Relatively Moderate,13.4161554257,Relatively Moderate,1.0,0.003531,555073174.039344,4502.9919424707,34222738762.77709,34777811936.81642,7e-09,4.0104e-06,Very Low,0.0137739698,6.37652e-05,484.6157506621,484.6295246319,9.0732132399,Very Low,10.0919635959,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.0934e-06,0.0049143834,True,1.4837e-05 +30,T15001021202,Hawaii,HI,15,Hawaii,County,1,15001,21202,15001021202,8451,921317000.0,67149035.71069637,934.5492187546,57.9621366282,Very High,99.887268178,100.0,50.9009757018,Very High,99.7415416764,100.0,6638046.013878048,4824851.129846153,0.2383117837,1811169.5564462843,2025.32758561,35.9442214511,Relatively High,86.9723415315,86.6096866097,2.533,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,83809817.36564039,768.7655460141,5842618149.706782,5926427967.072424,1.5e-09,0.0,Very Low,0.0089197982,0.0,4.12276e-05,0.0089610257,0.0684634982,Very Low,0.0779399169,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,812.0,45.111111111,0.0,0.0,5.41e-08,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0099993129,921317000.0,8451.0,64227600000.0,65148917000.00001,0.0008505842,1.16917e-05,Very Low,4823252.0,0.23728574,1803371.624,6626623.624,77.7808503062,Very High,99.8769515712,Very High,1.0,0.03125,921317000.0,8451.0,64227600000.0,67149035.7106964,65216066035.7107,1.80224e-05,7.6e-08,0.0002275779,Very Low,518.8842951283,2.00788e-05,152.5985324699,477.5512436032,1149.0340712014,6.7319274673,Relatively Low,8.1750345355,Relatively Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.0145222912,916526100.2799532,8404.8988265971,63877231082.13767,67149035.7106964,64860906218.12833,2.55348e-05,3.276e-07,0.0002460797,Very Low,339.1880815019,3.99097e-05,303.3136289789,239.4784683418,881.9801788226,3.8944185305,Very Low,6.0259803913,Very Low,0.0,0.01489,921317000.0,8451.0,64227600000.0,65148917000.00001,5.8883e-06,1.361e-06,Very Low,80.7781050537,0.000171262,1301.590940004,1382.3690450577,15.1882191486,Relatively Low,14.2759487032,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,33595.8970324927,0.3104494424,2359415.7624847298,0.0,2393011.6595172225,0.0006245044,3.8327e-06,0.0003492485,Very Low,124.1363110689,7.04e-06,53.5042929894,0.0,177.6406040583,2.5385446927,Very Low,2.7150722173,Very Low,1.0,0.03125,921317000.0,8451.0,64227600000.0,67149035.7106964,65216066035.7107,8.3601e-06,3.102e-07,0.0006212585,Very Low,240.6962221409,8.19342e-05,622.6998114826,1303.6533254449,2167.0493590684,12.4870873874,Relatively Low,16.2497403306,Relatively Low,2.0,0.0070628791,921317000.0,8451.0,64227600000.0,67149035.71069637,65216066035.7107,4.16555e-05,2.78e-08,9.7931e-06,Very Low,271.0588231698,1.6578e-06,12.5993870449,4.6445482201,288.3027584348,4.7065231209,Very Low,6.3464133912,Very Low,21.0,0.095907928,379409.9916177188,1.3972932715,10619428.86368238,10998838.855300099,0.0006654598,3.8734e-06,Very Low,24.2150337388,5.191e-07,3.9450254625,28.1600592013,3.2543450395,Very Low,3.2621214124,Relatively Low,4.0,0.0207448,921315089.3788786,8450.9785947338,64227437319.97716,65148752409.35605,7e-09,4.0043e-06,Very Low,0.1343162625,0.0007020153,5335.3165094503,5335.4508257128,20.1843546699,Relatively Low,22.9576202858,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,53.0,1.2887045444,80084.4603006705,3.5257309566,26795555.270413022,0.0,26875639.730713695,8.51e-08,1.057e-07,0.0,Very Low,0.0297382894,1.6269e-06,12.364277175,0.0,12.3940154644,3.6838330638,Very Low,2.5516985128,Very Low,November 2021,3.83e-08,3.01617e-05,True,1.7093e-06 +31,T15001021300,Hawaii,HI,15,Hawaii,County,1,15001,21300,15001021300,5972,691942000.0,41505347.68197775,314.4847400233,44.8648895425,Very High,99.5614457169,98.773006135,40.94410456,Very High,99.0610264095,97.8527607362,3454904.678842767,2421751.9646799425,0.1357247505,1031508.1034963035,1644.6106665214,34.5881374634,Relatively Moderate,78.0811424507,75.4985754986,1.685,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,59825905.45671751,516.3442996487,3924216677.330079,3984042582.786796,3.187e-07,0.0,Very Low,1.3342353514,8e-10,0.0059722724,1.3402076238,0.363410278,Very Low,0.3981036443,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,532.0,29.555555555,0.0,0.0,5.41e-08,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0099990732,691942000.0,5972.0,45387200000.0,46079142000.0,0.0008505842,1.16917e-05,Very Low,2014339.2,0.11134262,846203.912,2860543.112,58.7838578297,Very High,72.635473364,Very High,1.0,0.03125,691942000.0,5972.0,45387200000.0,41505347.68197774,46120647347.68198,1.80224e-05,7.6e-08,0.0002275779,Very Low,389.7006534547,1.41889e-05,107.835574004,295.1781837538,792.7144112124,5.9484074704,Very Low,6.951026967,Relatively Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.0144927536,683648413.1210414,5903.058982076,44863248263.77738,41505347.68197774,45588402024.58041,2.55348e-05,3.276e-07,0.0002460797,Very Low,252.9970378585,2.803e-05,213.0279351202,148.0235268574,614.0484998361,3.4516273867,Very Low,5.1393369516,Very Low,0.0,0.01489,691942000.0,5972.0,45387200000.0,46079142000.0,5.8883e-06,1.361e-06,Very Low,60.6672443546,0.0001210243,919.784770288,980.4520146426,13.5448532024,Relatively Low,12.2509712728,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,108451273.17360821,1031.9646383704,7842931251.61482,190128.1686397818,7951572652.957066,0.0006245044,3.8327e-06,0.0003492485,Very Low,400725.748429268,0.0234017841,177853.5594508764,392.8783255313,578972.1862056758,37.6377194155,Very High,38.7362849875,Very High,1.0,0.03125,691942000.0,5972.0,45387200000.0,41505347.68197774,46120647347.68198,8.3601e-06,3.102e-07,0.0006212585,Very Low,180.7714666508,5.78998e-05,440.0382527704,805.7983849982,1426.6081044193,10.8627498557,Relatively Low,13.6026382415,Relatively Low,0.0,0.002337114,691942000.0,5972.0,45387200000.0,41505347.68197775,46120647347.68198,0.0001198082,7.99e-08,2.81667e-05,Very Low,193.7474988081,1.115e-06,8.4736995875,2.7322453807,204.9534437764,4.2005130404,Very Low,5.4502921677,Very Low,19.0,0.086773839,97112232.88584217,779.5012678,5924209635.280034,6021321868.165876,0.0006654598,3.8734e-06,Very Low,5607.6972377257,0.0002619991,1991.19306877,7598.8903064956,21.0298318769,Relatively Moderate,20.2847855136,Relatively Moderate,4.0,0.0207448,691941637.798755,5971.9970579512,45387177640.42914,46079119278.2279,7e-09,4.0043e-06,Very Low,0.1008764707,0.0004960885,3770.2727726148,3770.3736490856,17.9784656825,Relatively Low,19.6771737362,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,53.0,0.9643149741,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,3.9558e-06,3.96241e-05,True,0.0005806917 +32,T15003010308,Hawaii,HI,15,Honolulu,County,3,15003,10308,15003010308,3319,402502000.0,0.0,3.2978566421,14.6608364994,Relatively Low,45.1697163832,34.0490797546,14.8377632042,Relatively Low,38.7288799681,32.5153374233,164424.770555597,141142.5125061344,0.003063455,23282.2580494626,0.0,31.5753282267,Relatively Moderate,47.4995212431,49.5726495726,-0.199,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0,0.0,0.0,0.0,0.0,4.78451e-05,4.8e-09,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,133.0,7.388888888,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0031566579,402502000.0,3319.0,25224400000.0,25626902000.0,0.0167507621,0.0001397988,Very Low,140331.5,0.00302285,22973.66,163305.16,22.6347249226,Relatively Moderate,25.2203710271,Relatively Moderate,1.0,0.03125,402502000.0,3319.0,25224400000.0,0.0,25626902000.0,1.80224e-05,2.1e-08,0.0002275779,Very Low,226.6884976151,2.1788e-06,16.5585095325,0.0,243.2470071476,4.012154308,Very Low,4.2277709887,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,402502000.0,3319.0,25224400000.0,0.0,25626902000.0,2.55348e-05,3.276e-07,0.0002460797,Very Low,102.7779047338,1.08743e-05,82.6448466769,0.0,185.4227514107,2.3156736562,Very Low,3.1091817133,Very Low,0.0,0.01489,402502000.0,3319.0,25224400000.0,25626902000.0,5.8883e-06,2.64e-07,Very Low,35.2900780517,1.30469e-05,99.156107424,134.4461854757,6.984709526,Very Low,5.6967889747,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.78921e-05,5.85e-08,0.0005670888,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.03125,402502000.0,3319.0,25224400000.0,0.0,25626902000.0,2.273e-07,1.163e-07,2.19536e-05,Very Low,2.8584856358,1.20672e-05,91.7109783589,0.0,94.5694639947,4.3963121986,Very Low,4.964293599,Very Low,0.0,9.00893e-05,402502000.0,3319.0,25224400000.0,0.0,25626902000.0,0.0122279031,8.1531e-06,0.0314801129,Very Low,443.397540098,2.4378e-06,18.5276074704,0.0,461.9251475684,5.5073304115,Very Low,6.4439737658,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.001559314,3.65e-08,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.22e-08,0.0,False,2.0149e-06 +33,T15001021504,Hawaii,HI,15,Hawaii,County,1,15001,21504,15001021504,3965,567799000.0,0.0,11.9815794264,39.0504271072,Very High,98.9400459176,96.0122699387,38.7614777296,Very High,98.7090831603,96.3190184049,2931317.856563528,2359248.5526345233,0.0752722768,572069.3039290046,0.0,31.8008091728,Relatively Moderate,50.0218860285,52.9914529915,-0.058,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.067971012,84051061.91404876,586.9373853938,4460724128.992736,4544775190.906784,6.689e-07,0.0,Very Low,3.8215319092,5e-10,0.0041417707,3.8256736799,0.5155163995,Very Low,0.5192212128,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,119.0,6.611111111,0.0,0.0,5.41e-08,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0099991023,567799000.0,3965.0,30134000000.0,30701798999.999996,0.0008505842,1.16917e-05,Very Low,2292113.7,0.07423251,564167.0760000001,2856280.776,58.7546464651,Very High,66.7488670584,Very High,1.0,0.03125,567799000.0,3965.0,30134000000.0,0.0,30701798999.999996,1.80224e-05,7.6e-08,0.0002275779,Very Low,319.7835097897,9.4205e-06,71.5954539393,0.0,391.3789637291,4.7014045019,Very Low,5.0511105804,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0144927536,567799000.0,3965.0,30134000000.0,0.0,30701798999.999996,2.55348e-05,3.276e-07,0.0002460797,Very Low,210.1247693141,1.88273e-05,143.0878067314,0.0,353.2125760456,2.8705717113,Very Low,3.9297288144,Very Low,0.0,0.01489,567799000.0,3965.0,30134000000.0,30701798999.999996,5.8883e-06,1.361e-06,Very Low,49.7827862412,8.03519e-05,610.67424886,660.4570351012,11.8735443385,Very Low,9.8738742457,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,17678751.916805524,25.0,190000000.0,0.0,207678751.9168055,0.0006245044,3.8327e-06,0.0003492485,Very Low,65322.7102444127,0.0005669231,4308.6156452932,0.0,69631.3258897058,18.5782850353,Relatively Moderate,17.5796928591,Relatively Moderate,1.0,0.03125,567799000.0,3965.0,30134000000.0,0.0,30701798999.999996,8.3601e-06,3.102e-07,0.0006212585,Very Low,148.338817405,3.84415e-05,292.1553369448,0.0,440.4941543498,7.3420656985,Very Low,8.4530342805,Very Low,0.0,0.0001412408,567799000.0,3965.0,30134000000.0,0.0,30701798999.999996,0.0027075331,1.8053e-06,0.0314801129,Very Low,217.1343505456,1.011e-06,7.6835859614,0.0,224.817936507,4.3320578719,Very Low,5.1679616475,Very Low,15.0,0.068505663,18932200.47665635,25.0024907062,190018929.36722437,208951129.84388068,0.0006654598,3.8734e-06,Very Low,863.0766648539,6.6344e-06,50.4216998251,913.498364679,10.3789877739,Relatively Low,9.2045087312,Relatively Low,3.0,0.0200386,567798879.682773,3964.9999981359,30133999985.83248,30701798865.51525,7e-09,4.0043e-06,Very Low,0.0799600523,0.0003181566,2417.9900096784,2418.0699697307,15.5041317216,Relatively Low,15.6015784286,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.803e-07,0.0,False,0.0001167168 +34,T15001021604,Hawaii,HI,15,Hawaii,County,1,15001,21604,15001021604,7587,965922000.0,0.0,3.0342188606,39.5529446793,Very High,99.0376551781,96.3190184049,41.0047129501,Very High,99.0665255228,98.1595092025,3470269.991777817,2636463.224159166,0.1097114168,833806.7676186502,0.0,30.4479234964,Relatively Low,35.4239050146,37.3219373219,-0.904,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,29819708.47307848,234.2240141391,1780102507.4569924,1809922215.9300704,1.56136e-05,6e-10,Very Low,32.5779960448,9.6e-09,0.0727345758,32.6507306206,1.0535071298,Very Low,1.0159373566,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,49.0,2.722222222,0.0,0.0,5.41e-08,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0099990193,965922000.0,7587.0,57661200000.0,58627122000.0,0.0008505842,1.16917e-05,Very Low,2358086.4000000004,0.10171497,773033.772,3131120.172,60.5817522328,Very High,65.8966020412,Very High,1.0,0.03125,965922000.0,7587.0,57661200000.0,0.0,58627122000.0,1.80224e-05,7.6e-08,0.0002275779,Very Low,544.0057614457,1.8026e-05,136.9974045493,0.0,681.003165995,5.6547251774,Very Low,5.8168822061,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0144927536,965922000.0,7587.0,57661200000.0,0.0,58627122000.0,2.55348e-05,3.276e-07,0.0002460797,Very Low,357.4577225839,3.6026e-05,273.7975257683,0.0,631.2552483523,3.4835711241,Very Low,4.5660259096,Very Low,0.0,0.01489,965922000.0,7587.0,57661200000.0,58627122000.0,5.8883e-06,1.361e-06,Very Low,84.6889276868,0.0001537528,1168.520939748,1253.2098674348,14.6996430876,Relatively Low,11.7039784212,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,72095984.58842091,299.4473453306,2275799824.5124927,0.0,2347895809.1009145,0.0006245044,3.8327e-06,0.0003492485,Very Low,266393.5289786026,0.0067905448,51608.1406813159,0.0,318001.6696599184,30.8233993797,Relatively High,27.925805176,Relatively High,1.0,0.03125,965922000.0,7587.0,57661200000.0,0.0,58627122000.0,8.3601e-06,3.102e-07,0.0006212585,Very Low,252.3493827665,7.35575e-05,559.0372109459,0.0,811.3865937124,9.000103265,Very Low,9.9211351379,Very Low,0.0,3.96076e-05,965922000.0,7587.0,57661200000.0,0.0,58627122000.0,0.009655059,6.4377e-06,0.0314801129,Very Low,369.3822041738,1.9345e-06,14.7024884463,0.0,384.0846926201,5.1787657086,Very Low,5.9153319159,Very Low,14.0,0.063938618,243079736.71172065,1267.0762440467,9629779454.75488,9872859191.466602,0.0006654598,3.8734e-06,Very Low,10342.69716028,0.0003138052,2384.9195180287,12727.6166783087,24.9747665844,Relatively High,21.2063810389,Relatively High,3.0,0.0200386,965922000.0,7587.0,57661200000.0,58627122000.0,7e-09,4.0043e-06,Very Low,0.1360255831,0.0006087904,4626.8071152723,4626.9431408554,19.2481598108,Relatively Low,18.5451270921,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,9.324e-07,0.0,False,0.0002774903 +35,T15001022000,Hawaii,HI,15,Hawaii,County,1,15001,22000,15001022000,2588,255562000.0,1087339.0101268515,464.1587560056,20.7476698713,Relatively Moderate,74.4689918751,77.3006134969,19.5680692358,Relatively Moderate,64.151280606,75.1533742331,377142.8388196314,279582.459563443,0.0128327356,97528.7908128289,31.5884433596,33.4687285113,Relatively Moderate,68.2447405138,66.3817663818,0.985,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.067971012,0.0,0.0,0.0,0.0,4.78451e-05,4.8e-09,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1631.0,90.611111111,0.0,0.0,5.41e-08,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0099812096,255562000.0,2588.0,19668800000.0,19924362000.0,0.0008505842,1.16917e-05,Very Low,279213.3,0.01253243,95246.468,374459.768,29.8476612003,Relatively High,35.6872456781,Relatively High,1.0,0.03125,255562000.0,2588.0,19668800000.0,1087339.0101268515,19925449339.010128,1.80224e-05,7.6e-08,0.0002275779,Very Low,143.9321191635,6.1488e-06,46.7311563165,7.7329494164,198.3962248964,3.7486330273,Very Low,4.2387053459,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0102889159,255562000.0,2588.0,19668800000.0,1087339.0101268515,19925449339.010128,2.55348e-05,3.276e-07,0.0002460797,Very Low,64.6707563155,8.4808e-06,64.4537491694,2.6757205341,131.8002260189,2.0666252581,Very Low,2.9775355575,Very Low,0.0,0.01489,255562000.0,2588.0,19668800000.0,19924362000.0,5.8883e-06,1.361e-06,Very Low,22.4068524555,5.24466e-05,398.593935952,421.0007884075,10.2186413768,Very Low,8.9433744405,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006245044,3.8327e-06,0.0003492485,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.03125,255562000.0,2588.0,19668800000.0,1087339.0101268515,19925449339.010128,8.3601e-06,3.102e-07,0.0006212585,Very Low,66.7661705175,2.50912e-05,190.6930673426,21.1099549152,278.5691927753,6.3020606503,Very Low,7.6362121452,Very Low,0.0,0.0031985263,255562000.0,2588.0,19668800000.0,1087339.0101268515,19925449339.010128,8.53899e-05,5.69e-08,2.0075e-05,Very Low,69.7995388104,4.713e-07,3.5818500352,0.0698184939,73.4512073395,2.9836662624,Very Low,3.7458582497,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0006654598,3.8734e-06,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,4.0,0.0203185325,254026689.5486555,2587.9972855693,19668779370.32698,19922806059.87564,7e-09,4.0043e-06,Very Low,0.0357989244,0.000207667,1578.2690540132,1578.3048529376,13.4489421521,Relatively Low,14.2432880593,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,53.0,1.2047797578,4169606.0993384407,0.0,0.0,0.0,4169606.0993384407,8.51e-08,1.057e-07,0.0,Very Low,1.5483272564,0.0,0.0,0.0,1.5483272564,1.8415500075,Very Low,1.1877446094,Very Low,November 2021,3.58e-08,2.90511e-05,True,1.4444e-06 +36,T15001022102,Hawaii,HI,15,Hawaii,County,1,15001,22102,15001022102,2041,231676000.0,20509139.474021494,318.206913497,28.297836669,Relatively High,93.013376593,89.5705521472,26.8749889144,Relatively High,88.8835425288,89.5705521472,977027.5682842254,707863.2039671029,0.0353379791,268568.6410903668,595.7232267555,33.2368509427,Relatively Moderate,65.9453396438,64.3874643875,0.84,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.057971012,0.0,0.0,0.0,0.0,4.78451e-05,4.8e-09,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,238.0,13.222222222,0.0,0.0,5.41e-08,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.009986985,231676000.0,2041.0,15511600000.0,15743276000.0,0.0008505842,1.16917e-05,Very Low,707499.2999999999,0.03509889,266751.564,974250.864,41.0517981635,Very High,48.7433714577,Very High,1.0,0.03125,231676000.0,2041.0,15511600000.0,20509139.4740215,15763785139.47402,1.80224e-05,7.6e-08,0.0002275779,Very Low,130.4795612794,4.8492e-06,36.8540533395,145.8571215132,313.1907361321,4.3648041515,Very Low,4.9012371629,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0117516502,231676000.0,2041.0,15511600000.0,20509139.4740215,15763785139.47402,2.55348e-05,3.276e-07,0.0002460797,Very Low,59.1840584381,6.6871e-06,50.8219741089,50.4688281351,160.4748606821,2.2067781933,Very Low,3.1574360485,Very Low,0.0,0.01489,231676000.0,2041.0,15511600000.0,15743276000.0,5.8883e-06,1.361e-06,Very Low,20.3126049627,4.13615e-05,314.347072364,334.6596773267,9.466003284,Very Low,8.2272664527,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0006245044,3.8327e-06,0.0003492485,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.03125,231676000.0,2041.0,15511600000.0,20509139.4740215,15763785139.47402,8.3601e-06,3.102e-07,0.0006212585,Very Low,60.5258971247,1.97879e-05,150.3881570511,398.1711367054,609.0851908812,8.1795779715,Very Low,9.8425348042,Very Low,0.0,0.0020489727,231676000.0,2041.0,15511600000.0,20509139.474021494,15763785139.47402,0.0001241102,8.28e-08,2.91781e-05,Very Low,58.9148231709,3.461e-07,2.6301068292,1.2261404018,62.7710704018,2.8314166101,Very Low,3.5300428471,Very Low,5.0,0.022835221,2267345.0026022545,25.8386654596,196373857.49260196,198641202.4952042,0.0006654598,3.8734e-06,Very Low,34.4543953978,2.2854e-06,17.36932864,51.8237240378,3.9880624307,Relatively Low,3.696487659,Relatively Low,4.0,0.0204629272,231675410.17382696,2040.9936542881,15511551772.589231,15743227182.76306,7e-09,4.0043e-06,Very Low,0.0326267294,0.0001637719,1244.6663980342,1244.6990247637,12.4254638837,Relatively Low,13.0681887685,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,53.0,0.9612593147,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,3.58e-08,2.90467e-05,True,1.4219e-06 +37,T15001021509,Hawaii,HI,15,Hawaii,County,1,15001,21509,15001021509,5154,799747000.0,979196.950329917,10.1295724573,43.6441792428,Very High,99.4844581311,98.4662576687,39.6085028569,Very High,98.8685574451,96.6257668712,3127715.323796508,2488986.8228898174,0.0840386976,638694.1016106104,34.3992960803,34.7816352966,Relatively Moderate,79.5680245124,77.4928774929,1.806,50.775198,Relatively Low,9.3859370029,40.0,2.5387599,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,34544698.002613455,222.6246219185,1691947126.5807436,1726491824.583357,1.09139e-05,5e-10,Very Low,26.3802562625,7.5e-09,0.0567194769,26.4369757394,0.981922252,Very Low,1.0816801748,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,28.0,1.555555555,0.0,0.0,5.41e-08,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0099990082,799747000.0,5154.0,39170400000.0,39970147000.0,0.0008505842,1.16917e-05,Very Low,2391862.2,0.08145482,619056.6319999999,3010918.832,59.7963856883,Very High,74.2999363956,Very High,1.0,0.03125,799747000.0,5154.0,39170400000.0,979196.9503299173,39971126196.950325,1.80224e-05,7.6e-08,0.0002275779,Very Low,450.4162610427,1.22454e-05,93.0650616906,6.9638635375,550.4451862709,5.2674426826,Very Low,6.1897185553,Relatively Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0144927536,799747000.0,5154.0,39170400000.0,979196.9503299173,39971126196.950325,2.55348e-05,3.276e-07,0.0002460797,Very Low,295.9615178693,2.44732e-05,185.9961048913,3.492180988,485.4498037485,3.1915706156,Very Low,4.7787076778,Very Low,0.0,0.01489,799747000.0,5154.0,39170400000.0,39970147000.0,5.8883e-06,1.361e-06,Very Low,70.1192392872,0.0001044473,793.799515416,863.9187547032,12.985434587,Relatively Low,11.8106970135,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0,5.916666666,23918829.41099917,78.8266354636,599082429.5234789,2344.7633025502,623003603.6977806,0.0006245044,3.8327e-06,0.0003492485,Very Low,88379.6984285393,0.0017875457,13585.3469929743,4.8451877839,101969.8906092976,21.0973569676,Relatively Moderate,21.8346150102,Relatively High,1.0,0.03125,799747000.0,5154.0,39170400000.0,979196.9503299173,39971126196.950325,8.3601e-06,3.102e-07,0.0006212585,Very Low,208.9357751655,4.99691e-05,379.7650962455,19.0104496225,607.7113210335,8.1734233122,Very Low,10.2922465761,Very Low,0.0,0.0001332481,799747000.0,5154.0,39170400000.0,979196.950329917,39971126196.950325,0.0028562355,1.9044e-06,0.0006714957,Very Low,304.374019364,1.3079e-06,9.9399963725,0.0876141484,314.4016298849,4.8444617015,Very Low,6.3211251574,Very Low,11.0,0.050237486,221010989.94338924,956.0722553606,7266149140.740707,7487160130.684095,0.0006654598,3.8734e-06,Very Low,7388.6241355279,0.0001860428,1413.9249167873,8802.5490523153,22.0862454143,Relatively Moderate,21.4229529236,Relatively High,4.0,0.0202783018,799720520.0699263,5153.6368864899,39167640337.3234,39967360857.393326,7e-09,4.0043e-06,Very Low,0.1132567587,0.0004178388,3175.5752067561,3175.6884635148,16.9786748734,Relatively Low,18.686876158,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,3.842e-07,3.51301e-05,True,0.0001122053 +38,T15003010100,Hawaii,HI,15,Honolulu,County,3,15003,10100,15003010100,7881,844170000.0,6510793.174941882,30.2068351444,17.9023593434,Relatively Low,62.2967046564,62.5766871166,20.1899418692,Relatively Moderate,67.065810638,79.1411042945,414254.4118402396,357290.3980572544,0.0066572447,50595.0595105788,6368.9542724065,28.3354388883,Relatively Low,17.4965119142,21.0826210826,-2.225,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,108722387.39658688,1015.0101698384,7714077290.772013,7822799678.1686,2.1797e-05,1.6e-09,Very Low,165.8185422659,1.136e-07,0.8633732204,166.6819154863,1.8139946646,Very Low,1.6080612486,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0031021867,844170000.0,7881.0,59895600000.0,60739770000.0,0.0167507621,0.0001397988,Very Low,271131.7,0.00614137,46674.412,317806.112,28.2593824392,Relatively High,28.2566705,Relatively Moderate,1.0,0.03125,844170000.0,7881.0,59895600000.0,6510793.174941879,60746280793.17494,1.80224e-05,2.1e-08,0.0002275779,Very Low,475.4352252455,5.1735e-06,39.3183530055,46.3035298223,561.0571080733,5.3010774425,Very Low,5.0127961668,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0144927536,844170000.0,7881.0,59895600000.0,6510793.174941879,60746280793.17494,2.55348e-05,3.276e-07,0.0002460797,Very Low,312.4010900194,3.7422e-05,284.4073152208,23.219913149,620.0283183891,3.4627955954,Very Low,4.1723206395,Very Low,0.0,0.01489,844170000.0,7881.0,59895600000.0,60739770000.0,5.8883e-06,2.64e-07,Very Low,74.014104747,3.09799e-05,235.447207776,309.461312523,9.2221951746,Very Low,6.7499127907,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0,6.375,144063515.18652028,1085.2615309044,8247987634.8732605,1740883.8763676984,8393792033.9361515,6.78921e-05,5.85e-08,0.0005670888,Very Low,62352.4173422582,0.0004047596,3076.1731167997,6293.6278904878,71722.2183495456,18.7624106894,Relatively Moderate,15.626112207,Relatively Moderate,1.0,0.03125,844170000.0,7881.0,59895600000.0,6510793.174941879,60746280793.17494,2.273e-07,1.163e-07,2.19536e-05,Very Low,5.9951200718,2.86538e-05,217.7686714211,4.4667327311,228.230524224,5.8969773428,Very Low,5.9755854646,Very Low,0.0,0.0008089954,844170000.0,7881.0,59895600000.0,6510793.174941882,60746280793.17494,0.0010790568,7.195e-07,0.0002536843,Very Low,736.9198762201,4.5872e-06,34.8625006827,1.3362062164,773.1185831192,6.5388187819,Very Low,6.8658963899,Very Low,6.0,0.027402265,515711432.1667201,4182.4213727807,31786402433.133545,32302113865.30026,0.001559314,3.65e-08,Very Low,22035.6967564264,4.1851e-06,31.8069724526,22067.5037288791,30.003377423,Relatively High,23.4192184699,Relatively High,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,6.49e-08,0.0009782148,True,7.59598e-05 +39,T15003010202,Hawaii,HI,15,Honolulu,County,3,15003,10202,15003010202,7643,654554000.0,1559566.8001234492,12.8723696364,19.9405231828,Relatively Moderate,71.1832716974,73.6196319018,22.0650824666,Relatively Moderate,75.2223703928,83.4355828221,540727.6797428379,458981.6910243044,0.010404595,79074.9221952323,2671.0665233012,28.8791518078,Relatively Low,21.4100073865,26.2108262108,-1.885,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,149406920.22258168,1744.5727797266,13258753125.922472,13408160046.145056,4.63641e-05,5.7e-09,Very Low,484.6969048295,6.988e-07,5.3105325914,490.0074374209,2.5986077845,Very Low,2.3478038255,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0034127689,654554000.0,7643.0,58086800000.0,58741354000.0,0.0167507621,0.0001397988,Very Low,247080.5,0.00831546,63197.496,310277.996,28.0344631782,Relatively High,28.5696588646,Relatively High,1.0,0.03125,654554000.0,7643.0,58086800000.0,1559566.8001234487,58742913566.800125,1.80224e-05,2.1e-08,0.0002275779,Very Low,368.6437902619,5.0172e-06,38.1309696766,11.0913441572,417.8661040956,4.805156172,Very Low,4.6310331917,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0144927536,654554000.0,7643.0,58086800000.0,1559566.8001234487,58742913566.800125,2.55348e-05,3.276e-07,0.0002460797,Very Low,242.2300994782,3.62919e-05,275.818438045,5.5619960081,523.6105335314,3.2730989859,Very Low,4.0194298107,Very Low,0.0,0.01489,654554000.0,7643.0,58086800000.0,58741354000.0,5.8883e-06,2.64e-07,Very Low,57.3891850203,3.00443e-05,228.336887328,285.7260723483,8.9801201061,Very Low,6.6988536162,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0,6.375,435262433.14929074,5305.6996876866,40323317626.418304,733854.200665268,40759313913.76827,6.78921e-05,5.85e-08,0.0005670888,Very Low,188386.8018213588,0.0019788161,15039.0023789685,2653.0231726283,206078.8273729557,26.673613762,Relatively High,22.6411586896,Relatively High,1.0,0.03125,654554000.0,7643.0,58086800000.0,1559566.8001234487,58742913566.800125,2.273e-07,1.163e-07,2.19536e-05,Very Low,4.6485066083,2.77885e-05,211.1922288633,1.0699415394,216.910677011,5.7978262092,Very Low,5.9878468792,Very Low,0.0,0.0003346294,654554000.0,7643.0,58086800000.0,1559566.8001234492,58742913566.800125,0.0026087124,1.7394e-06,0.0006133035,Very Low,571.3942128474,4.4486e-06,33.8096805884,0.3200689681,605.523962404,6.0273680086,Very Low,6.4502559937,Very Low,6.0,0.027402265,509853307.4954975,6025.716242559,45795443443.4484,46305296750.943886,0.001559314,3.65e-08,Very Low,21785.3865039,6.0296e-06,45.8250791711,21831.2115830711,29.8959038814,Relatively High,23.783098318,Relatively High,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,2.726e-07,0.0017126977,True,0.0002904509 +40,T15003000114,Hawaii,HI,15,Honolulu,County,3,15003,114,15003000114,1594,256337000.0,0.0,0.4733660713,11.5700314407,Very Low,25.5750010311,13.4969325153,13.0024416326,Very Low,27.0776337316,15.3374233129,110646.243904659,96129.447132593,0.0019101048,14516.796772066,0.0,28.436185694,Relatively Low,18.1695072908,21.3675213675,-2.162,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.067971012,45060581.76163264,280.203666767,2129547867.4289021,2174608449.1905346,2.23874e-05,2.3e-09,Very Low,68.5682860676,4.36e-08,0.331668756,68.8999548236,1.3512825139,Very Low,1.2021374741,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,287.0,15.944444444,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0035448826,256337000.0,1594.0,12114400000.0,12370737000.0,0.0167507621,0.0001397988,Very Low,78176.6,0.00181499,13793.924,91970.524,18.6921018488,Relatively Moderate,18.7567615341,Relatively Moderate,1.0,0.03125,256337000.0,1594.0,12114400000.0,0.0,12370737000.0,1.80224e-05,2.1e-08,0.0002275779,Very Low,144.3685979527,1.0464e-06,7.9524749005,0.0,152.3210728532,3.4325361718,Very Low,3.2574099371,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,256337000.0,1594.0,12114400000.0,0.0,12370737000.0,2.55348e-05,3.276e-07,0.0002460797,Very Low,65.4550282129,5.2226e-06,39.691438868,0.0,105.1464670809,1.916701913,Very Low,2.3176443554,Very Low,0.0,0.01489,256337000.0,1594.0,12114400000.0,12370737000.0,5.8883e-06,2.64e-07,Very Low,22.4748019576,6.266e-06,47.621221824,70.0960237816,5.6216436913,Very Low,4.1292251723,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0,6.375,31810533.451878175,201.1940620543,1529074871.6130447,0.0,1560885405.0649233,6.78921e-05,5.85e-08,0.0005670888,Very Low,13767.98042935,7.50374e-05,570.2844405031,0.0,14338.264869853,10.9707486819,Relatively Low,9.1693798611,Relatively Low,1.0,0.03125,256337000.0,1594.0,12114400000.0,0.0,12370737000.0,2.273e-07,1.163e-07,2.19536e-05,Very Low,1.8204521528,5.7955e-06,44.0455858705,0.0,45.8660380233,3.4541030654,Very Low,3.5125918792,Very Low,0.0,2.0369e-05,256337000.0,1594.0,12114400000.0,0.0,12370737000.0,0.0540823568,3.60603e-05,0.0314801129,Very Low,282.3816906154,1.1708e-06,8.8981639975,0.0,291.279854613,4.7226679739,Very Low,4.97631598,Very Low,5.0,0.022835221,101097246.51534072,638.7094045184,4854191474.339953,4955288720.855295,0.001559314,3.65e-08,Very Low,3599.797846284,5.326e-07,4.0477773464,3603.8456236304,16.3998975605,Relatively Moderate,12.8464989548,Relatively Moderate,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,5.93e-08,0.0,False,5.59929e-05 +41,T15003000301,Hawaii,HI,15,Honolulu,County,3,15003,301,15003000301,3307,448705000.0,0.0,3.2652746527,14.9566064901,Relatively Low,46.9610525303,36.1963190184,15.5029761891,Relatively Low,42.6456233932,39.8773006135,187545.7283336508,159140.8236666432,0.0037374875,28404.9046670075,0.0,30.8301216957,Relatively Low,39.3975870654,39.886039886,-0.665,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.045478259,25555924.556268148,188.3496785362,1431457556.8750038,1457013481.4312716,1.27441e-05,1.2e-09,Very Low,14.811687435,1.04e-08,0.0793339445,14.8910213795,0.810926215,Very Low,0.7821557032,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,287.0,15.944444444,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0032518991,448705000.0,3307.0,25133200000.0,25581905000.0,0.0167507621,0.0001397988,Very Low,137822.2,0.00355765,27038.14,164860.34,22.7063493531,Relatively Moderate,24.7030701239,Relatively Moderate,1.0,0.03125,448705000.0,3307.0,25133200000.0,0.0,25581905000.0,1.80224e-05,2.1e-08,0.0002275779,Very Low,252.7099550373,2.1709e-06,16.4986414655,0.0,269.2085965027,4.1500955944,Very Low,4.2699156153,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,448705000.0,3307.0,25133200000.0,0.0,25581905000.0,2.55348e-05,3.276e-07,0.0002460797,Very Low,114.5757281792,1.0835e-05,82.3460403617,0.0,196.9217685408,2.362585806,Very Low,3.0973030875,Very Low,0.0,0.01489,448705000.0,3307.0,25133200000.0,25581905000.0,5.8883e-06,2.64e-07,Very Low,39.3410081743,1.29997e-05,98.797603872,138.1386120463,7.0480755517,Very Low,5.6128016961,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0,6.375,43472034.28851925,372.9604933622,2834499749.552674,0.0,2877971783.8411927,6.78921e-05,5.85e-08,0.0005670888,Very Low,18815.2178652957,0.0001390995,1057.1562804341,0.0,19872.3741457298,12.2317140159,Relatively Low,11.0839590918,Relatively Low,1.0,0.03125,448705000.0,3307.0,25133200000.0,0.0,25581905000.0,2.273e-07,1.163e-07,2.19536e-05,Very Low,3.186609749,1.20236e-05,91.3793930199,0.0,94.5660027689,4.3962585632,Very Low,4.8470726091,Very Low,0.0,8.91993e-05,448705000.0,3307.0,25133200000.0,0.0,25581905000.0,0.0123499135,8.2345e-06,0.0314801129,Very Low,494.2949183598,2.429e-06,18.4606200375,0.0,512.7555383974,5.7023523714,Very Low,6.5147029765,Very Low,5.0,0.022835221,44498932.4144714,322.9626620121,2454516231.2922034,2499015163.706675,0.001559314,3.65e-08,Very Low,1584.485894413,2.693e-07,2.0467538724,1586.5326482854,12.4758098497,Relatively Moderate,10.5953740883,Relatively Moderate,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,5.43e-08,0.0,False,4.39802e-05 +42,T15003000401,Hawaii,HI,15,Honolulu,County,3,15003,401,15003000401,2893,351046000.0,0.0,2.3849752201,14.1817633164,Relatively Low,42.3115522622,28.527607362,14.3094432099,Relatively Low,35.2974332889,26.3803680982,147478.9860232134,127735.041033475,0.0025978875,19743.9449897384,0.0,31.6712775654,Relatively Moderate,48.6047656827,51.2820512821,-0.139,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.002,6908402.002621479,56.9327295955,432688744.9258443,439597146.9284658,7.11351e-05,5e-09,Very Low,0.9828593662,6e-10,0.0043249758,0.987184342,0.3282005193,Very Low,0.3251932208,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,287.0,15.944444444,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0030079196,351046000.0,2893.0,21986800000.0,22337846000.0,0.0167507621,0.0001397988,Very Low,124594.1,0.00254722,19358.872,143952.972,21.7027847784,Relatively Moderate,24.2554548276,Relatively Moderate,1.0,0.03125,351046000.0,2893.0,21986800000.0,0.0,22337846000.0,1.80224e-05,2.1e-08,0.0002275779,Very Low,197.7085588006,1.8991e-06,14.4331931539,0.0,212.1417519545,3.8332797027,Very Low,4.0515578542,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,351046000.0,2893.0,21986800000.0,0.0,22337846000.0,2.55348e-05,3.276e-07,0.0002460797,Very Low,89.6387405409,9.4786e-06,72.0372224875,0.0,161.6759630284,2.2122701874,Very Low,2.9793712675,Very Low,0.0,0.01489,351046000.0,2893.0,21986800000.0,22337846000.0,5.8883e-06,2.64e-07,Very Low,30.77858182,1.13723e-05,86.429231328,117.207813148,6.6724353693,Very Low,5.4586326301,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0,6.375,5598483.872821221,40.869767693,310610234.4665992,0.0,316208718.3394204,6.78921e-05,5.85e-08,0.0005670888,Very Low,2423.0909711602,1.52428e-05,115.8453304451,0.0,2538.9363016053,6.16057622,Relatively Low,5.7348131748,Relatively Low,1.0,0.03125,351046000.0,2893.0,21986800000.0,0.0,22337846000.0,2.273e-07,1.163e-07,2.19536e-05,Very Low,2.4930558072,1.05184e-05,79.9396988232,0.0,82.4327546304,4.199569963,Very Low,4.756543386,Very Low,0.0,6.60707e-05,351046000.0,2893.0,21986800000.0,0.0,22337846000.0,0.0169083019,1.12739e-05,0.0314801129,Very Low,392.1684715683,2.1549e-06,16.3773613872,0.0,408.5458329555,5.2864507718,Very Low,6.204295772,Very Low,0.0,0.004587,570395.34451811,5.2058202244,39564233.70547603,40134629.04999414,0.001559314,3.65e-08,Very Low,4.0797944117,9e-10,0.0066271377,4.0864215494,1.7101470841,Very Low,1.4920087004,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.75e-08,0.0,False,8.9358e-06 +43,T15003000500,Hawaii,HI,15,Honolulu,County,3,15003,500,15003000500,3807,768658000.0,0.0,1.1120328336,20.332352608,Relatively Moderate,72.8563769092,76.0736196319,21.7355738392,Relatively Moderate,73.8723380855,82.2085889571,516862.7907281188,477082.1470773286,0.0052342952,39780.6436507902,0.0,29.8930164873,Relatively Low,30.0289989878,33.6182336182,-1.251,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,360125556.27382886,1783.6254780858,13555553633.451992,13915679189.725824,3.0459e-05,3.5e-09,Very Low,767.5160208618,4.43e-07,3.3664820289,770.8825028907,3.022288421,Very Low,2.8264563707,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,287.0,15.944444444,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.002971023,768658000.0,3807.0,28933200000.0,29701858000.0,0.0167507621,0.0001397988,Very Low,330555.3,0.0046237,35140.12,365695.42,29.6129558301,Relatively High,31.2377595174,Relatively High,1.0,0.03125,768658000.0,3807.0,28933200000.0,0.0,29701858000.0,1.80224e-05,2.1e-08,0.0002275779,Very Low,432.9069848209,2.4991e-06,18.9931442583,0.0,451.9001290792,4.9322219806,Very Low,4.920376196,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,768658000.0,3807.0,28933200000.0,0.0,29701858000.0,2.55348e-05,3.276e-07,0.0002460797,Very Low,196.274946949,1.24732e-05,94.7963034947,0.0,291.0712504437,2.6912628627,Very Low,3.4209500746,Very Low,0.0,0.01489,768658000.0,3807.0,28933200000.0,29701858000.0,5.8883e-06,2.64e-07,Very Low,67.3934559705,1.49652e-05,113.735251872,181.1287078425,7.7142661392,Very Low,5.9565976821,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0,6.375,310362683.7705971,1505.3407549263,11440589737.439634,0.0,11750952421.210232,6.78921e-05,5.85e-08,0.0005670888,Very Low,134328.692180477,0.0005614326,4266.8874092204,0.0,138595.5795896974,23.369738873,Relatively High,20.5331678871,Relatively High,1.0,0.03125,768658000.0,3807.0,28933200000.0,0.0,29701858000.0,2.273e-07,1.163e-07,2.19536e-05,Very Low,5.4588495259,1.38415e-05,105.1954488188,0.0,110.6542983447,4.6326303292,Very Low,4.9524311546,Very Low,0.0,5.06726e-05,768658000.0,3807.0,28933200000.0,0.0,29701858000.0,0.0267087035,1.78084e-05,0.0314801129,Very Low,1040.3016804499,3.4354e-06,26.1093390095,0.0,1066.4110194594,7.2787835569,Very Low,8.063134448,Very Low,3.0,0.013701132,453479536.53912383,3008.6510313156,22865747837.998928,23319227374.538048,0.001559314,3.65e-08,Very Low,9688.3029582735,1.5053e-06,11.4402720877,9699.7432303613,22.8124793275,Relatively Moderate,18.7851444478,Relatively Moderate,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.6e-07,0.0,False,0.0001780227 +44,T15003001100,Hawaii,HI,15,Honolulu,County,3,15003,1100,15003001100,3862,219684000.0,0.0,0.3193229564,14.8534461275,Relatively Low,46.3245301695,35.5828220859,12.9865448527,Very Low,26.9786496927,14.4171779141,110240.9117095661,78625.4882661912,0.0041599241,31615.4234433749,0.0,36.5503014408,Relatively High,89.7682816732,89.7435897436,2.912,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0,0.0,0.0,0.0,0.0,4.78451e-05,4.8e-09,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,287.0,15.944444444,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.002980735,219684000.0,3862.0,29351200000.0,29570883999.999996,0.0167507621,0.0001397988,Very Low,78161.0,0.00411242,31254.392,109415.392,19.8062105715,Relatively Moderate,25.5458719969,Relatively Moderate,1.0,0.03125,219684000.0,3862.0,29351200000.0,0.0,29570883999.999996,1.80224e-05,2.1e-08,0.0002275779,Very Low,123.72568562,2.5352e-06,19.2675395659,0.0,142.9932251859,3.3609878804,Very Low,4.099622446,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,219684000.0,3862.0,29351200000.0,0.0,29570883999.999996,2.55348e-05,3.276e-07,0.0002460797,Very Low,56.0957739925,1.26534e-05,96.1658324393,0.0,152.2616064318,2.1684686631,Very Low,3.3702722886,Very Low,0.0,0.01489,219684000.0,3862.0,29351200000.0,29570883999.999996,5.8883e-06,2.64e-07,Very Low,19.2611850542,1.51814e-05,115.378393152,134.6395782062,6.9880569493,Very Low,6.5975289928,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.78921e-05,5.85e-08,0.0005670888,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.03125,219684000.0,3862.0,29351200000.0,0.0,29570883999.999996,2.273e-07,1.163e-07,2.19536e-05,Very Low,1.5601501569,1.40415e-05,106.7152149592,0.0,108.2753651161,4.5991908913,Very Low,6.0116468147,Very Low,0.0,9.5105e-06,219684000.0,3862.0,29351200000.0,0.0,29570883999.999996,0.1262836527,8.42016e-05,0.0314801129,Very Low,263.8454713676,3.0927e-06,23.5044632585,0.0,287.3499346261,4.7013324703,Very Low,6.3676040782,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.001559314,3.65e-08,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.23e-08,0.0,False,2.1143e-06 +45,T15003001400,Hawaii,HI,15,Honolulu,County,3,15003,1400,15003001400,2550,280795000.0,0.0,0.1948571852,13.0781432235,Relatively Low,35.3950425494,23.0061349693,12.3585076356,Very Low,23.1897606511,12.8834355828,95007.9675359395,78209.0302122659,0.0022103865,16798.9373236737,0.0,33.8173444421,Relatively Moderate,71.538587804,69.8005698006,1.203,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0,0.0,0.0,0.0,0.0,4.78451e-05,4.8e-09,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,287.0,15.944444444,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.002940859,280795000.0,2550.0,19380000000.0,19660795000.0,0.0167507621,0.0001397988,Very Low,77555.8,0.00217866,16557.816,94113.616,18.8361759451,Relatively Moderate,22.478152645,Relatively Moderate,1.0,0.03125,280795000.0,2550.0,19380000000.0,0.0,19660795000.0,1.80224e-05,2.1e-08,0.0002275779,Very Low,158.1433053447,1.6739e-06,12.7219642386,0.0,170.8652695832,3.5665341864,Very Low,4.0250552399,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,280795000.0,2550.0,19380000000.0,0.0,19660795000.0,2.55348e-05,3.276e-07,0.0002460797,Very Low,71.7003189046,8.3548e-06,63.4963419783,0.0,135.1966608829,2.0842269303,Very Low,2.9971286146,Very Low,0.0,0.01489,280795000.0,2550.0,19380000000.0,19660795000.0,5.8883e-06,2.64e-07,Very Low,24.6192005667,1.00239e-05,76.1820048,100.8012053667,6.3453282955,Very Low,5.5427782779,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.78921e-05,5.85e-08,0.0005670888,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.03125,280795000.0,2550.0,19380000000.0,0.0,19660795000.0,2.273e-07,1.163e-07,2.19536e-05,Very Low,1.9941477908,9.2713e-06,70.4618845481,0.0,72.4560323389,4.022811961,Very Low,4.8650834374,Very Low,0.0,1.05528e-05,280795000.0,2550.0,19380000000.0,0.0,19660795000.0,0.1339019955,8.92813e-05,0.0314801129,Very Low,396.7732396591,2.4025e-06,18.2591281087,0.0,415.0323677677,5.3142818813,Very Low,6.6596369426,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.001559314,3.65e-08,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.24e-08,0.0,False,2.3264e-06 +46,T15003001901,Hawaii,HI,15,Honolulu,County,3,15003,1901,15003001901,837,1117472000.0,0.0,0.328277434,30.7033480191,Relatively High,95.5127235733,89.8773006135,27.1286782082,Relatively High,89.33996893,89.8773006135,1004957.8320852902,995747.3951398876,0.0012118996,9210.4369454027,0.0,36.1665040858,Relatively High,88.0789538478,88.3190883191,2.672,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012,905020382.2971718,677.87117707,5151820945.731768,6056841328.028939,3.66518e-05,4.6e-09,Very Low,2320.9822630745,2.186e-07,1.6615278346,2322.6437909091,4.3651655035,Relatively Low,4.9390552318,Relatively Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,154.0,8.555555555,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0065640198,1117472000.0,837.0,6361200000.0,7478672000.0,0.0167507621,0.0001397988,Very Low,577071.7,0.00094011,7144.836,584216.536,34.6178320726,Relatively High,44.1809219918,Very High,1.0,0.03125,1117472000.0,837.0,6361200000.0,0.0,7478672000.0,1.80224e-05,2.1e-08,0.0002275779,Very Low,629.3584846957,5.494e-07,4.1757976736,0.0,633.5342823693,5.5201621225,Very Low,6.6626088408,Relatively Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,1117472000.0,837.0,6361200000.0,0.0,7478672000.0,2.55348e-05,3.276e-07,0.0002460797,Very Low,285.3437517296,2.7423e-06,20.8417404846,0.0,306.1854922143,2.7370614693,Very Low,4.2093201478,Very Low,0.0,0.01489,1117472000.0,837.0,6361200000.0,7478672000.0,5.8883e-06,2.64e-07,Very Low,97.9763432245,3.2902e-06,25.005622752,122.9819659765,6.7802545464,Very Low,6.3341222119,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0,6.375,870614950.6549523,698.4187222552,5307982289.139232,0.0,6178597239.794184,6.78921e-05,5.85e-08,0.0005670888,Very Low,376812.5932326716,0.0002604826,1979.6674225433,0.0,378792.260655215,32.6741600789,Relatively High,34.7330818955,Very High,1.0,0.03125,1117472000.0,837.0,6361200000.0,0.0,7478672000.0,2.273e-07,1.163e-07,2.19536e-05,Very Low,7.9360541324,3.0432e-06,23.1280773987,0.0,31.0641315311,3.033364655,Very Low,3.9233062707,Very Low,0.0,2.35593e-05,1117472000.0,837.0,6361200000.0,0.0,7478672000.0,0.0599777062,3.99911e-05,0.0314801129,Relatively Low,1579.0273532943,7.886e-07,5.9932902851,0.0,1585.0206435794,8.3067072474,Very Low,11.1332617875,Very Low,5.0,0.022835221,1037497917.9564592,809.0763770808,6148980465.813883,7186478383.770342,0.001559314,3.65e-08,Relatively Low,36942.4776570648,6.747e-07,5.1274664307,36947.6051234956,35.627157479,Relatively High,35.4944142526,Relatively High,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,3.239e-07,0.0,False,0.0003416043 +47,T15003001904,Hawaii,HI,15,Honolulu,County,3,15003,1904,15003001904,3912,544584000.0,0.0,0.0445511515,20.52323289,Relatively Moderate,73.6152545402,76.3803680982,21.1782783212,Relatively Moderate,71.5035950453,80.981595092,478116.6755402327,435047.8831005651,0.0056669464,43068.7924396676,0.0,30.9676490813,Relatively Low,40.8133395344,42.1652421652,-0.579,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.057971012,538132301.3557038,3865.654449825,29378973818.67021,29917106120.025917,4.64411e-05,4.7e-09,Very Low,1448.779777261,1.0507e-06,7.9856652236,1456.7654424846,3.736540736,Relatively Low,3.6200502203,Relatively Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,154.0,8.555555555,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.007598724,544584000.0,3912.0,29731200000.0,30275784000.0,0.0167507621,0.0001397988,Very Low,200288.1,0.00420672,31971.072,232259.172,25.4545960597,Relatively High,27.8165217199,Relatively Moderate,1.0,0.03125,544584000.0,3912.0,29731200000.0,0.0,30275784000.0,1.80224e-05,2.1e-08,0.0002275779,Very Low,306.708858056,2.568e-06,19.5169898436,0.0,326.2258478996,4.4245378574,Very Low,4.5725883466,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,544584000.0,3912.0,29731200000.0,0.0,30275784000.0,2.55348e-05,3.276e-07,0.0002460797,Very Low,139.0581971557,1.28172e-05,97.4108587526,0.0,236.4690559083,2.5111989463,Very Low,3.3068175468,Very Low,0.0,0.01489,544584000.0,3912.0,29731200000.0,30275784000.0,5.8883e-06,2.64e-07,Very Low,47.7473698657,1.53779e-05,116.872157952,164.6195278177,7.4723861251,Very Low,5.9772504184,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0,6.375,527170866.7436609,3780.1623928368,28729234185.559956,0.0,29256405052.30361,6.78921e-05,5.85e-08,0.0005670888,Very Low,228165.8742765172,0.001409851,10714.8678902232,0.0,238880.7421667404,28.0197622945,Relatively High,25.5038085954,Relatively High,1.0,0.03125,544584000.0,3912.0,29731200000.0,0.0,30275784000.0,2.273e-07,1.163e-07,2.19536e-05,Very Low,3.8675225004,1.42233e-05,108.0968205303,0.0,111.9643430307,4.6508406739,Very Low,5.1506348041,Very Low,0.0,1.05528e-05,544584000.0,3912.0,29731200000.0,0.0,30275784000.0,0.1339019955,8.92813e-05,0.0314801129,Very Low,769.5164014548,3.6857e-06,28.0116506514,0.0,797.5280521062,6.6069231193,Very Low,7.5819369394,Very Low,1.0,0.004567044,544584000.0,3912.0,29731200000.0,30275784000.0,0.001559314,3.65e-08,Very Low,3878.2306977544,6.524e-07,4.9584064909,3883.1891042453,16.8131307015,Relatively Moderate,14.342641233,Relatively Moderate,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,3.731e-07,0.0,False,0.0004239595 +48,T15003002202,Hawaii,HI,15,Honolulu,County,3,15003,2202,15003002202,3400,291464000.0,0.0,0.0920274117,17.0347962319,Relatively Low,58.036266652,54.2944785276,16.8452811998,Relatively Low,50.3182611804,55.8282208589,240600.6144384058,206514.8289788662,0.0044849718,34085.7854595395,0.0,32.3157372907,Relatively Moderate,55.9680463984,58.4045584046,0.264,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.057971012,172542690.38601866,2012.7533668393,15296925587.97904,15469468278.365055,7.00448e-05,7.1e-09,Very Low,700.6213058816,8.33e-07,6.33107466,706.9523805416,2.9363189746,Very Low,2.9686154104,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,154.0,8.555555555,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0039757619,291464000.0,3400.0,25840000000.0,26131464000.0,0.0167507621,0.0001397988,Very Low,103980.9,0.00346109,26304.284,130285.184,20.9929559904,Relatively Moderate,23.9395532155,Relatively Moderate,1.0,0.03125,291464000.0,3400.0,25840000000.0,0.0,26131464000.0,1.80224e-05,2.1e-08,0.0002275779,Very Low,164.1520694777,2.2319e-06,16.9626189847,0.0,181.1146884624,3.6364672743,Very Low,3.9217481945,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,291464000.0,3400.0,25840000000.0,0.0,26131464000.0,2.55348e-05,3.276e-07,0.0002460797,Very Low,74.4246220524,1.11397e-05,84.6617893044,0.0,159.0864113568,2.2003953055,Very Low,3.0236787973,Very Low,0.0,0.01489,291464000.0,3400.0,25840000000.0,26131464000.0,5.8883e-06,2.64e-07,Very Low,25.5546240994,1.33653e-05,101.5760064,127.1306304994,6.8556544867,Very Low,5.7226462356,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0,6.375,219965392.44813856,2625.4678449644,19953555621.729477,0.0,20173521014.17761,6.78921e-05,5.85e-08,0.0005670888,Very Low,95203.6602259949,0.0009791956,7441.8869311356,0.0,102645.5471571305,21.1438517348,Relatively Moderate,20.0830898102,Relatively High,1.0,0.03125,291464000.0,3400.0,25840000000.0,0.0,26131464000.0,2.273e-07,1.163e-07,2.19536e-05,Very Low,2.0699168137,1.23617e-05,93.9491793975,0.0,96.0190962112,4.4186617199,Very Low,5.1065299405,Very Low,0.0,1.05528e-05,291464000.0,3400.0,25840000000.0,0.0,26131464000.0,0.1339019955,8.92813e-05,0.0314801129,Very Low,411.8489129934,3.2034e-06,24.3455041449,0.0,436.1944171383,5.4031119357,Very Low,6.470278964,Very Low,3.0,0.013701132,278575886.5716552,3100.1926962857,23561464491.771404,23840040378.343056,0.001559314,3.65e-08,Very Low,5951.5973015532,1.5511e-06,11.7883555124,5963.3856570656,19.3976911898,Relatively Moderate,17.2677765053,Relatively Moderate,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,3.007e-07,0.0,False,0.0003313697 +49,T15003002600,Hawaii,HI,15,Honolulu,County,3,15003,2600,15003002600,4249,791449000.0,0.0,0.2563620754,25.6530656656,Relatively High,88.7048213476,87.1165644172,21.1208678596,Relatively Moderate,71.2740070664,80.6748466258,474238.944278784,431102.878061862,0.0056757982,43136.0662169221,0.0,38.8131066797,Relatively High,95.9291986978,94.5868945869,4.327,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.043478259,206319525.33443108,1107.6540157938,8418170520.03298,8624490045.367409,1.35471e-05,1.7e-09,Very Low,121.522717025,8.2e-08,0.6229487767,122.1456658017,1.6354321518,Very Low,1.9858551825,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,154.0,8.555555555,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0035502375,791449000.0,4249.0,32292400000.0,33083849000.000004,0.0167507621,0.0001397988,Very Low,427356.7,0.0056226,42731.76,470088.46,32.1984610759,Relatively High,44.1003359351,Very High,1.0,0.03125,791449000.0,4249.0,32292400000.0,0.0,33083849000.000004,1.80224e-05,2.1e-08,0.0002275779,Very Low,445.7428404058,2.7892e-06,21.1982847254,0.0,466.9411251311,4.9863470369,Very Low,6.458725985,Relatively Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,791449000.0,4249.0,32292400000.0,0.0,33083849000.000004,2.55348e-05,3.276e-07,0.0002460797,Very Low,202.0945732534,1.39214e-05,105.8023361042,0.0,307.8969093577,2.7421515792,Very Low,4.5257518719,Very Low,0.0,0.01489,791449000.0,4249.0,32292400000.0,33083849000.000004,5.8883e-06,2.64e-07,Very Low,69.3916973926,1.67026e-05,126.940132704,196.3318300966,7.9243276913,Very Low,7.9446494857,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.78921e-05,5.85e-08,0.0005670888,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.03125,791449000.0,4249.0,32292400000.0,0.0,33083849000.000004,2.273e-07,1.163e-07,2.19536e-05,Very Low,5.6207064759,1.54485e-05,117.4088421353,0.0,123.0295486112,4.7992645854,Very Low,6.6615326154,Very Low,0.0,1.05528e-05,791449000.0,4249.0,32292400000.0,0.0,33083849000.000004,0.1339019955,8.92813e-05,0.0314801129,Relatively Low,1118.3453542795,4.0033e-06,30.4247197387,0.0,1148.7700740183,7.461537084,Very Low,10.7322937623,Very Low,0.0,0.004587,249345255.4642155,1499.5410201852,11396511753.407207,11645857008.871424,0.001559314,3.65e-08,Very Low,1783.4601730298,2.512e-07,1.9089527377,1785.3691257675,12.9766248366,Relatively Moderate,13.8743441858,Relatively Moderate,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.25e-08,0.0,False,2.4799e-06 +50,T15003002800,Hawaii,HI,15,Honolulu,County,3,15003,2800,15003002800,3678,390551000.0,0.0,0.8899299747,13.276247683,Relatively Low,36.7437000784,24.5398773006,14.0640371335,Relatively Low,33.7961753667,23.9263803681,140020.6050686634,112962.0459764169,0.0035603367,27058.5590922465,0.0,30.1664721027,Relatively Low,32.6375400104,35.8974358974,-1.08,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0,0.0,0.0,0.0,0.0,4.78451e-05,4.8e-09,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,287.0,15.944444444,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0029738504,390551000.0,3678.0,27952800000.0,28343351000.0,0.0167507621,0.0001397988,Very Low,110889.3,0.00350644,26648.944,137538.244,21.3755062984,Relatively Moderate,22.7546054907,Relatively Moderate,1.0,0.03125,390551000.0,3678.0,27952800000.0,0.0,28343351000.0,1.80224e-05,2.1e-08,0.0002275779,Very Low,219.9577130893,2.4144e-06,18.3495625376,0.0,238.3072756269,3.9848094602,Very Low,4.0116038184,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,390551000.0,3678.0,27952800000.0,0.0,28343351000.0,2.55348e-05,3.276e-07,0.0002460797,Very Low,99.7262460104,1.20505e-05,91.5841356063,0.0,191.3103816168,2.3399281779,Very Low,3.0015662033,Very Low,0.0,0.01489,390551000.0,3678.0,27952800000.0,28343351000.0,5.8883e-06,2.64e-07,Very Low,34.242252891,1.44581e-05,109.881338688,144.123591579,7.1484279941,Very Low,5.5701767866,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0,6.375,2748002.747491579,22.2384646731,169012331.51587087,0.0,171760334.26336247,6.78921e-05,5.85e-08,0.0005670888,Very Low,1189.3685500276,8.2941e-06,63.0349139248,0.0,1252.4034639523,4.8676441341,Very Low,4.315942999,Very Low,1.0,0.03125,390551000.0,3678.0,27952800000.0,0.0,28343351000.0,2.273e-07,1.163e-07,2.19536e-05,Very Low,2.7736121151,1.33725e-05,101.6309064222,0.0,104.4045185373,4.5437174273,Very Low,4.9018147862,Very Low,0.0,2.97603e-05,390551000.0,3678.0,27952800000.0,0.0,28343351000.0,0.045313657,3.02136e-05,0.0314801129,Very Low,526.6776022834,3.3071e-06,25.1342350676,0.0,551.811837351,5.8436061145,Very Low,6.5323723162,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.001559314,3.65e-08,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.47e-08,0.0,False,5.3072e-06 +51,T15003003000,Hawaii,HI,15,Honolulu,County,3,15003,3000,15003003000,4321,523641000.0,0.0,0.5751776938,14.3058905963,Relatively Low,43.0649307799,31.2883435583,15.9122177661,Relatively Low,45.0638584528,44.1717791411,202793.5219945092,170878.3972204398,0.0041993585,31915.1247740693,0.0,28.7304303328,Relatively Low,20.3526386343,23.6467236467,-1.978,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.002,251966.9345973358,2.0791899878,15801843.90718578,16053810.841783118,6.15999e-05,6.2e-09,Very Low,0.0310422895,0.0,0.0001956324,0.0312379219,0.1038087327,Very Low,0.0933066629,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,154.0,8.555555555,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0029729141,523641000.0,4321.0,32839600000.0,33363241000.000004,0.0167507621,0.0001397988,Very Low,166244.1,0.00412461,31347.036,197591.136,24.1192836215,Relatively Moderate,24.453155646,Relatively Moderate,1.0,0.03125,523641000.0,4321.0,32839600000.0,0.0,33363241000.000004,1.80224e-05,2.1e-08,0.0002275779,Very Low,294.9137931729,2.8365e-06,21.5574931274,0.0,316.4712863003,4.3799911192,Very Low,4.1995360505,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,523641000.0,4321.0,32839600000.0,0.0,33363241000.000004,2.55348e-05,3.276e-07,0.0002460797,Very Low,133.7104531473,1.41573e-05,107.5951739954,0.0,241.3056271427,2.5282042934,Very Low,3.0886960415,Very Low,0.0,0.01489,523641000.0,4321.0,32839600000.0,33363241000.000004,5.8883e-06,2.64e-07,Very Low,45.9111551273,1.69857e-05,129.091154016,175.0023091433,7.6262923178,Very Low,5.6596488655,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0,6.375,7892777.526380499,56.2731231073,427675735.6151205,0.0,435568513.14150095,6.78921e-05,5.85e-08,0.0005670888,Very Low,3416.088783321,2.09876e-05,159.5061315374,0.0,3575.5949148584,6.9053681457,Relatively Low,5.831245485,Relatively Low,1.0,0.03125,523641000.0,4321.0,32839600000.0,0.0,33363241000.000004,2.273e-07,1.163e-07,2.19536e-05,Very Low,3.7187896627,1.57103e-05,119.3983541696,0.0,123.1171438323,4.800403317,Very Low,4.9322027091,Very Low,0.0,2.01545e-05,523641000.0,4321.0,32839600000.0,0.0,33363241000.000004,0.0701101201,4.6747e-05,0.0314801129,Very Low,739.9232037191,4.0711e-06,30.9402715912,0.0,770.8634753103,6.5324549018,Very Low,6.9548406651,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.001559314,3.65e-08,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.73e-08,0.0,False,8.8501e-06 +52,T15003003101,Hawaii,HI,15,Honolulu,County,3,15003,3101,15003003101,3687,492314000.0,0.0,2.078905601,16.6138274719,Relatively Low,55.9534775018,51.8404907975,16.7794100011,Relatively Low,49.9511953697,55.2147239264,237789.1283950368,204090.5852518204,0.0044340188,33698.5431432164,0.0,31.6408936082,Relatively Moderate,48.2340710749,50.1424501425,-0.158,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.002,4891339.637564942,36.6318431808,278402008.173919,283293347.81148404,9.81502e-05,1.02e-08,Very Low,0.9601719971,7e-10,0.0056849324,0.9658569295,0.3258197788,Very Low,0.3225245827,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,287.0,15.944444444,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0029680742,492314000.0,3687.0,28021200000.0,28513514000.0,0.0167507621,0.0001397988,Very Low,190812.3,0.00429479,32640.404,223452.704,25.1287251725,Relatively High,28.0574096887,Relatively Moderate,1.0,0.03125,492314000.0,3687.0,28021200000.0,0.0,28513514000.0,1.80224e-05,2.1e-08,0.0002275779,Very Low,277.2704757248,2.4203e-06,18.3944635877,0.0,295.6649393125,4.2818199548,Very Low,4.5212976106,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,492314000.0,3687.0,28021200000.0,0.0,28513514000.0,2.55348e-05,3.276e-07,0.0002460797,Very Low,125.7111800466,1.208e-05,91.8082403427,0.0,217.5194203893,2.4422438638,Very Low,3.2859325425,Very Low,0.0,0.01489,492314000.0,3687.0,28021200000.0,28513514000.0,5.8883e-06,2.64e-07,Very Low,43.1645047377,1.44934e-05,110.150216352,153.3147210897,7.2972653803,Very Low,5.9640707912,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0,6.375,28382955.02045255,252.3501170301,1917860889.4284637,0.0,1946243844.448916,6.78921e-05,5.85e-08,0.0005670888,Very Low,12284.4833721466,9.41166e-05,715.286245687,0.0,12999.7696178336,10.6181604917,Relatively Low,9.8748471608,Relatively Low,1.0,0.03125,492314000.0,3687.0,28021200000.0,0.0,28513514000.0,2.273e-07,1.163e-07,2.19536e-05,Very Low,3.496311813,1.34052e-05,101.8795954253,0.0,105.3759072384,4.557765662,Very Low,5.1572928361,Very Low,0.0,5.68811e-05,492314000.0,3687.0,28021200000.0,0.0,28513514000.0,0.0193976418,1.29337e-05,0.0314801129,Very Low,543.1992353547,2.7125e-06,20.6146968892,0.0,563.8139322439,5.885669415,Very Low,6.9010131938,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.001559314,3.65e-08,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,3.78e-08,0.0,False,2.69712e-05 +53,T15003003407,Hawaii,HI,15,Honolulu,County,3,15003,3407,15003003407,913,159228000.0,0.0,0.0477917056,18.3386697912,Relatively Moderate,64.3052557775,65.3374233129,12.1430194003,Very Low,21.853476127,12.2699386503,90124.32051478,80912.8216251666,0.0012120393,9211.4988896134,0.0,48.2609182352,Very High,99.6593986814,100.0,10.235,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0,0.0,0.0,0.0,0.0,4.78451e-05,4.8e-09,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,154.0,8.555555555,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.004633313,159228000.0,913.0,6938800000.0,7098028000.0,0.0167507621,0.0001397988,Very Low,80542.4,0.00120068,9125.168,89667.568,18.5347634922,Relatively Moderate,31.56537885,Relatively High,1.0,0.03125,159228000.0,913.0,6938800000.0,0.0,7098028000.0,1.80224e-05,2.1e-08,0.0002275779,Very Low,89.6769608555,5.993e-07,4.554962098,0.0,94.2319229535,2.9247885716,Very Low,4.7105976451,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,159228000.0,913.0,6938800000.0,0.0,7098028000.0,2.55348e-05,3.276e-07,0.0002460797,Very Low,40.6584817341,2.9913e-06,22.7341804809,0.0,63.392662215,1.6192081391,Very Low,3.3229142555,Very Low,0.0,0.01489,159228000.0,913.0,6938800000.0,7098028000.0,5.8883e-06,2.64e-07,Very Low,13.9605978306,3.589e-06,27.276145248,41.2367430786,4.7104273192,Very Low,5.8720506988,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.78921e-05,5.85e-08,0.0005670888,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.03125,159228000.0,913.0,6938800000.0,0.0,7098028000.0,2.273e-07,1.163e-07,2.19536e-05,Very Low,1.1308041968,3.3195e-06,25.2281178794,0.0,26.3589220762,2.8717553046,Very Low,4.9563740207,Very Low,0.0,1.05528e-05,159228000.0,913.0,6938800000.0,0.0,7098028000.0,0.1339019955,8.92813e-05,0.0314801129,Relatively Low,224.9947805496,8.602e-07,6.5374839071,0.0,231.5322644568,4.3747620601,Very Low,7.8239142645,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.001559314,3.65e-08,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.24e-08,0.0,False,2.3264e-06 +54,T15003003501,Hawaii,HI,15,Honolulu,County,3,15003,3501,15003003501,2282,361961000.0,0.0,0.1149769285,19.8211238437,Relatively Moderate,70.6952253949,72.6993865031,15.9378488267,Relatively Low,45.2315814075,44.7852760736,203775.0677746005,184706.9433557533,0.0025089637,19068.1244188472,0.0,39.7422161099,Relatively High,97.1001012229,95.4415954416,4.908,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0,0.0,0.0,0.0,0.0,4.78451e-05,4.8e-09,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,154.0,8.555555555,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.004633313,361961000.0,2282.0,17343200000.0,17705161000.0,0.0167507621,0.0001397988,Very Low,183464.6,0.00248054,18852.104,202316.704,24.3100488847,Relatively Moderate,34.0930840747,Relatively High,1.0,0.03125,361961000.0,2282.0,17343200000.0,0.0,17705161000.0,1.80224e-05,2.1e-08,0.0002275779,Very Low,203.8558697479,1.498e-06,11.3849107421,0.0,215.24078049,3.85185543,Very Low,5.1086719073,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,361961000.0,2282.0,17343200000.0,0.0,17705161000.0,2.55348e-05,3.276e-07,0.0002460797,Very Low,92.4258591891,7.4767e-06,56.823000939,0.0,149.2488601282,2.1540710416,Very Low,3.6402648222,Very Low,0.0,0.01489,361961000.0,2282.0,17343200000.0,17705161000.0,5.8883e-06,2.64e-07,Very Low,31.7355738398,8.9705e-06,68.175425472,99.9109993118,6.3265938633,Very Low,6.4946528924,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.78921e-05,5.85e-08,0.0005670888,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.03125,361961000.0,2282.0,17343200000.0,0.0,17705161000.0,2.273e-07,1.163e-07,2.19536e-05,Very Low,2.570571871,8.2969e-06,63.0564786427,0.0,65.6270505137,3.89223612,Very Low,5.5318744949,Very Low,0.0,1.05528e-05,361961000.0,2282.0,17343200000.0,0.0,17705161000.0,0.1339019955,8.92813e-05,0.0314801129,Relatively Low,511.4636606785,2.15e-06,16.3401295467,0.0,527.8037902252,5.7575992375,Very Low,8.4795135456,Very Low,0.0,0.004587,55964729.537551165,188.8993255307,1435634874.0330632,1491599603.5706143,0.001559314,3.65e-08,Very Low,400.291820427,3.16e-08,0.2404735047,400.5322939317,7.8849374944,Relatively Low,8.6322228692,Relatively Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,November 2021,1.24e-08,0.0,False,2.3264e-06 +55,T15003004600,Hawaii,HI,15,Honolulu,County,3,15003,4600,15003004600,3735,483204000.0,17799.9354685802,2.639124545,16.4638912986,Relatively Low,55.1767277526,50.0,15.6406606485,Relatively Low,43.4856129449,41.1042944785,192587.1103315401,163440.9148912364,0.003835001,29146.0077957004,0.1876446033,33.6382390098,Relatively Moderate,69.8861926518,68.0911680912,1.091,51.402798,Relatively Low,13.6493795737,60.0,2.5701399,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0,0.0,0.0,0.0,0.0,4.78451e-05,4.8e-09,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0,2.1774e-06,2.2062e-06,0.0080465986,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,4.09e-07,No Rating,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,0.0029215956,483204000.0,3735.0,28386000000.0,28869204000.0,0.0167507621,0.0001397988,Very Low,162417.5,0.00378905,28796.78,191214.28,23.8569741112,Relatively Moderate,28.3189396515,Relatively Moderate,1.0,0.03125,483204000.0,3735.0,28386000000.0,17799.9354685802,28869221799.935463,1.80224e-05,2.1e-08,0.0002275779,Very Low,272.139737921,2.4518e-06,18.6339358542,0.126589775,290.9002635501,4.258694604,Very Low,4.7807463515,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.0,1.6e-09,1.005e-07,7.61839e-05,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.01,483204000.0,3735.0,28386000000.0,17799.9354685802,28869221799.935463,2.55348e-05,3.276e-07,0.0002460797,Very Low,123.3849637492,1.22373e-05,93.0034656035,0.0438020271,216.4322313799,2.4381681868,Very Low,3.4875286844,Very Low,0.0,0.01489,483204000.0,3735.0,28386000000.0,28869204000.0,5.8883e-06,2.64e-07,Very Low,42.3657693002,1.46821e-05,111.58423056,153.9499998602,7.3073305357,Very Low,6.3493009578,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,6.78921e-05,5.85e-08,0.0005670888,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,1.0,0.03125,483204000.0,3735.0,28386000000.0,17799.9354685802,28869221799.935463,2.273e-07,1.163e-07,2.19536e-05,Very Low,3.431614484,1.35797e-05,103.2059367729,0.0122116541,106.649762911,4.57605794,Very Low,5.504854264,Very Low,0.0,7.90165e-05,483204000.0,3735.0,28386000000.0,17799.9354685802,28869221799.935463,0.0152455823,1.01652e-05,0.0035842084,Very Low,582.0928057819,3e-06,22.8002269098,0.0050411471,604.8980738388,6.0252906004,Very Low,7.5107533908,Very Low,0.0,0.0,0.0,0.0,0.0,0.0,0.001559314,3.65e-08,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,0.0,0.0,0.0,0.0,0.0,0.0,0.0477752648,0.0001095931,No Rating,0.0,0.0,0.0,0.0,0.0,No Expected Annual Losses,0.0,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0,0.0,0.0,0.0,0.0,0.0,0.0,8.51e-08,1.057e-07,0.0,No,,,,,,,,,,,1.23e-08,4.599e-07,True,2.118e-06 diff --git a/data/data-pipeline/data_pipeline/tests/sources/national_risk_index/test_etl.py b/data/data-pipeline/data_pipeline/tests/sources/national_risk_index/test_etl.py index 1ee342eb..c8c9c5a3 100644 --- a/data/data-pipeline/data_pipeline/tests/sources/national_risk_index/test_etl.py +++ b/data/data-pipeline/data_pipeline/tests/sources/national_risk_index/test_etl.py @@ -123,6 +123,7 @@ class TestNationalRiskIndexETL(TestETL): etl.EXPECTED_POPULATION_LOSS_RATE_FIELD_NAME, etl.EXPECTED_AGRICULTURE_LOSS_RATE_FIELD_NAME, etl.EXPECTED_BUILDING_LOSS_RATE_FIELD_NAME, + etl.CONTAINS_AGRIVALUE, ] def test_get_output_file_path(self, mock_etl, mock_paths):