Issue 1075: Add refactored ETL tests to NRI (#1088)

* Adds a substantially refactored ETL test to the National Risk Index, to be used as a model for other tests
This commit is contained in:
Lucas Merrill Brown 2022-02-08 19:05:32 -05:00 committed by GitHub
parent f5fe8d90e2
commit 43e005cc10
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
41 changed files with 1155 additions and 619 deletions

View file

View file

@ -1,8 +1,9 @@
from pathlib import Path
import enum
import pathlib
import typing
from typing import Optional
import pandas as pd
import yaml
from data_pipeline.config import settings
from data_pipeline.utils import (
@ -14,6 +15,13 @@ from data_pipeline.utils import (
logger = get_module_logger(__name__)
class ValidGeoLevel(enum.Enum):
"""Enum used for indicating output data's geographic resolution."""
CENSUS_TRACT = enum.auto()
CENSUS_BLOCK_GROUP = enum.auto()
class ExtractTransformLoad:
"""
A class used to instantiate an ETL object to retrieve and process data from
@ -26,78 +34,74 @@ class ExtractTransformLoad:
GEOID_TRACT_FIELD_NAME (str): The common column name for a Census Tract identifier
"""
APP_ROOT: Path = settings.APP_ROOT
DATA_PATH: Path = APP_ROOT / "data"
TMP_PATH: Path = DATA_PATH / "tmp"
FILES_PATH: Path = settings.APP_ROOT / "files"
APP_ROOT: pathlib.Path = settings.APP_ROOT
# Directories
DATA_PATH: pathlib.Path = APP_ROOT / "data"
TMP_PATH: pathlib.Path = DATA_PATH / "tmp"
# Parameters
GEOID_FIELD_NAME: str = "GEOID10"
GEOID_TRACT_FIELD_NAME: str = "GEOID10_TRACT"
# Parameters that will be changed by children of the class
# NAME is used to create output path and populate logger info.
NAME: str = None
# LAST_UPDATED_YEAR is used to create output path.
LAST_UPDATED_YEAR: int = None
# SOURCE_URL is used to extract source data in extract().
SOURCE_URL: str = None
# GEO_LEVEL is used to identify whether output data is at the unit of the tract or
# census block group.
# TODO: add tests that enforce seeing the expected geographic identifier field
# in the output file based on this geography level.
GEO_LEVEL: ValidGeoLevel = None
# COLUMNS_TO_KEEP to used to identify which columns to keep in the output df.
COLUMNS_TO_KEEP: typing.List[str] = None
# Thirteen digits in a census block group ID.
EXPECTED_CENSUS_BLOCK_GROUPS_CHARACTER_LENGTH: int = 13
# TODO: investigate. Census says there are only 217,740 CBGs in the US. This might
# be from CBGs at different time periods.
EXPECTED_MAX_CENSUS_BLOCK_GROUPS: int = 250000
# Eleven digits in a census tract ID.
EXPECTED_CENSUS_TRACTS_CHARACTER_LENGTH: int = 11
# TODO: investigate. Census says there are only 74,134 tracts in the US,
# Puerto Rico, and island areas. This might be from tracts at different time
# periods. https://github.com/usds/justice40-tool/issues/964
EXPECTED_MAX_CENSUS_TRACTS: int = 74160
def __init__(self, config_path: Path) -> None:
"""Inits the class with instance specific variables"""
output_df: pd.DataFrame = None
# set by _get_yaml_config()
self.NAME: str = None
self.SOURCE_URL: str = None
self.GEOID_COL: str = None
self.GEO_LEVEL: str = None
self.SCORE_COLS: list = None
self.FIPS_CODES: pd.DataFrame = None
self.OUTPUT_PATH: Path = None
self.CENSUS_CSV: Path = None
# This is a classmethod so it can be used by `get_data_frame` without
# needing to create an instance of the class. This is a use case in `etl_score`.
@classmethod
def _get_output_file_path(cls) -> pathlib.Path:
"""Generate the output file path."""
if cls.NAME is None:
raise NotImplementedError(
f"Child ETL class needs to specify `cls.NAME` (currently "
f"{cls.NAME}) and `cls.LAST_UPDATED_YEAR` (currently "
f"{cls.LAST_UPDATED_YEAR})."
)
self._get_yaml_config(config_path)
def _get_yaml_config(self, config_path: Path) -> None:
"""Reads the YAML configuration file for the dataset and stores
the properies in the instance (upcoming feature)"""
# parse the yaml config file
try:
with open(config_path, "r", encoding="utf-8") as file:
config = yaml.safe_load(file)
except (FileNotFoundError, yaml.YAMLError) as err:
raise err
# set dataset specific attributes
census_dir = self.DATA_PATH / "census" / "csv"
if config["is_census"]:
csv_dir = census_dir
else:
self.CENSUS_CSV = census_dir / "us.csv"
self.FIPS_CODES = self._get_census_fips_codes()
csv_dir = self.DATA_PATH / "dataset"
# parse name and set output path
name = config.get("name")
snake_name = name.replace(" ", "_").lower() # converts to snake case
output_dir = snake_name + (config.get("year") or "")
self.OUTPUT_PATH = csv_dir / output_dir / "usa.csv"
self.OUTPUT_PATH.parent.mkdir(parents=True, exist_ok=True)
# set class attributes
attrs = ["NAME", "SOURCE_URL", "GEOID_COL", "GEO_LEVEL", "SCORE_COLS"]
for attr in attrs:
setattr(self, attr, config[attr.lower()])
def check_ttl(self) -> None:
"""Checks if the ETL process can be run based on a the TLL value on the
YAML config (upcoming feature)"""
pass
output_file_path = (
cls.DATA_PATH
/ "dataset"
/ f"{cls.NAME}_{cls.LAST_UPDATED_YEAR}"
/ "usa.csv"
)
return output_file_path
def extract(
self,
source_url: str = None,
extract_path: Path = None,
extract_path: pathlib.Path = None,
verify: Optional[bool] = True,
) -> None:
"""Extract the data from a remote source. By default it provides code
@ -107,7 +111,10 @@ class ExtractTransformLoad:
# this can be accessed via super().extract()
if source_url and extract_path:
unzip_file_from_url(
source_url, self.TMP_PATH, extract_path, verify=verify
file_url=source_url,
download_path=self.TMP_PATH,
unzipped_file_path=extract_path,
verify=verify,
)
def transform(self) -> None:
@ -116,63 +123,146 @@ class ExtractTransformLoad:
raise NotImplementedError
def load(self) -> None:
"""Saves the transformed data in the specified local data folder or remote AWS S3
bucket"""
def validate(self) -> None:
"""Validates the output.
raise NotImplementedError
def cleanup(self) -> None:
"""Clears out any files stored in the TMP folder"""
remove_all_from_dir(self.TMP_PATH)
# TODO: Add test for this
def _get_census_fips_codes(self) -> pd.DataFrame:
"""Loads FIPS codes for each Census block group and tract"""
# check that the census data exists
if not self.CENSUS_CSV.exists():
logger.info("Census data not found, please run download_csv first")
# load the census data
df = pd.read_csv(
self.CENSUS_CSV, dtype={self.GEOID_FIELD_NAME: "string"}
)
# extract Census tract FIPS code from Census block group
df[self.GEOID_TRACT_FIELD_NAME] = df[self.GEOID_FIELD_NAME].str[0:11]
return df[[self.GEOID_FIELD_NAME, self.GEOID_TRACT_FIELD_NAME]]
# TODO: Create tests
def validate_output(self) -> None:
"""Checks that the output of the ETL process adheres to the contract
expected by the score module
Contract conditions:
- Output is saved as usa.csv at the path specified by self.OUTPUT_PATH
- The output csv has a column named GEOID10 which stores each of the
Census block group FIPS codes in data/census/csv/usa.csv
- The output csv has a column named GEOID10_TRACT which stores each of
Census tract FIPS codes associated with each Census block group
- The output csv has each of the columns expected by the score and the
name and dtype of those columns match the format expected by score
Runs after the `transform` step and before `load`.
"""
# read in output file
# and check that GEOID cols are present
assert self.OUTPUT_PATH.exists(), f"No file found at {self.OUTPUT_PATH}"
df_output = pd.read_csv(
self.OUTPUT_PATH,
# TODO: remove this once all ETL classes are converted to using the new
# base class parameters and patterns.
if self.GEO_LEVEL is None:
logger.info(
"Skipping validation step for this class because it does not "
"seem to be converted to new ETL class patterns."
)
return
if self.COLUMNS_TO_KEEP is None:
raise NotImplementedError(
"`self.COLUMNS_TO_KEEP` must be specified."
)
if self.output_df is None:
raise NotImplementedError(
"The `transform` step must set `self.output_df`."
)
for column_to_keep in self.COLUMNS_TO_KEEP:
if column_to_keep not in self.output_df.columns:
raise ValueError(
f"Missing column: `{column_to_keep}` is missing from "
f"output"
)
for (
geo_level,
geo_field,
expected_geo_field_characters,
expected_rows,
) in [
(
ValidGeoLevel.CENSUS_TRACT,
self.GEOID_TRACT_FIELD_NAME,
self.EXPECTED_CENSUS_TRACTS_CHARACTER_LENGTH,
self.EXPECTED_MAX_CENSUS_TRACTS,
),
(
ValidGeoLevel.CENSUS_BLOCK_GROUP,
self.GEOID_FIELD_NAME,
self.EXPECTED_CENSUS_BLOCK_GROUPS_CHARACTER_LENGTH,
self.EXPECTED_MAX_CENSUS_BLOCK_GROUPS,
),
]:
if self.GEO_LEVEL is geo_level:
if geo_field not in self.COLUMNS_TO_KEEP:
raise ValueError(
f"Must have `{geo_field}` in columns if "
f"specifying geo level as `{geo_level} "
)
if self.output_df.shape[0] > expected_rows:
raise ValueError(
f"Too many rows: `{self.output_df.shape[0]}` rows in "
f"output exceeds expectation of `{expected_rows}` "
f"rows."
)
if self.output_df[geo_field].str.len().nunique() > 1:
raise ValueError(
f"Multiple character lengths for geo field "
f"present: {self.output_df[geo_field].str.len().unique()}."
)
elif (
len(self.output_df[geo_field].array[0])
!= expected_geo_field_characters
):
raise ValueError(
"Wrong character length: the census geography data "
"has the wrong length."
)
duplicate_geo_field_values = (
self.output_df[geo_field].shape[0]
- self.output_df[geo_field].nunique()
)
if duplicate_geo_field_values > 0:
raise ValueError(
f"Duplicate values: There are {duplicate_geo_field_values} "
f"duplicate values in "
f"`{geo_field}`."
)
def load(self, float_format=None) -> None:
"""Saves the transformed data.
Data is written in the specified local data folder or remote AWS S3 bucket.
Uses the directory from `self.OUTPUT_DIR` and the file name from
`self._get_output_file_path`.
"""
logger.info(f"Saving `{self.NAME}` CSV")
# Create directory if necessary.
output_file_path = self._get_output_file_path()
output_file_path.parent.mkdir(parents=True, exist_ok=True)
# Write nationwide csv
self.output_df[self.COLUMNS_TO_KEEP].to_csv(
output_file_path, index=False, float_format=float_format
)
logger.info(f"File written to `{output_file_path}`.")
# This is a classmethod so it can be used without needing to create an instance of
# the class. This is a use case in `etl_score`.
@classmethod
def get_data_frame(cls) -> pd.DataFrame:
"""Return the output data frame for this class.
Must be run after a full ETL process has been run for this class.
If the ETL has been not run for this class, this will error.
"""
# Read in output file
output_file_path = cls._get_output_file_path()
if not output_file_path.exists():
raise ValueError(
f"Make sure to run ETL process first for `{cls}`. "
f"No file found at `{output_file_path}`."
)
output_df = pd.read_csv(
output_file_path,
dtype={
self.GEOID_FIELD_NAME: "string",
self.GEOID_TRACT_FIELD_NAME: "string",
# Not all outputs will have both a Census Block Group ID and a
# Tract ID, but these will be ignored if they're not present.
cls.GEOID_FIELD_NAME: "string",
cls.GEOID_TRACT_FIELD_NAME: "string",
},
)
# check that the GEOID cols in the output match census data
geoid_cols = [self.GEOID_FIELD_NAME, self.GEOID_TRACT_FIELD_NAME]
for col in geoid_cols:
assert col in self.FIPS_CODES.columns
assert self.FIPS_CODES.equals(df_output[geoid_cols])
return output_df
# check that the score columns are in the output
for col in self.SCORE_COLS:
assert col in df_output.columns, f"{col} is missing from output"
def cleanup(self) -> None:
"""Clears out any files stored in the TMP folder"""
remove_all_from_dir(self.TMP_PATH)

View file

@ -60,6 +60,9 @@ def etl_runner(dataset_to_run: str = None) -> None:
# run load
etl_instance.load()
# run validate
etl_instance.validate()
# cleanup
etl_instance.cleanup()

View file

@ -5,6 +5,9 @@ import numpy as np
import pandas as pd
from data_pipeline.etl.base import ExtractTransformLoad
from data_pipeline.etl.sources.national_risk_index.etl import (
NationalRiskIndexETL,
)
from data_pipeline.score.score_runner import ScoreRunner
from data_pipeline.score import field_names
from data_pipeline.etl.score import constants
@ -111,17 +114,7 @@ class ScoreETL(ExtractTransformLoad):
)
# Load FEMA national risk index data
national_risk_index_csv = (
constants.DATA_PATH
/ "dataset"
/ "national_risk_index_2020"
/ "usa.csv"
)
self.national_risk_index_df = pd.read_csv(
national_risk_index_csv,
dtype={self.GEOID_TRACT_FIELD_NAME: "string"},
low_memory=False,
)
self.national_risk_index_df = NationalRiskIndexETL.get_data_frame()
# Load GeoCorr Urban Rural Map
geocorr_urban_rural_csv = (

View file

@ -55,11 +55,6 @@ class CDCLifeExpectancy(ExtractTransformLoad):
}
)
def validate(self) -> None:
logger.info("Validating CDC Life Expectancy Data")
pass
def load(self) -> None:
logger.info("Saving CDC Life Expectancy CSV")

View file

@ -74,8 +74,3 @@ class CDCPlacesETL(ExtractTransformLoad):
self.OUTPUT_PATH.mkdir(parents=True, exist_ok=True)
self.df.to_csv(path_or_buf=self.OUTPUT_PATH / "usa.csv", index=False)
def validate(self) -> None:
logger.info("Validating Census ACS Data")
pass

View file

@ -377,8 +377,3 @@ class CensusACSETL(ExtractTransformLoad):
self.OUTPUT_PATH.mkdir(parents=True, exist_ok=True)
self.df.to_csv(path_or_buf=self.OUTPUT_PATH / "usa.csv", index=False)
def validate(self) -> None:
logger.info("Validating Census ACS Data")
pass

View file

@ -190,8 +190,3 @@ class CensusACS2010ETL(ExtractTransformLoad):
self.OUTPUT_PATH.mkdir(parents=True, exist_ok=True)
self.df.to_csv(path_or_buf=self.OUTPUT_PATH / "usa.csv", index=False)
def validate(self) -> None:
logger.info("Validating Census ACS Data")
pass

View file

@ -316,11 +316,6 @@ class CensusACSMedianIncomeETL(ExtractTransformLoad):
self.output_df = merged_with_state_income_df
def validate(self) -> None:
logger.info("Validating Census ACS Median Income Data")
pass
def load(self) -> None:
logger.info("Saving Census ACS Median Income CSV")

View file

@ -405,8 +405,3 @@ class CensusDecennialETL(ExtractTransformLoad):
self.df_all[columns_to_include].to_csv(
path_or_buf=self.OUTPUT_PATH / "usa.csv", index=False
)
def validate(self) -> None:
logger.info("Validating Census Decennial Data")
pass

View file

@ -106,11 +106,6 @@ class ChildOpportunityIndex(ExtractTransformLoad):
self.output_df = output_df
def validate(self) -> None:
logger.info("Validating data.")
pass
def load(self) -> None:
logger.info("Saving CSV")

View file

@ -72,11 +72,6 @@ class DOEEnergyBurden(ExtractTransformLoad):
self.output_df = output_df
def validate(self) -> None:
logger.info("Validating DOE Energy Burden Data")
pass
def load(self) -> None:
logger.info("Saving DOE Energy Burden CSV")

View file

@ -103,11 +103,6 @@ class EnergyDefinitionAlternativeDraft(ExtractTransformLoad):
"bool"
)
def validate(self) -> None:
logger.info("Validating data")
pass
def load(self) -> None:
logger.info("Saving CSV")

View file

@ -144,11 +144,6 @@ class EPARiskScreeningEnvironmentalIndicatorsETL(ExtractTransformLoad):
f"GEOID Tract must be length of {expected_census_tract_field_length}"
)
def validate(self) -> None:
logger.info("Validating data.")
pass
def load(self) -> None:
logger.info("Saving CSV")

View file

@ -69,8 +69,3 @@ class GeoCorrETL(ExtractTransformLoad):
self.OUTPUT_PATH.mkdir(parents=True, exist_ok=True)
self.df.to_csv(path_or_buf=self.OUTPUT_PATH / "usa.csv", index=False)
def validate(self) -> None:
logger.info("Validating GeoCorr Urban Rural Map Data")
pass

View file

@ -5,7 +5,7 @@
import pandas as pd
from data_pipeline.etl.base import ExtractTransformLoad
from data_pipeline.etl.base import ExtractTransformLoad, ValidGeoLevel
from data_pipeline.utils import get_module_logger
logger = get_module_logger(__name__)
@ -14,15 +14,14 @@ logger = get_module_logger(__name__)
class NationalRiskIndexETL(ExtractTransformLoad):
"""ETL class for the FEMA National Risk Index dataset"""
NAME = "national_risk_index"
LAST_UPDATED_YEAR = 2020
SOURCE_URL = "https://hazards.fema.gov/nri/Content/StaticDocuments/DataDownload//NRI_Table_CensusTracts/NRI_Table_CensusTracts.zip"
GEO_LEVEL = ValidGeoLevel.CENSUS_TRACT
def __init__(self):
self.NRI_FTP_URL = "https://hazards.fema.gov/nri/Content/StaticDocuments/DataDownload//NRI_Table_CensusTracts/NRI_Table_CensusTracts.zip"
self.INPUT_CSV = self.TMP_PATH / "NRI_Table_CensusTracts.csv"
self.OUTPUT_DIR = (
self.DATA_PATH / "dataset" / "national_risk_index_2020"
)
self.BLOCK_GROUP_CSV = (
self.DATA_PATH / "dataset" / "census_acs_2019" / "usa.csv"
)
self.RISK_INDEX_EXPECTED_ANNUAL_LOSS_SCORE_INPUT_FIELD_NAME = (
"EAL_SCORE"
)
@ -52,7 +51,6 @@ class NationalRiskIndexETL(ExtractTransformLoad):
"Expected population loss rate (Natural Hazards Risk Index)"
)
# Note: also need to edit transform step to add fields to output.
self.COLUMNS_TO_KEEP = [
self.GEOID_TRACT_FIELD_NAME,
self.RISK_INDEX_EXPECTED_ANNUAL_LOSS_SCORE_FIELD_NAME,
@ -69,8 +67,8 @@ class NationalRiskIndexETL(ExtractTransformLoad):
"""
logger.info("Downloading 405MB National Risk Index Data")
super().extract(
self.NRI_FTP_URL,
self.TMP_PATH,
source_url=self.SOURCE_URL,
extract_path=self.TMP_PATH,
)
def transform(self) -> None:
@ -164,14 +162,12 @@ class NationalRiskIndexETL(ExtractTransformLoad):
/ df_nri[self.BUILDING_VALUE_INPUT_FIELD_NAME]
)
self.df = df_nri
# Round all float columns to just 10 digits.
# Note: `round` is smart enough to only apply to float columns.
df_nri = df_nri.round(10)
self.output_df = df_nri
def load(self) -> None:
"""Writes the NRI data as a csv to the directory at self.OUTPUT_DIR"""
logger.info("Saving National Risk Index CSV")
# write nationwide csv
self.OUTPUT_DIR.mkdir(parents=True, exist_ok=True)
self.df[self.COLUMNS_TO_KEEP].to_csv(
self.OUTPUT_DIR / "usa.csv", index=False, float_format="%.10f"
)
# Suppress scientific notation.
super().load(float_format="%.10f")

View file

@ -167,8 +167,3 @@ class PersistentPovertyETL(ExtractTransformLoad):
self.df[self.COLUMNS_TO_KEEP].to_csv(
path_or_buf=self.OUTPUT_PATH / "usa.csv", index=False
)
def validate(self) -> None:
logger.info("Validating persistent poverty data.")
pass

View file

@ -23,7 +23,7 @@
"metadata": {},
"outputs": [],
"source": [
"data_set = pd.read_excel('nhpd_data.xlsx', engine='openpyxl')"
"data_set = pd.read_excel(\"nhpd_data.xlsx\", engine=\"openpyxl\")"
]
},
{
@ -289,7 +289,9 @@
"source": [
"print(\"No. of data points:\", shape[0])\n",
"print(\"No. of features: \", shape[1])\n",
"print(\"Different property statuses, :\", data_set.loc[:,\"PropertyStatus\"].unique())"
"print(\n",
" \"Different property statuses, :\", data_set.loc[:, \"PropertyStatus\"].unique()\n",
")"
]
},
{

View file

@ -1,10 +0,0 @@
name: Template
year: null
is_census: false
source_url: https://github.com/usds/justice40-tool/
geo_level: Census Block Group
geoid_col: GEO COL
score_cols:
- COL 1
- COL 2
- COL 3

View file

@ -1,11 +0,0 @@
GEOID10,POPULATION
050070403001,1000
050070403002,1500
050010201001,1000
050010201002,1500
150070405001,2000
150070405002,2250
150010210101,2000
150010210102,1500
150010211011,1750
150010211012,1500
1 GEOID10 POPULATION
2 050070403001 1000
3 050070403002 1500
4 050010201001 1000
5 050010201002 1500
6 150070405001 2000
7 150070405002 2250
8 150010210101 2000
9 150010210102 1500
10 150010211011 1750
11 150010211012 1500

View file

@ -1,11 +0,0 @@
GEOID10,GEOID10_TRACT,COL 1,COL 2,COL 3
050070403001,05007040300,10,10,10
050070403002,05007040300,20,20,20
050010201001,05001020100,30,30,30
050010201002,05001020100,40,40,40
150070405001,15007040500,50,50,50
150070405002,15007040500,60,60,60
150010210101,15001021010,70,70,70
150010210102,15001021010,80,80,80
150010211011,15001021101,90,90,90
150010211012,15001021101,100,100,100
1 GEOID10 GEOID10_TRACT COL 1 COL 2 COL 3
2 050070403001 05007040300 10 10 10
3 050070403002 05007040300 20 20 20
4 050010201001 05001020100 30 30 30
5 050010201002 05001020100 40 40 40
6 150070405001 15007040500 50 50 50
7 150070405002 15007040500 60 60 60
8 150010210101 15001021010 70 70 70
9 150010210102 15001021010 80 80 80
10 150010211011 15001021101 90 90 90
11 150010211012 15001021101 100 100 100

View file

@ -1,10 +0,0 @@
name = Template # uses equal sign instead of colon
year: null
is_dataset: true
source_url: https://github.com/usds/justice40-tool/
geo_level: Census Block Group
geoid_col: GEO COL
score_cols:
- COL 1
- COL 2
- COL 3

View file

@ -1,161 +0,0 @@
import shutil
from pathlib import Path
import yaml
import pytest
import pandas as pd
from data_pipeline.config import settings
from data_pipeline.etl.base import ExtractTransformLoad
TEST_DIR = settings.APP_ROOT / "tests" / "base"
DATA_DIR = TEST_DIR / "data"
CONFIG_PATH = TEST_DIR / "config.yaml"
OUTPUT_SRC = DATA_DIR / "output.csv"
def remove_output(etl):
"""Clears output.csv if it is exists"""
etl = TemplateETL(CONFIG_PATH)
if etl.OUTPUT_PATH.exists():
etl.OUTPUT_PATH.unlink()
assert etl.OUTPUT_PATH.exists() is False
def load_output_source(etl):
"""Loads output csv so that it can be modified"""
df = pd.read_csv(
OUTPUT_SRC,
dtype={
etl.GEOID_FIELD_NAME: "string",
etl.GEOID_TRACT_FIELD_NAME: "string",
},
)
return df
class TemplateETL(ExtractTransformLoad):
"""Mock ETL class that inherits from the base ETL"""
def __init__(self, config_path: Path) -> None:
super().__init__(config_path)
self.EXTRACTED_CSV: Path = DATA_DIR / "output.csv"
self.df: pd.DataFrame = None
class TestInit:
"""Tests the super.init() method in a class that inherits from
ExtractTransformLoad"""
def test_init(self, mock_paths, mock_etl):
"""Tests that the init method executes successfully
Validates the following conditions:
- The class was instantiated with no errors
- All of the class attributes were set correctly by _get_yaml_config()
"""
# setup
data_path, tmp_path = mock_paths
etl = TemplateETL(CONFIG_PATH)
# validation
assert etl.NAME == "Template"
assert etl.SOURCE_URL == "https://github.com/usds/justice40-tool/"
assert etl.GEOID_COL == "GEO COL"
assert etl.GEO_LEVEL == "Census Block Group"
assert etl.SCORE_COLS == ["COL 1", "COL 2", "COL 3"]
assert etl.OUTPUT_PATH == data_path / "dataset" / "template" / "usa.csv"
assert etl.CENSUS_CSV.exists()
def test_init_missing_config(self, mock_etl):
"""Tests that FileNotFoundError is raised when the class is instantiated
with a path to a config.yaml file that doesn't exist
"""
# setup
config_path = settings.APP_ROOT / "fake_path"
assert config_path.exists() is False
# execute
with pytest.raises(FileNotFoundError):
TemplateETL(config_path)
def test_init_bad_config(self, mock_etl):
"""Tests that YAMLError is raised when the class is instantiated with
a yaml file that has errors in it
"""
# setup
config_path = TEST_DIR / "invalid_config.yaml"
assert config_path.exists()
# execute
with pytest.raises(yaml.YAMLError):
TemplateETL(config_path)
class TestValidateOutput:
"""Tests the ExtractTransformLoad.validate_output() method"""
def test_validate_output_success(self, mock_etl):
"""Tests that validate_output() runs successfully with valid output"""
# setup - instantiate etl class
etl = TemplateETL(CONFIG_PATH)
# setup - load output file
shutil.copyfile(OUTPUT_SRC, etl.OUTPUT_PATH)
# validation
etl.validate_output()
def test_validate_output_missing_output(self, mock_etl):
"""Tests that validate_output() fails if the output isn't written to
the location at self.OUTPUT_PATH
"""
# setup - remove output file
etl = TemplateETL(CONFIG_PATH)
remove_output(etl)
# validation
with pytest.raises(AssertionError):
etl.validate_output()
def test_validate_missing_geoid_col(self, mock_etl):
"""Tests that validate_output() fails if the output is missing one of
census fips codes columns
"""
# setup - remove output file
etl = TemplateETL(CONFIG_PATH)
remove_output(etl)
# setup - delete GEOID10 col from output
df = load_output_source(etl)
df.drop(etl.GEOID_FIELD_NAME, axis=1, inplace=True)
assert etl.GEOID_FIELD_NAME not in df.columns
df.to_csv(etl.OUTPUT_PATH)
# validation
with pytest.raises(KeyError):
etl.validate_output()
def test_validate_missing_census_block_group(self, mock_etl):
"""Tests that validate_output() fails if the output is missing one of
census block group rows
"""
# setup - remove output file
etl = TemplateETL(CONFIG_PATH)
remove_output(etl)
# setup - remove the first Census Block Group
df = load_output_source(etl)
df.drop(index=df.index[0], axis=0, inplace=True) # delete row 1
assert len(df) == 9
df.to_csv(etl.OUTPUT_PATH)
# validation
with pytest.raises(AssertionError):
etl.validate_output()
def test_validate_missing_score_col(self, mock_etl):
"""Tests that validate_output() fails if the output is missing one of
the columns used in the score
"""
# setup - remove output file
etl = TemplateETL(CONFIG_PATH)
remove_output(etl)
# setup - delete one of the score columns
df = load_output_source(etl)
df.drop("COL 1", axis=1, inplace=True)
assert "COL 1" not in df.columns
df.to_csv(etl.OUTPUT_PATH)
# validation
with pytest.raises(AssertionError):
etl.validate_output()

View file

@ -22,8 +22,9 @@ def copy_data_files(src: Path, dst: Path) -> None:
"""
if not dst.exists():
dst.parent.mkdir(parents=True, exist_ok=True)
copyfile(src, dst)
assert dst.exists()
copyfile(src, dst)
assert dst.exists()
@pytest.fixture(scope="session")
@ -34,24 +35,17 @@ def mock_paths(tmp_path_factory) -> tuple:
# sets location of the temp directory inside the national_risk_index folder
os.environ["PYTEST_DEBUG_TEMPROOT"] = str(TMP_DIR)
TMP_DIR.mkdir(parents=True, exist_ok=True)
# creates DATA_PATH and TMP_PATH directories in temp directory
data_path = tmp_path_factory.mktemp("data", numbered=False)
tmp_path = data_path / "tmp"
tmp_path.mkdir()
return data_path, tmp_path
@pytest.fixture(scope="session")
def mock_census(mock_paths) -> Path:
data_path, tmp_path = mock_paths
census_src = settings.APP_ROOT / "tests" / "base" / "data" / "census.csv"
census_dst = data_path / "census" / "csv" / "us.csv"
copy_data_files(census_src, census_dst)
return census_dst
@pytest.fixture
def mock_etl(monkeypatch, mock_paths, mock_census) -> None:
def mock_etl(monkeypatch, mock_paths) -> None:
"""Creates a mock version of the base ExtractTransformLoad class and resets
global the variables for DATA_PATH and TMP_PATH to the local mock_paths
"""

View file

@ -0,0 +1,16 @@
GEOID10_TRACT,Input Field 1
06007040300,2
06001020100,6.1
06007040500,-7.8
15001021010,12
15001021101,12.05524783
15007040603,13.51417578
15007040700,13.11988976
15009030100,13.60946983
15009030201,13.73235164
15001021402,14.73305116
15001021800,16.60833857
15009030402,16.002535
15009030800,15.34818251
15003010201,14.58788769
15007040604,14.27704917
1 GEOID10_TRACT Input Field 1
2 06007040300 2
3 06001020100 6.1
4 06007040500 -7.8
5 15001021010 12
6 15001021101 12.05524783
7 15007040603 13.51417578
8 15007040700 13.11988976
9 15009030100 13.60946983
10 15009030201 13.73235164
11 15001021402 14.73305116
12 15001021800 16.60833857
13 15009030402 16.002535
14 15009030800 15.34818251
15 15003010201 14.58788769
16 15007040604 14.27704917

View file

@ -0,0 +1,16 @@
GEOID10_TRACT,Example Field 1
06007040300,4.0
06001020100,12.2
06007040500,-15.6
15001021010,24.0
15001021101,24.11049566
15007040603,27.02835156
15007040700,26.23977952
15009030100,27.21893966
15009030201,27.46470328
15001021402,29.46610232
15001021800,33.21667714
15009030402,32.00507
15009030800,30.69636502
15003010201,29.17577538
15007040604,28.55409834
1 GEOID10_TRACT Example Field 1
2 06007040300 4.0
3 06001020100 12.2
4 06007040500 -15.6
5 15001021010 24.0
6 15001021101 24.11049566
7 15007040603 27.02835156
8 15007040700 26.23977952
9 15009030100 27.21893966
10 15009030201 27.46470328
11 15001021402 29.46610232
12 15001021800 33.21667714
13 15009030402 32.00507
14 15009030800 30.69636502
15 15003010201 29.17577538
16 15007040604 28.55409834

View file

@ -0,0 +1,16 @@
GEOID10_TRACT,Input Field 1,Example Field 1
06007040300,2.0,4.0
06001020100,6.1,12.2
06007040500,-7.8,-15.6
15001021010,12.0,24.0
15001021101,12.05524783,24.11049566
15007040603,13.51417578,27.02835156
15007040700,13.11988976,26.23977952
15009030100,13.60946983,27.21893966
15009030201,13.73235164,27.46470328
15001021402,14.73305116,29.46610232
15001021800,16.60833857,33.21667714
15009030402,16.002535,32.00507
15009030800,15.34818251,30.69636502
15003010201,14.58788769,29.17577538
15007040604,14.27704917,28.55409834
1 GEOID10_TRACT Input Field 1 Example Field 1
2 06007040300 2.0 4.0
3 06001020100 6.1 12.2
4 06007040500 -7.8 -15.6
5 15001021010 12.0 24.0
6 15001021101 12.05524783 24.11049566
7 15007040603 13.51417578 27.02835156
8 15007040700 13.11988976 26.23977952
9 15009030100 13.60946983 27.21893966
10 15009030201 13.73235164 27.46470328
11 15001021402 14.73305116 29.46610232
12 15001021800 16.60833857 33.21667714
13 15009030402 16.002535 32.00507
14 15009030800 15.34818251 30.69636502
15 15003010201 14.58788769 29.17577538
16 15007040604 14.27704917 28.55409834

View file

@ -0,0 +1,56 @@
import zipfile
import pandas as pd
from data_pipeline.config import settings
from data_pipeline.etl.base import ExtractTransformLoad, ValidGeoLevel
from data_pipeline.utils import get_module_logger
logger = get_module_logger(__name__)
class ExampleETL(ExtractTransformLoad):
"""A test-only, simple implementation of the ETL base class.
This can be used for the base tests of the `TestETL` class.
"""
INPUT_FIELD_NAME = "Input Field 1"
EXAMPLE_FIELD_NAME = "Example Field 1"
NAME = "example_dataset"
LAST_UPDATED_YEAR = 2017
SOURCE_URL = "https://www.example.com/example.zip"
GEO_LEVEL = ValidGeoLevel.CENSUS_TRACT
def __init__(self):
self.COLUMNS_TO_KEEP = [
self.GEOID_TRACT_FIELD_NAME,
self.EXAMPLE_FIELD_NAME,
]
def extract(self):
# Pretend to download zip from external URL, write it to CSV.
zip_file_path = (
settings.APP_ROOT
/ "tests"
/ "sources"
/ "example"
/ "data"
/ "input.zip"
)
logger.info(f"Extracting {zip_file_path}")
with zipfile.ZipFile(zip_file_path, "r") as zip_ref:
zip_ref.extractall(self.TMP_PATH)
def transform(self):
logger.info(f"Loading file from {self.TMP_PATH / 'input.csv'}.")
df: pd.DataFrame = pd.read_csv(
self.TMP_PATH / "input.csv",
dtype={self.GEOID_TRACT_FIELD_NAME: "string"},
low_memory=False,
)
df[self.EXAMPLE_FIELD_NAME] = df[self.INPUT_FIELD_NAME] * 2
self.output_df = df

View file

@ -0,0 +1,568 @@
# pylint: disable=protected-access,unsubscriptable-object
import copy
import os
import pathlib
import pytest
import numpy as np
import pandas as pd
from data_pipeline.etl.base import ExtractTransformLoad, ValidGeoLevel
from data_pipeline.tests.conftest import copy_data_files
from data_pipeline.tests.sources.example.etl import ExampleETL
from data_pipeline.utils import get_module_logger
logger = get_module_logger(__name__)
class TestETL:
"""A base class that can be inherited by all other ETL tests.
Note: every method that does *not* need to be reimplemented by child classes has
the test name pattern of `test_*_base`. All other tests need to be reimplemented.
"""
# In every child test class, change this to the class of the ETL being tested.
_ETL_CLASS = ExampleETL
# The following constants do not need to be updated in child class.
_INPUT_CSV_FILE_NAME = "input.csv"
_TRANSFORM_CSV_FILE_NAME = "transform.csv"
_OUTPUT_CSV_FILE_NAME = "output.csv"
# Note: We used shared census tract IDs so that later our tests can join all the
# ETL results together and generate a test score. This join is only possible if
# we use the same tract IDs across fixtures.
# The test fixtures may also contain other tract IDs that are not on this list.
_FIXTURES_SHARED_TRACT_IDS = [
"06007040300",
"06001020100",
"06007040500",
"15001021010",
"15001021101",
"15007040603",
"15007040700",
"15009030100",
"15009030201",
"15001021402",
"15001021800",
"15009030402",
"15009030800",
"15003010201",
"15007040604",
]
_DATA_DIRECTORY_FOR_TEST: pathlib.PosixPath
def setup_method(self, _method, filename=__file__):
"""Before every test, set the data directory for the test.
Uses the directory of the test class to infer the data directory.
pytest does not support classes with an `__init__`. Instead, we use this
`setup_method` which pytest will run before every test method is run.
For now, all child classes inheriting this need to reimplement this, but can
use the same line of code regardless of the child class:
```
def setup_method(self, _method, filename=__file__):
'''Invoke `setup_method` from Parent, but using the current file name
This code can be copied identically between all child classes.
'''
super().setup_method(_method=_method, filename=filename)
```
"""
self._DATA_DIRECTORY_FOR_TEST = pathlib.Path(filename).parent / "data"
def _get_instance_of_etl_class(self) -> type(ExtractTransformLoad):
return self._ETL_CLASS()
def _setup_etl_instance_and_run_extract(
self, mock_etl, mock_paths
) -> ExtractTransformLoad:
"""Method to setup an ETL instance with proper upstream mocks to run extract.
This must be re-implemented in every child class.
This method can be used by multiple tests that need to run the same fixtures
that need these same mocks, and by `test_update_test_fixtures`.
In order to re-implement this method, usually it will involve a
decent amount of work to monkeypatch `requests` or another method that's
used to retrieve data in order to force that method to retrieve the fixture
data.
"""
# When running this in child classes, make sure the child class re-implements
# this method.
if self._ETL_CLASS is not ExampleETL:
raise NotImplementedError(
"Prepare and run extract method not defined for this class."
)
# The rest of this method applies for `ExampleETL` only.
etl = self._get_instance_of_etl_class()
etl.extract()
return etl
def test_existence_of_test_fixtures_base(self):
"""Every ETL test should have these two test fixture files.
Can be run without modification for all child classes.
"""
assert (
self._DATA_DIRECTORY_FOR_TEST / self._TRANSFORM_CSV_FILE_NAME
).exists()
assert (
self._DATA_DIRECTORY_FOR_TEST / self._OUTPUT_CSV_FILE_NAME
).exists()
def test_init_base(self, mock_etl, mock_paths):
"""Test whether class has appropriate parameters set.
Can be run without modification for all child classes.
"""
# Setup
etl = self._get_instance_of_etl_class()
data_path, tmp_path = mock_paths
assert etl.DATA_PATH == data_path
assert etl.TMP_PATH == tmp_path
# Also make sure all parameters that need to be non-null are non-null
assert etl.NAME is not None
assert etl.LAST_UPDATED_YEAR is not None
assert etl.SOURCE_URL is not None
assert etl.GEO_LEVEL is not None
assert etl.COLUMNS_TO_KEEP is not None
assert len(etl.COLUMNS_TO_KEEP) > 0
# No duplicate columns to keep
assert len(etl.COLUMNS_TO_KEEP) == len(set(etl.COLUMNS_TO_KEEP))
# Check certain parameters are set.
assert etl.EXPECTED_MAX_CENSUS_BLOCK_GROUPS == 250000
assert etl.EXPECTED_MAX_CENSUS_TRACTS == 74160
assert etl.EXPECTED_CENSUS_TRACTS_CHARACTER_LENGTH == 11
assert etl.EXPECTED_CENSUS_BLOCK_GROUPS_CHARACTER_LENGTH == 13
def test_get_output_file_path_base(self, mock_etl, mock_paths):
"""Test file path method.
Can be run without modification for all child classes.
"""
etl = self._get_instance_of_etl_class()
data_path, tmp_path = mock_paths
actual_file_path = etl._get_output_file_path()
expected_file_path = (
data_path
/ "dataset"
/ f"{etl.NAME}_{etl.LAST_UPDATED_YEAR}"
/ "usa.csv"
)
logger.info(f"Expected: {expected_file_path}")
assert actual_file_path == expected_file_path
def test_fixtures_contain_shared_tract_ids_base(self, mock_etl, mock_paths):
"""Check presence of necessary shared tract IDs.
Note: We used shared census tract IDs so that later our tests can join all the
ETL results together and generate a test score. This join is only possible if
we use the same tract IDs across fixtures.
Can be run without modification for all child classes.
"""
etl = self._setup_etl_instance_and_run_extract(
mock_etl=mock_etl, mock_paths=mock_paths
)
etl.transform()
# These tests work differently based on the ValidGeoLevel of the ETL class.
if etl.GEO_LEVEL == ValidGeoLevel.CENSUS_TRACT:
missing_tract_ids = np.setdiff1d(
self._FIXTURES_SHARED_TRACT_IDS,
etl.output_df[ExtractTransformLoad.GEOID_TRACT_FIELD_NAME],
)
if len(missing_tract_ids) > 0:
assert False, (
"Fixture data is missing the following necessary tract "
f"IDs: {missing_tract_ids}"
)
else:
raise NotImplementedError("This geo level not tested yet.")
def test_transform_sets_output_df_base(self, mock_etl, mock_paths):
"""This test ensures that the transform step sets its results to `output_df`.
Can be run without modification for all child classes.
"""
etl = self._setup_etl_instance_and_run_extract(
mock_etl=mock_etl, mock_paths=mock_paths
)
etl.transform()
assert etl.output_df is not None
# Assert it has some rows
assert etl.output_df.shape[0] > 0
# Check that it has all columns
for col in etl.COLUMNS_TO_KEEP:
assert col in etl.output_df.columns, f"{col} is missing from output"
def test_transform_base(self, mock_etl):
"""Tests the transform method.
Can be run without modification for all child classes.
"""
# setup - copy sample data into tmp_dir
etl = self._get_instance_of_etl_class()
etl.transform()
transform_csv_path = (
self._DATA_DIRECTORY_FOR_TEST / self._TRANSFORM_CSV_FILE_NAME
)
# Compare to expected.
expected = pd.read_csv(
filepath_or_buffer=transform_csv_path,
dtype={
ExtractTransformLoad.GEOID_TRACT_FIELD_NAME: "string",
ExtractTransformLoad.GEOID_FIELD_NAME: "string",
},
)
pd.testing.assert_frame_equal(etl.output_df, expected)
def test_load_base(self, mock_etl):
"""Test load method.
Can be run without modification for all child classes.
"""
# setup - input variables
etl = self._get_instance_of_etl_class()
# setup - mock transform step
df_transform = pd.read_csv(
self._DATA_DIRECTORY_FOR_TEST / self._TRANSFORM_CSV_FILE_NAME,
dtype={etl.GEOID_TRACT_FIELD_NAME: "string"},
)
etl.output_df = df_transform
# execution
etl.load()
# Make sure it creates the file.
actual_output_path = etl._get_output_file_path()
assert actual_output_path.exists()
actual_output = pd.read_csv(
actual_output_path, dtype={etl.GEOID_TRACT_FIELD_NAME: str}
)
expected_output_csv_path = (
self._DATA_DIRECTORY_FOR_TEST / self._OUTPUT_CSV_FILE_NAME
)
# setup - load expected output
expected_output = pd.read_csv(
filepath_or_buffer=expected_output_csv_path,
dtype={etl.GEOID_TRACT_FIELD_NAME: str},
)
# check that the `COLUMNS_TO_KEEP` are in the output
for col in etl.COLUMNS_TO_KEEP:
assert col in actual_output.columns, f"{col} is missing from output"
# validation
pd.testing.assert_frame_equal(actual_output, expected_output)
def test_validate_base(self, mock_etl, mock_paths):
"""Every ETL class should have proper validation.
Can be run without modification for all child classes.
"""
etl = self._setup_etl_instance_and_run_extract(
mock_etl=mock_etl, mock_paths=mock_paths
)
etl.transform()
# Transform is guaranteed to set a dataframe on etl.output_df.
# We can modify this data frame to test validation steps.
actual_output_df = etl.output_df
# These tests work differently based on the ValidGeoLevel of the ETL class.
if etl.GEO_LEVEL == ValidGeoLevel.CENSUS_TRACT:
# Remove geo field and make sure error occurs.
etl_without_geo_field = copy.deepcopy(etl)
columns_to_keep = [
column_to_keep
for column_to_keep in actual_output_df.columns
if column_to_keep != ExtractTransformLoad.GEOID_TRACT_FIELD_NAME
]
etl_without_geo_field.output_df = actual_output_df[columns_to_keep]
with pytest.raises(ValueError) as error:
etl_without_geo_field.validate()
assert str(error.value).startswith("Missing column:")
# Make sure too many rows throws error.
etl_with_too_many_rows = copy.deepcopy(etl)
etl_with_too_many_rows.EXPECTED_MAX_CENSUS_TRACTS = (
actual_output_df.shape[0] - 1
)
with pytest.raises(ValueError) as error:
etl_with_too_many_rows.validate()
assert str(error.value).startswith("Too many rows:")
# Make sure multiple geo field character length throws error.
etl_with_multiple_char_lengths = copy.deepcopy(etl)
etl_with_multiple_char_lengths.output_df = actual_output_df.copy(
deep=True
)
etl_with_multiple_char_lengths.output_df.loc[
0, ExtractTransformLoad.GEOID_TRACT_FIELD_NAME
] = "060070403001"
with pytest.raises(ValueError) as error:
etl_with_multiple_char_lengths.validate()
assert str(error.value).startswith("Multiple character lengths")
# Make sure wrong geo field character length throws error.
etl_with_wrong_geo_field_character_length = copy.deepcopy(etl)
etl_with_wrong_geo_field_character_length.output_df = (
actual_output_df.copy(deep=True)
)
etl_with_wrong_geo_field_character_length.output_df[
ExtractTransformLoad.GEOID_TRACT_FIELD_NAME
] = "060070403001"
with pytest.raises(ValueError) as error:
etl_with_wrong_geo_field_character_length.validate()
assert str(error.value).startswith("Wrong character length")
# Make duplicate tract IDs throws error.
etl_with_duplicate_geo_field = copy.deepcopy(etl)
etl_with_duplicate_geo_field.output_df = actual_output_df.copy(
deep=True
)
etl_with_duplicate_geo_field.output_df.loc[
0:1, ExtractTransformLoad.GEOID_TRACT_FIELD_NAME
] = "06007040300"
with pytest.raises(ValueError) as error:
etl_with_duplicate_geo_field.validate()
assert str(error.value).startswith("Duplicate values:")
elif etl.GEO_LEVEL == ValidGeoLevel.CENSUS_BLOCK_GROUP:
# Remove geo field and make sure error occurs.
etl_without_geo_field = copy.deepcopy(etl)
columns_to_keep = [
column_to_keep
for column_to_keep in actual_output_df.columns
if column_to_keep != ExtractTransformLoad.GEOID_FIELD_NAME
]
etl_without_geo_field.output_df = actual_output_df[columns_to_keep]
with pytest.raises(ValueError) as error:
etl_without_geo_field.validate()
assert str(error.value).startswith("Missing column:")
# Make sure too many rows throws error.
etl_with_too_many_rows = copy.deepcopy(etl)
etl_with_too_many_rows.EXPECTED_MAX_CENSUS_BLOCK_GROUPS = (
actual_output_df.shape[0] - 1
)
with pytest.raises(ValueError) as error:
etl_with_too_many_rows.validate()
assert str(error.value).startswith("Too many rows:")
# Make sure multiple geo field character length throws error.
etl_with_multiple_char_lengths = copy.deepcopy(etl)
etl_with_multiple_char_lengths.output_df = actual_output_df.copy(
deep=True
)
etl_with_multiple_char_lengths.output_df.loc[
0, ExtractTransformLoad.GEOID_FIELD_NAME
] = "06007040300123"
with pytest.raises(ValueError) as error:
etl_with_multiple_char_lengths.validate()
assert str(error.value).startswith("Multiple character lengths")
# Make sure wrong geo field character length throws error.
etl_with_wrong_geo_field_character_length = copy.deepcopy(etl)
etl_with_wrong_geo_field_character_length.output_df = (
actual_output_df.copy(deep=True)
)
etl_with_wrong_geo_field_character_length.output_df[
ExtractTransformLoad.GEOID_FIELD_NAME
] = "06007040300123"
with pytest.raises(ValueError) as error:
etl_with_wrong_geo_field_character_length.validate()
assert str(error.value).startswith("Wrong character length")
# Make duplicate block group IDs throws error.
etl_with_duplicate_geo_field = copy.deepcopy(etl)
etl_with_duplicate_geo_field.output_df = actual_output_df.copy(
deep=True
)
etl_with_duplicate_geo_field.output_df.loc[
0:1, ExtractTransformLoad.GEOID_FIELD_NAME
] = "0600704030012"
with pytest.raises(ValueError) as error:
etl_with_duplicate_geo_field.validate()
assert str(error.value).startswith("Duplicate values:")
else:
raise NotImplementedError("This geo level not tested yet.")
# Remove another column to keep and make sure error occurs.
etl_with_missing_column = copy.deepcopy(etl)
columns_to_keep = actual_output_df.columns[:-1]
etl_with_missing_column.output_df = actual_output_df[columns_to_keep]
with pytest.raises(ValueError) as error:
etl_with_missing_column.validate()
assert str(error.value).startswith("Missing column:")
# Test that validation on the original ETL works fine.
etl.validate()
def test_full_etl_base(self, mock_etl, mock_paths):
"""Every ETL class should be able to run end-to-end.
Run extract, transform, validate, load, and get without error.
Can be run without modification for all child classes.
"""
etl = self._setup_etl_instance_and_run_extract(
mock_etl=mock_etl, mock_paths=mock_paths
)
etl.transform()
etl.validate()
etl.load()
etl.get_data_frame()
def test_get_data_frame_base(self, mock_etl, mock_paths):
"""Every ETL class should be able to return its data frame.
Can be run without modification for all child classes.
"""
etl = self._setup_etl_instance_and_run_extract(
mock_etl=mock_etl, mock_paths=mock_paths
)
# TODO: look into moving this file deletion to a setup/teardown method that
# applies to all methods. I struggled to get that to work because I couldn't
# pass `mock_etl` and `mock_paths`
# Delete output file.
output_file_path = etl._get_output_file_path()
if os.path.exists(output_file_path):
logger.info("Deleting output file created by other tests.")
os.remove(output_file_path)
# Run more steps to generate test data.
etl.transform()
etl.validate()
# At this point, `get_data_frame` should error since file hasn't been written.
with pytest.raises(ValueError) as error:
etl.get_data_frame()
assert str(error.value).startswith("Make sure to run ETL")
# Run `load` step to write it to disk.
etl.load()
output_df = etl.get_data_frame()
# Check that all columns are present
for column_to_keep in etl.COLUMNS_TO_KEEP:
assert (
column_to_keep in output_df.columns
), f"Missing column: `{column_to_keep}` is missing from output"
# Make sure geo fields are read in as strings:
if etl.GEO_LEVEL == ValidGeoLevel.CENSUS_TRACT:
assert pd.api.types.is_string_dtype(
output_df[ExtractTransformLoad.GEOID_TRACT_FIELD_NAME]
)
elif etl.GEO_LEVEL == ValidGeoLevel.CENSUS_BLOCK_GROUP:
assert pd.api.types.is_string_dtype(
output_df[ExtractTransformLoad.GEOID_FIELD_NAME]
)
else:
raise NotImplementedError("This geo level not tested yet.")
# TODO: Add a flag to make this run only when pytest is run with an argument.
def test_update_test_fixtures(self, mock_etl, mock_paths):
"""Update the test fixtures (the data files) used by the test.
This needs to be reimplemented for every child class. This is because there
are not strict contracts on the outputs of the `extract` step so this method
needs to explicitly define how to update the `input` fixture that comes after
the extract step.
Using this method to update fixtures can be helpful if you expect the
results to change because you changed the logic of the ETL class and need to
quickly update the fixtures.
However, note a few things first:
1. Do *not* update these fixtures if you did not expect the ETL results to
change!
2. If the source data itself changes (e.g., the external source renames a
column), update the "furthest upstream" test fixture which, in many cases,
is a .zip file. Then running this method will update all subsequent files.
If you're confused by any of this, ask for help, it's confusing :).
"""
# When running this in child classes, make sure the child class re-implements
# this method.
if self._ETL_CLASS is not ExampleETL:
raise NotImplementedError(
"Update fixtures method not defined for this class."
)
# The rest of this method applies for `ExampleETL` only.
etl = self._setup_etl_instance_and_run_extract(
mock_etl=mock_etl, mock_paths=mock_paths
)
# After running extract, write the results as the "input.csv" in the test
# directory.
logger.info(
f"Writing data to {self._DATA_DIRECTORY_FOR_TEST / self._INPUT_CSV_FILE_NAME}"
)
copy_data_files(
src=etl.TMP_PATH / "input.csv",
dst=self._DATA_DIRECTORY_FOR_TEST / self._INPUT_CSV_FILE_NAME,
)
# After running transform, write the results as the "transform.csv" in the test
# directory.
etl.transform()
etl.output_df.to_csv(
path_or_buf=self._DATA_DIRECTORY_FOR_TEST
/ self._TRANSFORM_CSV_FILE_NAME,
index=False,
)
# Run validate, just to check.
etl.validate()
# After running load, write the results as the "output.csv" in the test
# directory.
etl.load()
copy_data_files(
src=etl._get_output_file_path(),
dst=self._DATA_DIRECTORY_FOR_TEST / self._OUTPUT_CSV_FILE_NAME,
)

View file

@ -1,11 +0,0 @@
GEOID10,POPULATION
050070403001,1000
050070403002,1500
050010201001,1000
050010201002,1500
150070405001,2000
150070405002,2250
150010210101,2000
150010210102,1500
150010211011,1750
150010211012,1500
1 GEOID10 POPULATION
2 050070403001 1000
3 050070403002 1500
4 050010201001 1000
5 050010201002 1500
6 150070405001 2000
7 150070405002 2250
8 150010210101 2000
9 150010210102 1500
10 150010211011 1750
11 150010211012 1500

File diff suppressed because one or more lines are too long

View file

@ -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)
15007040300,18.6199401875,0.0000035067,0.0087782352,0.0000719506
15001020100,24.6571275391,0.0000000358,0.0000290505,0.0000014426
15007040500,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.0000262376
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)
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

1 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)
2 15007040300 06001020100 18.6199401875 0.0000035067 0.0087782352 0.0000719506 0.0000661520
3 15001020100 06007040300 24.6571275391 0.0000000358 0.0000290505 0.0000014426
4 15007040500 06007040500 18.7719774304 0.0000034603 0.0000385465 0.0000436593
5 15001021010 42.6674572964 0.0000000408 0.0000331733 0.0000018765
6 15001021101 35.4631324234 0.0000002677 0.0000337348 0.0000507987
7 15007040603 22.2413255033 0.0000182039 0.0107280896 0.0002521232
8 15007040700 14.2025996464 0.0000014941 0.0005323264 0.0000262376 0.0000207361
9 15009030100 16.2238215839 0.0000000311 0.0004061121 0.0000013674
10 15009030201 16.5620580551 0.0000000311 0.0000100935 0.0000014265
11 15001021402 37.6719247757 0.0000062310 0.0000311565 0.0015187781
12 15001021800 25.2568722397 0.0000002271 0.0000337985 0.0000262049
13 15009030402 23.9449676493 0.0000000310 0.0000104613 0.0000013104
14 15009030800 19.8423994159 0.0000008727 0.0000140751 0.0000109028
15 15003010201 18.0813496455 0.0000001010 0.0001248723 0.0001089388
16 15007040604 13.8830970216 0.0000023137 0.0000977117 0.0001482071
17 15009030303 26.4505931648 0.0000000878 0.0000100823 0.0000069565
18 15009030403 18.4437334890 0.0000000310 0.0000104614 0.0000013105
19 15009030404 21.7984897602 0.0000000310 0.0000104610 0.0000013088
20 15001021601 46.2888122040 0.0000022210 0.0001000049 0.0004101879
21 15001021013 31.7870290791 0.0000000365 0.0000291145 0.0000015088
22 15001021702 43.0017491363 0.0000038333 0.0006472757 0.0007289681
23 15001021704 40.5478070100 0.0000000675 0.0000124075
24 15001021902 24.1028365867 0.0000012633 0.0003623064 0.0002255654
25 15003007502 13.4756112773 0.0000000123 0.0000029166
26 15001020202 25.4228346534 0.0000002378 0.0000290487 0.0000415197
27 15001020300 36.0264444526 0.0000009915 0.0000486073 0.0003168032
28 15003009507 13.7534872042 0.0000000122 0.0000018990
29 15009031502 24.1981968780 0.0000006427 0.0000676868 0.0000108687
30 15009031700 20.0761939648 0.0000010934 0.0049143834 0.0000148370
31 15001021202 50.9009757018 0.0000000383 0.0000301617 0.0000017093
32 15001021300 40.9441045600 0.0000039558 0.0000396241 0.0005806917
33 15003010308 14.8377632042 0.0000000122 0.0000020149
34 15001021504 38.7614777296 0.0000001803 0.0001167168
35 15001021604 41.0047129501 0.0000009324 0.0002774903
36 15001022000 19.5680692358 0.0000000358 0.0000290511 0.0000014444
37 15001022102 26.8749889144 0.0000000358 0.0000290467 0.0000014219
38 15001021509 39.6085028569 0.0000003842 0.0000351301 0.0001122053
39 15003010100 20.1899418692 0.0000000649 0.0009782148 0.0000759598
40 15003010202 22.0650824666 0.0000002726 0.0017126977 0.0002904509
41 15003000114 13.0024416326 0.0000000593 0.0000559929
42 15003000301 15.5029761891 0.0000000543 0.0000439802
43 15003000401 14.3094432099 0.0000000175 0.0000089358
44 15003000500 21.7355738392 0.0000001600 0.0001780227
45 15003001100 12.9865448527 0.0000000123 0.0000021143
46 15003001400 12.3585076356 0.0000000124 0.0000023264
47 15003001901 27.1286782082 0.0000003239 0.0003416043
48 15003001904 21.1782783212 0.0000003731 0.0004239595
49 15003002202 16.8452811998 0.0000003007 0.0003313697
50 15003002600 21.1208678596 0.0000000125 0.0000024799
51 15003002800 14.0640371335 0.0000000147 0.0000053072
52 15003003000 15.9122177661 0.0000000173 0.0000088501
53 15003003101 16.7794100011 0.0000000378 0.0000269712
54 15003003407 12.1430194003 0.0000000124 0.0000023264
55 15003003501 15.9378488267 0.0000000124 0.0000023264
56 15003004600 15.6406606485 0.0000000123 0.0000105419 0.0000021180

View file

@ -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,T15007040300,Hawaii,HI,15,Kauai,County,7,15007,40300,15007040300,8385,912658000.0000000000,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.1330000000,52.5091980000,Relatively Low,23.5125676106,100.0000000000,2.6254599000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0699710120,202742385.5800542533,1862.6855876887,14156410466.4337959290,14359152852.0138511658,0.0000357579,0.0000000020,Very Low,507.2650077305,0.0000002606,1.9802850905,509.2452928210,2.6321796000,Very Low,2.5538810410,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0030589604,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0005345855,912658000.0000000000,8385.0000000000,63726000000.0000000000,64638658000.0000000000,0.0167507621,0.0001397988,Very Low,22512.2000000000,0.0001541200,1171.3120000000,23683.5120000000,11.8920653303,Relatively Low,13.0147002820,Relatively Low,0.0000000000,0.0000000000,912658000.0000000000,8385.0000000000,63726000000.0000000000,147860.5647200878,64638805860.5647201538,0.0000180224,0.0000000760,0.0002275779,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,2.0000000000,0.0343605913,912658000.0000000000,8385.0000000000,63726000000.0000000000,147860.5647200878,64638805860.5647201538,0.0000255348,0.0000003276,0.0002460797,Very Low,788.9305592758,0.0000968737,736.2401254130,1.3226671624,1526.4933518512,4.6757862953,Very Low,6.1662913066,Very Low,0.0000000000,0.0148900000,912658000.0000000000,8385.0000000000,63726000000.0000000000,64638658000.0000000000,0.0000058883,0.0000028944,Relatively Low,80.0189118426,0.0003613770,2746.4650635800,2826.4839754226,19.2773661946,Relatively Low,15.4429446232,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0000000000,5.9166666660,59632790.0585851222,418.9266599156,3183842615.3584799767,51591.3125103788,3243526996.7295761108,0.0001804370,0.0000114831,0.0042466231,Very Low,63663.1136805333,0.0284625391,216315.2971586954,1296.2757495066,281274.6865887354,29.5879096062,Relatively High,26.9708819409,Relatively High,1.0000000000,0.0312500000,912658000.0000000000,8385.0000000000,63726000000.0000000000,147860.5647200878,64638805860.5647201538,0.0000032387,0.0000018297,0.0000727233,Very Low,92.3692287258,0.0004794348,3643.7043933928,0.3360282071,3736.4096503256,14.9734902768,Relatively Low,16.6070545485,Relatively Low,0.0000000000,0.0000653310,912658000.0000000000,8385.0000000000,63726000000.0000000000,147860.5647200878,64638805860.5647201538,0.0089662390,0.0000059784,0.0021079463,Very Low,534.6107152638,0.0000032750,24.8896914625,0.0203625042,559.5207692305,5.8706925202,Very Low,6.7469108145,Very Low,7.0000000000,0.0319693090,198555247.5326173902,978.4678896234,7436355961.1380958557,7634911208.6707134247,0.0015593140,0.0000038734,Very Low,9898.0167648649,0.0001211641,920.8471781755,10818.8639430404,23.6580872265,Relatively High,20.2115884136,Relatively Moderate,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0005411070,0.0000037371,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000035067,0.0087782352,0.0000719506
2,T15001020100,Hawaii,HI,15,Hawaii,County,1,15001,20100,15001020100,5213,409283000.0000000000,30161527.9142542519,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.0359926557,876.2067770047,33.3455935266,Relatively Moderate,67.0519519602,65.5270655271,0.9080000000,50.7751980000,Relatively Low,9.3859370029,40.0000000000,2.5387599000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0579710120,1082842.5920536572,13.7920666932,104819706.8679994941,105902549.4600531608,0.0000313713,0.0000000025,Very Low,1.9692852387,0.0000000020,0.0151413322,1.9844265710,0.4142077200,Very Low,0.4374499910,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000541,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0099874373,409283000.0000000000,5213.0000000000,39618800000.0000000000,40028083000.0000000000,0.0008505842,0.0000116917,Very Low,509627.8000000000,0.0314233600,238817.5360000000,748445.3360000000,37.5977579168,Very High,44.7882310288,Very High,1.0000000000,0.0312500000,409283000.0000000000,5213.0000000000,39618800000.0000000000,30161527.9142542407,40058244527.9142456055,0.0000180224,0.0000000760,0.0002275779,Very Low,230.5075462219,0.0000123856,94.1304164907,214.5030827638,539.1410454765,5.2311349597,Very Low,5.8932581207,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0100000000,409283000.0000000000,5213.0000000000,39618800000.0000000000,30161527.9142542407,40058244527.9142456055,0.0000255348,0.0000003276,0.0002460797,Very Low,104.5094165573,0.0000170798,129.8064434247,74.2213962963,308.5372562783,2.7440512545,Very Low,3.9390063490,Very Low,0.0000000000,0.0148900000,409283000.0000000000,5213.0000000000,39618800000.0000000000,40028083000.0000000000,0.0000058883,0.0000013610,Very Low,35.8846142757,0.0001056430,802.8864714520,838.7710857277,12.8581949229,Relatively Low,11.2121138672,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0006245044,0.0000038327,0.0003492485,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,1.0000000000,0.0312500000,409283000.0000000000,5213.0000000000,39618800000.0000000000,30161527.9142542407,40058244527.9142456055,0.0000083601,0.0000003102,0.0006212585,Very Low,106.9261414761,0.0000505411,384.1124266061,585.5657605523,1076.6043286345,9.8898625798,Very Low,11.9394659724,Relatively Low,0.0000000000,0.0006781468,409283000.0000000000,5213.0000000000,39618800000.0000000000,30161527.9142542519,40058244527.9142456055,0.0003985575,0.0000002657,0.0000937001,Very Low,110.6212172132,0.0000009395,7.1398535480,1.9165373923,119.6776081535,3.5109250974,Very Low,4.3917261130,Very Low,4.0000000000,0.0182681760,315888.8587620233,2.2117928286,16809625.4977076985,17125514.3564697206,0.0006654598,0.0000038734,Very Low,3.8401775301,0.0000001565,1.1894532216,5.0296307517,1.8327269938,Very Low,1.7042906890,Very Low,4.0000000000,0.0204021391,407903840.5845158696,5201.9799937840,39535047952.7582778931,39942951793.3427886963,0.0000000070,0.0000040043,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.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000000358,0.0000290505,0.0000014426
3,T15007040500,Hawaii,HI,15,Kauai,County,7,15007,40500,15007040500,5943,1030806000.0000000000,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.7680000000,52.5091980000,Relatively Low,23.5125676106,100.0000000000,2.6254599000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0699710120,66594737.2848528028,383.9447225607,2917979891.4611377716,2984574628.7459902763,0.0000063169,0.0000000003,Very Low,29.4350693631,0.0000000083,0.0628428106,29.4979121737,1.0184434918,Very Low,1.0330889632,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,56.0000000000,3.1111111110,0.0000000000,0.0000000000,0.0030589604,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0005860614,1030806000.0000000000,5943.0000000000,45166800000.0000000000,46197606000.0000000000,0.0167507621,0.0001397988,Very Low,120075.0000000000,0.0011438300,8693.1080000000,128768.1080000000,20.9111551033,Relatively Moderate,23.9260247408,Relatively Moderate,0.0000000000,0.0000000000,1030806000.0000000000,5943.0000000000,45166800000.0000000000,459516.6731830846,46198065516.6731948853,0.0000180224,0.0000000760,0.0002275779,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,2.0000000000,0.0289855072,1030806000.0000000000,5943.0000000000,45166800000.0000000000,459516.6731830846,46198065516.6731948853,0.0000255348,0.0000003276,0.0002460797,Very Low,762.9385502884,0.0000564393,428.9386307213,3.2776151707,1195.1547961804,4.3095415029,Very Low,5.9417734791,Very Low,0.0000000000,0.0148900000,1030806000.0000000000,5943.0000000000,45166800000.0000000000,46197606000.0000000000,0.0000058883,0.0000028944,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.0000000000,5.9166666660,40606220.8832914308,293.0385094863,2227092672.0956783295,530.1707312656,2267699423.1497006416,0.0001804370,0.0000114831,0.0042466231,Very Low,43350.6205845832,0.0199094993,151312.1945288390,13.3209920158,194676.1361054380,26.1722849103,Relatively High,24.9423944801,Relatively High,1.0000000000,0.0312500000,1030806000.0000000000,5943.0000000000,45166800000.0000000000,459516.6731830846,46198065516.6731948853,0.0000032387,0.0000018297,0.0000727233,Very Low,104.3268729204,0.0003398069,2582.5325235382,1.0442984855,2687.9036949441,13.4166096589,Relatively Low,15.5570766452,Relatively Low,0.0000000000,0.0001223370,1030806000.0000000000,5943.0000000000,45166800000.0000000000,459516.6731830848,46198065516.6731948853,0.0052856261,0.0000035243,0.0012426410,Very Low,666.5475081608,0.0000025623,19.4736228040,0.0698561550,686.0909871197,6.2836381633,Very Low,7.5500148235,Very Low,9.0000000000,0.0411033970,42337272.9888006300,137.6534442030,1046166175.9429297447,1088503448.9317302704,0.0015593140,0.0000038734,Very Low,2713.5270992744,0.0000219159,166.5606980512,2880.0877973256,15.2190537663,Relatively Moderate,13.5932751503,Relatively Moderate,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0005411070,0.0000037371,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000034603,0.0000385465,0.0000436593
4,T15001021010,Hawaii,HI,15,Hawaii,County,1,15001,21010,15001021010,7884,737712000.0000000000,8711454.3090733420,58.4401512286,43.1066279987,Very High,99.4459643383,98.1595092025,42.6674572964,Very High,99.2741170486,99.0797546012,3909779.1321200719,2582125.8111252696,0.1746532017,1327364.3330713348,288.9879234675,31.8903618889,Relatively Moderate,51.0956693021,54.4159544160,-0.0020000000,50.7751980000,Relatively Low,9.3859370029,40.0000000000,2.5387599000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000478451,0.0000000048,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000541,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0099998852,737712000.0000000000,7884.0000000000,59918400000.0000000000,60656112000.0000000000,0.0008505842,0.0000116917,Very Low,2580741.3999999999,0.1736765400,1319941.7039999999,3900683.1039999998,65.1861714882,Very High,74.2640163391,Very High,1.0000000000,0.0312500000,737712000.0000000000,7884.0000000000,59918400000.0000000000,8711454.3090733420,60664823454.3090744019,0.0000180224,0.0000000760,0.0002275779,Very Low,415.4782459486,0.0000187316,142.3602922696,61.9542156517,619.7927538699,5.4799587665,Very Low,5.9041560145,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0269344664,737712000.0000000000,7884.0000000000,59918400000.0000000000,8711454.3090733420,60664823454.3090744019,0.0000255348,0.0000003276,0.0002460797,Very Low,473.5051910310,0.0000651127,494.8567057547,57.2461948490,1025.6080916347,4.0952789981,Very Low,5.6221049906,Very Low,0.0000000000,0.0148900000,737712000.0000000000,7884.0000000000,59918400000.0000000000,60656112000.0000000000,0.0000058883,0.0000013610,Very Low,64.6802104328,0.0001597715,1214.2637523360,1278.9439627688,14.7995789625,Relatively Low,12.3417814165,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0006245044,0.0000038327,0.0003492485,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,1.0000000000,0.0312500000,737712000.0000000000,7884.0000000000,59918400000.0000000000,8711454.3090733420,60664823454.3090744019,0.0000083601,0.0000003102,0.0006212585,Very Low,192.7289862509,0.0000764370,580.9212298706,169.1270211135,942.7772372349,9.4618177655,Very Low,10.9242145239,Very Low,1.0000000000,0.0004673635,737712000.0000000000,7884.0000000000,59918400000.0000000000,8711454.3090733420,60664823454.3090744019,0.0006900376,0.0000004601,0.0001622266,Very Low,237.9109428670,0.0000016953,12.8843062101,0.6604918534,251.4557409305,4.4968090785,Very Low,5.3796416501,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0006654598,0.0000038734,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,4.0000000000,0.0207448000,737708710.8628113270,7883.9591351862,59918089427.4153671265,60655798138.2781677246,0.0000000070,0.0000040043,Very Low,0.1075487398,0.0006549135,4977.3427848938,4977.4503336337,19.7224171343,Relatively Low,19.9022650650,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000000408,0.0000331733,0.0000018765
5,T15001021101,Hawaii,HI,15,Hawaii,County,1,15001,21101,15001021101,3531,365469000.0000000000,1115552.9463470120,41.0551206444,39.6369371498,Very High,99.0514029613,96.6257668712,35.4631324234,Relatively High,97.7453635601,94.4785276074,2244880.4514211570,1569603.2441089998,0.0888473124,675239.5743199890,37.6329921689,35.2805718581,Relatively High,83.0000273575,82.3361823362,2.1180000000,50.7751980000,Relatively Low,9.3859370029,40.0000000000,2.5387599000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0679710120,53358423.6905883327,515.5255139327,3917993905.8884677887,3971352329.5790557861,0.0000009778,0.0000000001,Very Low,3.5462107144,0.0000000023,0.0178004814,3.5640111958,0.5034846073,Very Low,0.5625920420,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000541,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0099998512,365469000.0000000000,3531.0000000000,26835600000.0000000000,27201069000.0000000000,0.0008505842,0.0000116917,Very Low,1549795.8000000000,0.0875910700,665692.1319999999,2215487.9320000000,53.9839983966,Very High,68.0399795668,Very High,1.0000000000,0.0312500000,365469000.0000000000,3531.0000000000,26835600000.0000000000,1115552.9463470120,27202184552.9463424683,0.0000180224,0.0000000760,0.0002275779,Very Low,205.8315698678,0.0000083893,63.7587762572,7.9336015953,277.5239477203,4.1923926160,Very Low,4.9971070139,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0289855072,365469000.0000000000,3531.0000000000,26835600000.0000000000,1115552.9463470120,27202184552.9463424683,0.0000255348,0.0000003276,0.0002460797,Very Low,270.4974447523,0.0000335331,254.8514731746,7.9569545004,533.3058724274,3.2931774779,Very Low,5.0015747332,Very Low,0.0000000000,0.0148900000,365469000.0000000000,3531.0000000000,26835600000.0000000000,27201069000.0000000000,0.0000058883,0.0000013610,Very Low,32.0431439731,0.0000715567,543.8312163240,575.8743602971,11.3433526973,Very Low,10.4651653429,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0000000000,5.9166666660,4828130.5279219840,35.1384012388,267051849.4150594473,0.0000000000,271879979.9429814219,0.0006245044,0.0000038327,0.0003492485,Very Low,17839.8663537918,0.0007968309,6055.9146131274,0.0000000000,23895.7809669192,13.0070200492,Relatively Moderate,13.6546608024,Relatively Moderate,1.0000000000,0.0312500000,365469000.0000000000,3531.0000000000,26835600000.0000000000,1115552.9463470120,27202184552.9463424683,0.0000083601,0.0000003102,0.0006212585,Very Low,95.4796314509,0.0000342338,260.1766695466,21.6577094941,377.3140104915,6.9727783560,Very Low,8.9063071715,Very Low,0.0000000000,0.0003634330,365469000.0000000000,3531.0000000000,26835600000.0000000000,1115552.9463470120,27202184552.9463424683,0.0008889061,0.0000005927,0.0002089802,Very Low,118.0676167774,0.0000007606,5.7804922284,0.0847265791,123.9328355849,3.5520526364,Very Low,4.7010550308,Very Low,13.0000000000,0.0593715740,31437177.7921413518,196.0173546829,1489731895.5901708603,1521169073.3823122978,0.0006654598,0.0000038734,Very Low,1242.0638448472,0.0000450783,342.5948426489,1584.6586874961,12.4708959075,Relatively Moderate,12.2698912376,Relatively Moderate,3.0000000000,0.0188028000,365467633.7354047298,3530.9854379618,26835489328.5099411011,27200956962.2453422546,0.0000000070,0.0000040043,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.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000002677,0.0000337348,0.0000507987
6,T15007040603,Hawaii,HI,15,Kauai,County,7,15007,40603,15007040603,2544,509507000.0000000000,3763051.3782403329,15.9289735326,23.8613675670,Relatively Moderate,84.6148558545,84.9693251534,22.2413255033,Relatively Moderate,75.9028856597,83.7423312883,553788.5026946985,159866.0053362669,0.0465200191,353552.1448416797,40370.3525167520,35.0215086434,Relatively Moderate,81.3161710393,79.7720797721,1.9560000000,52.5091980000,Relatively Low,23.5125676106,100.0000000000,2.6254599000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0699710120,59268365.9828897715,295.9306212878,2249072721.7871074677,2308341087.7699966431,0.0000020063,0.0000000001,Very Low,8.3203647759,0.0000000014,0.0109218690,8.3312866448,0.6682062552,Very Low,0.7166933897,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,119.0000000000,6.6111111110,1994468.3763317089,1994468.3763317089,0.0030589604,Relatively Moderate,40334.3876510453,40334.3876510453,9.3173396900,Relatively Moderate,10.0118819196,Relatively Moderate,,0.0006288023,509507000.0000000000,2544.0000000000,19334400000.0000000000,19843907000.0000000000,0.0167507621,0.0001397988,Very Low,29888.8000000000,0.0002046000,1554.9600000000,31443.7600000000,13.0703357152,Relatively Low,15.8125293377,Relatively Low,0.0000000000,0.0000000000,509507000.0000000000,2544.0000000000,19334400000.0000000000,3763051.3782403329,19847670051.3782386780,0.0000180224,0.0000000760,0.0002275779,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,2.0000000000,0.0289855072,509500026.7867159247,2543.9789504995,19334240023.7962799072,3763051.3782403329,19847503101.9612274170,0.0000255348,0.0000003276,0.0002460797,Very Low,377.1002611632,0.0000241596,183.6127961654,26.8408852286,587.5539425572,3.4012529352,Very Low,4.9584510525,Very Low,0.0000000000,0.0148900000,509507000.0000000000,2544.0000000000,19334400000.0000000000,19843907000.0000000000,0.0000058883,0.0000028944,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.0000000000,5.9166666660,119566421.2469792366,677.5008183296,5149006219.3049850464,0.0000000000,5268572640.5519647598,0.0001804370,0.0000114831,0.0042466231,Very Low,127647.4010480262,0.0460304759,349831.6169989206,0.0000000000,477479.0180469467,35.2957296359,Relatively High,35.5664685650,Very High,1.0000000000,0.0312500000,509507000.0000000000,2544.0000000000,19334400000.0000000000,3763051.3782403329,19847670051.3782386780,0.0000032387,0.0000018297,0.0000727233,Very Low,51.5667080334,0.0001454600,1105.4960019992,8.5519178837,1165.6146279163,10.1552327033,Very Low,12.4507973241,Relatively Low,0.0000000000,0.0002990171,509507000.0000000000,2544.0000000000,19334400000.0000000000,3763051.3782403329,19847670051.3782386780,0.0021625099,0.0000014419,0.0005084021,Very Low,329.4612383326,0.0000010968,8.3360081463,0.5720625944,338.3693090733,4.9645617720,Very Low,6.3071150891,Very Low,3.0000000000,0.0137011320,71084897.0818793178,86.3741073938,656443216.1930950880,727528113.2749742270,0.0015593140,0.0000038734,Relatively Low,1518.6837843730,0.0000045839,34.8375621943,1553.5213465673,12.3886737842,Relatively Moderate,11.6999323670,Relatively Moderate,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0005411070,0.0000037371,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000182039,0.0107280896,0.0002521232
7,T15007040700,Hawaii,HI,15,Kauai,County,7,15007,40700,15007040700,8403,753840000.0000000000,4902899.0337728122,35.9094759697,14.5995882683,Relatively Low,44.7999010160,33.4355828221,14.2025996464,Relatively Low,34.6292910268,25.1533742331,144200.0701977621,43942.4487448400,0.0128483788,97647.6787717786,2609.9426811435,33.5566820719,Relatively Moderate,69.0887204881,66.9515669516,1.0400000000,52.5091980000,Relatively Low,23.5125676106,100.0000000000,2.6254599000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0699710120,7924120.2167008780,88.3295953796,671304924.8847564459,679229045.1014572382,0.0000171347,0.0000000010,Very Low,9.5004950424,0.0000000064,0.0483633348,9.5488583772,0.6992894806,Very Low,0.7186609050,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,56.0000000000,3.1111111110,0.0000000000,0.0000000000,0.0030589604,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0004179280,753840000.0000000000,8403.0000000000,63862800000.0000000000,64616640000.0000000000,0.0167507621,0.0001397988,Very Low,22605.7000000000,0.0002655400,2018.1040000000,24623.8040000000,12.0474084201,Relatively Low,13.9653684416,Relatively Low,0.0000000000,0.0000000000,753840000.0000000000,8403.0000000000,63862800000.0000000000,4902899.0337728094,64621542899.0337677002,0.0000180224,0.0000000760,0.0002275779,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,2.0000000000,0.0367917638,753839838.3895446062,8402.9987506390,63862790504.8567352295,4902899.0337728094,64621533242.2800445557,0.0000255348,0.0000003276,0.0002460797,Very Low,565.9880891858,0.0000806355,612.8295337298,35.4917036305,1214.3093265461,4.3324423408,Very Low,6.0517928671,Very Low,0.0000000000,0.0148900000,753840000.0000000000,8403.0000000000,63862800000.0000000000,64616640000.0000000000,0.0000058883,0.0000028944,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.0000000000,5.9166666660,17435799.6852873713,171.1495864487,1300736857.0098330975,101991.5773982118,1318274648.2725186348,0.0001804370,0.0000114831,0.0042466231,Very Low,18614.2103427484,0.0116281733,88374.1169843188,2562.6254111801,109550.9527382472,21.6077453518,Relatively Moderate,20.8627809132,Relatively High,1.0000000000,0.0312500000,753840000.0000000000,8403.0000000000,63862800000.0000000000,4902899.0337728094,64621542899.0337677002,0.0000032387,0.0000018297,0.0000727233,Very Low,76.2954133774,0.0004804640,3651.5262990207,11.1423378834,3738.9640502815,14.9769017130,Relatively Low,17.5943580840,Relatively Low,0.0000000000,0.0005599395,753840000.0000000000,8403.0000000000,63862800000.0000000000,4902899.0337728122,64621542899.0337677002,0.0010585776,0.0000007058,0.0002488696,Very Low,446.8306321093,0.0000033210,25.2397457391,0.6832284494,472.7536062978,5.5500327704,Very Low,6.7560542776,Very Low,18.0000000000,0.0822067950,12152864.1611397993,88.2036899901,670348043.9244705439,682500908.0856103897,0.0015593140,0.0000038734,Very Low,1557.8295108863,0.0000280859,213.4529715432,1771.2824824295,12.9424059626,Relatively Moderate,11.7116400138,Relatively Moderate,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0005411070,0.0000037371,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000014941,0.0005323264,0.0000262376
8,T15009030100,Hawaii,HI,15,Maui,County,9,15009,30100,15009030100,2291,368239000.0000000000,644114.4382293100,214.3878544386,15.5323735316,Relatively Low,50.1986554668,40.7975460123,16.2238215839,Relatively Low,46.8895640578,49.0797546012,214942.0674188060,186581.2187114685,0.0036972718,28099.2660221777,261.5826851598,30.8317208514,Relatively Low,39.4153694635,40.1709401709,-0.6640000000,51.8016000000,Relatively Low,16.9583200764,80.0000000000,2.5900800000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0699710120,50139595.9945486337,311.9436410144,2370771671.7096304893,2420911267.7041788101,0.0000003070,0.0000000000,Very Low,1.0772166727,0.0000000011,0.0081382716,1.0853549442,0.3387378870,Very Low,0.3242214636,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,427.0000000000,23.7222222220,0.0000000000,0.0000000000,0.0000001625,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0071038122,368239000.0000000000,2291.0000000000,17411600000.0000000000,17779839000.0000000000,0.0008599048,0.0000075108,Very Low,185778.4000000000,0.0035934900,27310.5240000000,213088.9240000000,24.7340676281,Relatively High,26.7033206855,Relatively Moderate,1.0000000000,0.0312500000,368239000.0000000000,2291.0000000000,17411600000.0000000000,644114.4382293099,17780483114.4382286072,0.0000180224,0.0000000210,0.0002275779,Very Low,207.3916295405,0.0000015057,11.4431512000,4.5808200780,223.4156008185,3.9000151241,Very Low,3.9819297582,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0100000000,368239000.0000000000,2291.0000000000,17411600000.0000000000,644114.4382293099,17780483114.4382286072,0.0000255348,0.0000003276,0.0002460797,Very Low,94.0289311886,0.0000075062,57.0471056754,1.5850348535,152.6610717175,2.1703633660,Very Low,2.8235447615,Very Low,0.0000000000,0.0148900000,368239000.0000000000,2291.0000000000,17411600000.0000000000,17779839000.0000000000,0.0000058883,0.0000016270,Relatively Low,32.2860086451,0.0000555018,421.8139439480,454.0999525931,10.4797118228,Very Low,8.2817973573,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,107.0000000000,4.4583333330,25.0001805198,0.0001620382,1231.4903737514,13472.8923938542,14729.3829481254,0.0000305947,0.0000027267,0.0042466231,Relatively Low,0.0034100604,0.0000000020,0.0149708011,255.0804028339,255.0987836954,2.8640034011,Very Low,2.5754150950,Very Low,1.0000000000,0.0312500000,368239000.0000000000,2291.0000000000,17411600000.0000000000,644114.4382293099,17780483114.4382286072,0.0000005132,0.0000000835,0.0000133875,Very Low,5.9052638179,0.0000059750,45.4103272432,0.2694722287,51.5850632898,3.5920816990,Very Low,3.9301453807,Very Low,0.0000000000,0.0024581721,368239000.0000000000,2291.0000000000,17411600000.0000000000,644114.4382293100,17780483114.4382286072,0.0001798702,0.0000001199,0.0000422872,Very Low,162.8175922584,0.0000006754,5.1331444622,0.0669551230,168.0176918435,3.9312947106,Very Low,4.4567490456,Very Low,6.0000000000,0.0274022650,14124383.3924189322,90.8041015676,690111171.9139463902,704235555.3063653708,0.0007732141,0.0000000366,Very Low,299.2648749055,0.0000000912,0.6928697330,299.9577446384,7.1604299781,Relatively Low,6.0346593804,Relatively Low,1.0000000000,0.0035310000,368238629.3887721896,2290.9968855822,17411576330.4244422913,17779814959.8132133484,0.0000000070,0.0000040104,Very Low,0.0091377281,0.0000324420,246.5589966972,246.5681344253,7.2433056430,Very Low,6.9266931121,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,1.0000000000,0.0368471205,4945035.4689473873,9.3607227865,71141493.1772216111,290715.7155912937,76377244.3617603034,0.0000000851,0.0000001057,0.0000000000,Very Low,0.0346466514,0.0000000815,0.6193741462,0.0000000427,0.6540208402,1.3817404111,Very Low,0.8046981705,Very Low,November 2021,0.0000000311,0.0004061121,0.0000013674
9,T15009030201,Hawaii,HI,15,Maui,County,9,15009,30201,15009030201,2453,240407000.0000000000,911133.6885541945,45.6037678430,16.0782655749,Relatively Low,53.1489297351,46.3190184049,16.5620580551,Relatively Low,48.7303922243,51.5337423313,228667.7111643000,175591.2462281788,0.0069825353,53067.2684114386,9.1965246826,31.2634928758,Relatively Low,44.0524717533,45.8689458689,-0.3940000000,51.8016000000,Relatively Low,16.9583200764,80.0000000000,2.5900800000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0679710120,1123293.7247402107,11.4615610477,87107863.9623089433,88231157.6870491505,0.0002145287,0.0000000165,Very Low,16.3795722727,0.0000000129,0.0979067238,16.4774789966,0.8387581763,Very Low,0.8140563845,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,42.0000000000,2.3333333330,0.0000000000,0.0000000000,0.0000001625,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0066172465,240407000.0000000000,2453.0000000000,18642800000.0000000000,18883207000.0000000000,0.0008599048,0.0000075108,Very Low,175248.3000000000,0.0068716000,52224.1600000000,227472.4600000000,25.2785131982,Relatively High,27.6733022248,Relatively Moderate,1.0000000000,0.0312500000,240407000.0000000000,2453.0000000000,18642800000.0000000000,911133.6885541949,18884118133.6885528564,0.0000180224,0.0000000210,0.0002275779,Very Low,135.3968468355,0.0000016121,12.2523133536,6.4798104909,154.1289706800,3.4460630452,Very Low,3.5677158209,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0100000000,240407000.0000000000,2453.0000000000,18642800000.0000000000,911133.6885541949,18884118133.6885528564,0.0000255348,0.0000003276,0.0002460797,Very Low,61.3873415370,0.0000080370,61.0809909305,2.2421150138,124.7104474814,2.0288843577,Very Low,2.6764507281,Very Low,0.0000000000,0.0148900000,240407000.0000000000,2453.0000000000,18642800000.0000000000,18883207000.0000000000,0.0000058883,0.0000016270,Relatively Low,21.0781109017,0.0000594265,451.6410320840,472.7191429857,10.6210287562,Very Low,8.5110193188,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,107.0000000000,4.4583333330,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000305947,0.0000027267,0.0042466231,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,1.0000000000,0.0312500000,240407000.0000000000,2453.0000000000,18642800000.0000000000,911133.6885541949,18884118133.6885528564,0.0000005132,0.0000000835,0.0000133875,Very Low,3.8552862642,0.0000063975,48.6213586754,0.3811826146,52.8578275542,3.6213846227,Very Low,4.0176934337,Very Low,0.0000000000,0.0005103731,240407000.0000000000,2453.0000000000,18642800000.0000000000,911133.6885541945,18884118133.6885528564,0.0008544857,0.0000005697,0.0002008880,Very Low,104.8430527576,0.0000007133,5.4209693174,0.0934165632,110.3574386382,3.4173107124,Very Low,3.9282264255,Very Low,1.0000000000,0.0045670440,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0007732141,0.0000000366,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,1.0000000000,0.0035310000,240406941.1554738879,2452.9993801304,18642795288.9913101196,18883202230.1467857361,0.0000000070,0.0000040104,Very Low,0.0059656242,0.0000347360,263.9938403539,263.9998059781,7.4101277885,Very Low,7.1854598150,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,1.0000000000,0.0106982003,7419.8231090135,0.0000000000,0.0000000000,0.0000000000,7419.8231090135,0.0000000851,0.0000001057,0.0000000000,Very Low,0.0000519859,0.0000000000,0.0000000000,0.0000000000,0.0000519859,0.0594097511,Very Low,0.0350835894,Very Low,November 2021,0.0000000311,0.0000100935,0.0000014265
10,T15001021402,Hawaii,HI,15,Hawaii,County,1,15001,21402,15001021402,4025,425500000.0000000000,1383968.4585880421,16.1940325556,40.6895862222,Very High,99.1723834532,97.2392638037,37.6719247757,Relatively High,98.4849942947,96.0122699387,2691010.3460283098,1957068.2379162407,0.0965656564,733898.9884986160,43.1196134532,34.0939983689,Relatively Moderate,74.0007660110,71.7948717949,1.3760000000,50.7751980000,Relatively Low,9.3859370029,40.0000000000,2.5387599000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0699710120,23588727.0303007476,223.1366070434,1695838213.5297291279,1719426940.5600299835,0.0000029443,0.0000000002,Very Low,4.8595807616,0.0000000034,0.0257939510,4.8853747126,0.5592926832,Very Low,0.6039331168,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,161.0000000000,8.9444444440,1383968.4585880421,1383968.4585880421,0.0000000541,Very Low,0.6696122276,0.6696122276,0.2376883514,Very Low,0.2571334241,Very Low,,0.0099990439,425500000.0000000000,4025.0000000000,30590000000.0000000000,31015500000.0000000000,0.0008505842,0.0000116917,Very Low,1310569.6000000001,0.0711399900,540663.9240000000,1851233.5240000000,50.8466471390,Very High,61.9303831851,Very High,1.0000000000,0.0312500000,425500000.0000000000,4025.0000000000,30590000000.0000000000,1383968.4585880418,31016883968.4585876465,0.0000180224,0.0000000760,0.0002275779,Very Low,239.6409352949,0.0000095630,72.6788656012,9.8425219597,322.1623228558,4.4060901141,Very Low,5.0751910790,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,1.0000000000,0.0144927536,425500000.0000000000,4025.0000000000,30590000000.0000000000,1383968.4585880418,31016883968.4585876465,0.0000255348,0.0000003276,0.0002460797,Very Low,157.4643304159,0.0000191122,145.2530698864,4.9357469279,307.6531472301,2.7414277339,Very Low,4.0235624639,Very Low,0.0000000000,0.0148900000,425500000.0000000000,4025.0000000000,30590000000.0000000000,31015500000.0000000000,0.0000058883,0.0000013610,Very Low,37.3064685666,0.0000815678,619.9152211000,657.2216896666,11.8541244954,Very Low,10.5685757043,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0000000000,5.9166666660,174713506.0100780129,1099.3436364052,8355011636.6798896790,341.9328564726,8529725484.6228227615,0.0006245044,0.0000038327,0.0003492485,Very Low,645563.6564497937,0.0249297326,189465.9676547664,0.7065655187,835030.3306700788,42.5243956562,Very High,43.1403413275,Very High,1.0000000000,0.0312500000,425500000.0000000000,4025.0000000000,30590000000.0000000000,1383968.4585880418,31016883968.4585876465,0.0000083601,0.0000003102,0.0006212585,Very Low,111.1628706773,0.0000390232,296.5763508737,26.8688159761,434.6080375270,7.3092160828,Very Low,9.0220437817,Very Low,0.0000000000,0.0001368209,425500000.0000000000,4025.0000000000,30590000000.0000000000,1383968.4585880421,31016883968.4585876465,0.0021643504,0.0000014431,0.0005088348,Very Low,126.0026443038,0.0000007947,6.0399428818,0.0963508431,132.1389380288,3.6287819112,Very Low,4.6410708199,Very Low,3.0000000000,0.0137011320,28350000.0000000000,217.0000000000,1649200000.0000000000,1677550000.0000000000,0.0006654598,0.0000038734,Very Low,258.4826038290,0.0000115162,87.5233472654,346.0059510944,7.5095445566,Relatively Low,7.1400125868,Relatively Low,4.0000000000,0.0207448000,425499989.0686448216,4024.9999387069,30589999534.1724624634,31015499523.2411155701,0.0000000070,0.0000040043,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.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000062310,0.0000311565,0.0015187781
11,T15001021800,Hawaii,HI,15,Hawaii,County,1,15001,21800,15001021800,6322,560173000.0000000000,1734823.6758895495,140.9697985177,26.9714927226,Relatively High,91.0611913829,88.0368098160,25.2568722397,Relatively Moderate,85.4191011699,88.0368098160,810962.2510357033,553967.9101830884,0.0338073298,256935.7064026278,58.6344499873,33.7086018582,Relatively Moderate,70.5085765874,69.5156695157,1.1350000000,50.7751980000,Relatively Low,9.3859370029,40.0000000000,2.5387599000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0699710120,51086751.8263611421,576.5548233247,4381816657.2675571442,4432903409.0939178467,0.0000003784,0.0000000000,Very Low,1.3527161263,0.0000000015,0.0117538785,1.3644700048,0.3655901691,Very Low,0.3903076103,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,1575.0000000000,87.5000000000,1734823.6758895495,1734823.6758895495,0.0000000541,Very Low,8.2112108805,8.2112108805,0.5481118294,Very Low,0.5862496728,Very Low,,0.0097461622,560173000.0000000000,6322.0000000000,48047200000.0000000000,48607373000.0000000000,0.0008505842,0.0000116917,Very Low,538363.3999999999,0.0318912200,242373.2720000000,780736.6720000000,38.1308756030,Very High,45.9177953623,Very High,1.0000000000,0.0312500000,560173000.0000000000,6322.0000000000,48047200000.0000000000,1734823.6758895495,48609107823.6758956909,0.0000180224,0.0000000760,0.0002275779,Very Low,315.4885585027,0.0000150205,114.1554753602,12.3377379153,441.9817717782,4.8958703896,Very Low,5.5756016541,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0100000000,560173000.0000000000,6322.0000000000,48047200000.0000000000,1734823.6758895495,48609107823.6758956909,0.0000255348,0.0000003276,0.0002460797,Very Low,143.0388103126,0.0000207133,157.4211270537,4.2690488333,304.7289861995,2.7327145569,Very Low,3.9654366815,Very Low,0.0000000000,0.0148900000,560173000.0000000000,6322.0000000000,48047200000.0000000000,48607373000.0000000000,0.0000058883,0.0000013610,Very Low,49.1141631406,0.0001281172,973.6904416880,1022.8046048286,13.7371428056,Relatively Low,12.1089418931,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0000000000,5.9166666660,3744844.4892568006,53.3229072465,405254095.0732191205,0.0000000000,408998939.5624759197,0.0006245044,0.0000038327,0.0003492485,Very Low,13837.1414811001,0.0012091995,9189.9164965874,0.0000000000,23027.0579776875,12.8474484831,Relatively Low,12.8862073443,Relatively Moderate,1.0000000000,0.0312500000,560173000.0000000000,6322.0000000000,48047200000.0000000000,1734823.6758895495,48609107823.6758956909,0.0000083601,0.0000003102,0.0006212585,Very Low,146.3465070599,0.0000612931,465.8275006710,33.6804338323,645.8544415632,8.3409675847,Very Low,10.1791934049,Very Low,0.0000000000,0.0012868546,560173000.0000000000,6322.0000000000,48047200000.0000000000,1734823.6758895495,48609107823.6758956909,0.0002591576,0.0000001728,0.0000609275,Very Low,186.8166860621,0.0000014058,10.6840235122,0.1360185260,197.6367281003,4.1499208704,Very Low,5.2476929578,Very Low,38.0000000000,0.1735476790,8010662.9609236429,89.7924700335,682422772.2545192242,690433435.2154427767,0.0006654598,0.0000038734,Very Low,925.1434444921,0.0000603605,458.7398439858,1383.8832884779,11.9202554920,Relatively Moderate,11.2055646697,Relatively Moderate,4.0000000000,0.0199142254,554917542.9647560120,6278.2557780679,47714743913.3159942627,48269661456.2807464600,0.0000000070,0.0000040043,Very Low,0.0678162917,0.0004199984,3191.9877398910,3192.0555561827,17.0077935464,Relatively Low,18.1414348445,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000002271,0.0000337985,0.0000262049
12,T15009030402,Hawaii,HI,15,Maui,County,9,15009,30402,15009030402,8652,848387000.0000000000,6154260.5031788396,17.7870581334,22.7178018808,Relatively Moderate,81.2823932141,83.7423312883,23.9449676493,Relatively Moderate,81.7621908467,85.2760736196,691042.4090305660,529396.7171852423,0.0212606987,161581.3101906748,64.3816546488,30.5534677690,Relatively Low,36.5264137007,37.6068376068,-0.8380000000,51.8016000000,Relatively Low,16.9583200764,80.0000000000,2.5900800000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000478451,0.0000000048,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,49.0000000000,2.7222222220,5275080.4312961483,5275080.4312961483,0.0000001625,Very Low,2.3330989039,2.3330989039,0.3603389066,Very Low,0.3424150272,Very Low,,0.0063848119,848387000.0000000000,8652.0000000000,65755200000.0000000000,66603587000.0000000000,0.0008599048,0.0000075108,Very Low,528285.0000000000,0.0208697400,158610.0240000000,686895.0240000000,36.5374899179,Very High,39.0904958889,Relatively High,1.0000000000,0.0312500000,848387000.0000000000,8652.0000000000,65755200000.0000000000,6154260.5031788396,66609741260.5031814575,0.0000180224,0.0000000210,0.0002275779,Very Low,477.8102330578,0.0000056862,43.2152528077,43.7679368836,564.7934227491,5.3128187837,Very Low,5.3754527661,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0100000000,848387000.0000000000,8652.0000000000,65755200000.0000000000,6154260.5031788396,66609741260.5031814575,0.0000255348,0.0000003276,0.0002460797,Very Low,216.6335527858,0.0000283473,215.4393532534,15.1443855568,447.2172915961,3.1054833874,Very Low,4.0036322682,Very Low,0.0000000000,0.0148900000,848387000.0000000000,8652.0000000000,65755200000.0000000000,66603587000.0000000000,0.0000058883,0.0000016270,Relatively Low,74.3838377151,0.0002096036,1592.9874478560,1667.3712855711,16.1675033957,Relatively Low,12.6613776932,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000305947,0.0000027267,0.0042466231,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,1.0000000000,0.0312500000,848387000.0000000000,8652.0000000000,65755200000.0000000000,6154260.5031788396,66609741260.5031814575,0.0000005132,0.0000000835,0.0000133875,Very Low,13.6051560390,0.0000225649,171.4928639494,2.5747013191,187.6727213076,5.5246563276,Very Low,5.9900496315,Very Low,0.0000000000,0.0001715926,848387000.0000000000,8652.0000000000,65755200000.0000000000,6154260.5031788396,66609741260.5031814575,0.0022617831,0.0000015081,0.0005317410,Very Low,329.2633531826,0.0000022389,17.0158149667,0.5615319854,346.8407001347,5.0056515598,Very Low,5.6236951437,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0007732141,0.0000000366,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,1.0000000000,0.0035310000,848386998.4516693354,8651.9999778810,65755199831.8955307007,66603586830.3472061157,0.0000000070,0.0000040104,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.0000000000,0.0008568947,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000000310,0.0000104613,0.0000013104
13,T15009030800,Hawaii,HI,15,Maui,County,9,15009,30800,15009030800,6907,606441000.0000000000,4986834.9241859820,54.8722617975,18.4696898486,Relatively Moderate,64.9060339020,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.1990000000,51.8016000000,Relatively Low,16.9583200764,80.0000000000,2.5900800000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0699710120,13759687.4874341562,156.7146045134,1191030994.3018012047,1204790681.7892351151,0.0000014976,0.0000000002,Very Low,1.4418462360,0.0000000020,0.0148379347,1.4566841707,0.3736471249,Very Low,0.3477106940,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,546.0000000000,30.3333333330,0.0000000000,0.0000000000,0.0000001625,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0058745704,606441000.0000000000,6907.0000000000,52493200000.0000000000,53099641000.0000000000,0.0008599048,0.0000075108,Very Low,263409.7000000000,0.0099512400,75629.4240000000,339039.1240000000,28.8752126234,Relatively High,30.3091204383,Relatively High,1.0000000000,0.0312500000,606441000.0000000000,6907.0000000000,52493200000.0000000000,4986834.9241859792,53104627834.9241867065,0.0000180224,0.0000000210,0.0002275779,Very Low,341.5466238236,0.0000045394,34.4992777558,35.4654269344,411.5113285137,4.7806732077,Very Low,4.7456398520,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0100000000,606441000.0000000000,6907.0000000000,52493200000.0000000000,4986834.9241859792,53104627834.9241867065,0.0000255348,0.0000003276,0.0002460797,Very Low,154.8532313496,0.0000226300,171.9879349193,12.2715882373,339.1127545062,2.8318552857,Very Low,3.5818854928,Very Low,0.0000000000,0.0148900000,606441000.0000000000,6907.0000000000,52493200000.0000000000,53099641000.0000000000,0.0000058883,0.0000016270,Relatively Low,53.1707922538,0.0001673292,1271.7018379960,1324.8726302498,14.9746574859,Relatively Low,11.5056344625,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,107.0000000000,4.4583333330,42656810.4671784788,478.2321074611,3634564016.7041287422,1051.9819381299,3677221879.1532449722,0.0000305947,0.0000027267,0.0042466231,Very Low,5818.4500156325,0.0058137018,44184.1333216547,19.9170281115,50022.5003653988,16.6389480361,Relatively Moderate,14.5471523811,Relatively Moderate,1.0000000000,0.0312500000,606441000.0000000000,6907.0000000000,52493200000.0000000000,4986834.9241859792,53104627834.9241867065,0.0000005132,0.0000000835,0.0000133875,Very Low,9.7251896050,0.0000180138,136.9049019069,2.0862962253,148.7163877373,5.1123960729,Very Low,5.4383270008,Very Low,0.0000000000,0.0005655006,606441000.0000000000,6907.0000000000,52493200000.0000000000,4986834.9241859820,53104627834.9241867065,0.0006786466,0.0000004525,0.0001595486,Very Low,232.7369430918,0.0000017674,13.4323833739,0.4499362609,246.6192627266,4.4677918235,Very Low,4.9244889733,Very Low,4.0000000000,0.0182681760,67033876.9577226788,771.7073878955,5864976148.0061273575,5932010024.9638500214,0.0007732141,0.0000000366,Very Low,946.8677210060,0.0000005165,3.9256132198,950.7933342258,10.5183540477,Relatively Low,8.6186622138,Relatively Low,1.0000000000,0.0035310000,606440788.3682715893,6906.9980871584,52493185462.4039611816,53099626250.7722320557,0.0000000070,0.0000040104,Very Low,0.0150486413,0.0000978075,743.3368981321,743.3519467734,10.4637974095,Relatively Low,9.7287461836,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000008727,0.0000140751,0.0000109028
14,T15003010201,Hawaii,HI,15,Honolulu,County,3,15003,10201,15003010201,5882,557874000.0000000000,2011289.8003964359,25.5816853094,17.5102524699,Relatively Low,60.4352548152,60.1226993865,18.0813496455,Relatively Low,56.9034493188,68.4049079755,297546.2422935000,249181.3591556492,0.0063307538,48113.7288361653,251.1543016855,30.9468600579,Relatively Low,40.5985828797,41.5954415954,-0.5920000000,51.4027980000,Relatively Low,13.6493795737,60.0000000000,2.5701399000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0699710120,135837044.0571999550,1432.2113831160,10884806511.6815261841,11020643555.7387275696,0.0000716225,0.0000000065,Very Low,680.7471428573,0.0000006562,4.9869103498,685.7340532072,2.9066433749,Very Low,2.8141353282,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000004090,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0029410400,557874000.0000000000,5882.0000000000,44703200000.0000000000,45261074000.0000000000,0.0167507621,0.0001397988,Very Low,171686.6000000000,0.0057326400,43568.0640000000,215254.6640000000,24.8175806479,Relatively High,27.1021914971,Relatively Moderate,1.0000000000,0.0312500000,557874000.0000000000,5882.0000000000,44703200000.0000000000,2011289.8003964359,45263085289.8003997803,0.0000180224,0.0000000210,0.0002275779,Very Low,314.1937652945,0.0000038612,29.3453308436,14.3039127110,357.8430088491,4.5630928384,Very Low,4.7126137782,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0144927536,557874000.0000000000,5882.0000000000,44703200000.0000000000,2011289.8003964359,45263085289.8003997803,0.0000255348,0.0000003276,0.0002460797,Very Low,206.4518351676,0.0000279300,212.2679644878,7.1730084535,425.8928081089,3.0553182212,Very Low,4.0206282250,Very Low,0.0000000000,0.0148900000,557874000.0000000000,5882.0000000000,44703200000.0000000000,45261074000.0000000000,0.0000058883,0.0000002640,Very Low,48.9125942306,0.0000231219,175.7264910720,224.6390853026,8.2882077573,Very Low,6.6253851293,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0000000000,6.3750000000,136393741.7226257920,1377.3125391358,10467575297.4320640564,63035.3285035604,10604032074.4831962585,0.0000678921,0.0000000585,0.0005670888,Very Low,59032.8473920028,0.0005136831,3903.9915132622,227.8847583929,63164.7236636579,17.9843853774,Relatively Moderate,16.3585402916,Relatively Moderate,1.0000000000,0.0312500000,557874000.0000000000,5882.0000000000,44703200000.0000000000,2011289.8003964359,45263085289.8003997803,0.0000002273,0.0000001163,0.0000219536,Very Low,3.9619053212,0.0000213858,162.5320803577,1.3798463170,167.8738319958,5.3231154392,Very Low,5.8911968528,Very Low,0.0000000000,0.0006143702,557874000.0000000000,5882.0000000000,44703200000.0000000000,2011289.8003964359,45263085289.8003997803,0.0014208892,0.0000009474,0.0003340484,Very Low,486.9972150472,0.0000034236,26.0196966141,0.4127758112,513.4296874725,5.7048503468,Very Low,6.5422388715,Very Low,6.0000000000,0.0274022650,391320912.7946820855,4049.3333832863,30774933712.9758224487,31166254625.7705078125,0.0015593140,0.0000000365,Very Low,16720.6473057280,0.0000040520,30.7948491780,16751.4421549060,27.3696856628,Relatively High,23.3323622044,Relatively High,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0477752648,0.0001095931,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000001010,0.0001248723,0.0001089388
15,T15007040604,Hawaii,HI,15,Kauai,County,7,15007,40604,15007040604,3139,376167000.0000000000,807532.1623493504,8.3880250232,14.2765841171,Relatively Low,42.8710870372,30.6748466258,13.8830970216,Relatively Low,32.6111164575,22.0858895706,134685.5527553962,77709.9447390011,0.0074864082,56896.7026370244,78.9053793707,33.5694753170,Relatively Moderate,69.2104615216,67.8062678063,1.0480000000,52.5091980000,Relatively Low,23.5125676106,100.0000000000,2.6254599000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0699710120,21860058.4640938416,182.4155854150,1386358449.1537222862,1408218507.6178162098,0.0000009083,0.0000000000,Very Low,1.3892481407,0.0000000004,0.0030759352,1.3923240759,0.3680611303,Very Low,0.3784012134,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,119.0000000000,6.6111111110,0.0000000000,0.0000000000,0.0030589604,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0004927213,376167000.0000000000,3139.0000000000,23856400000.0000000000,24232567000.0000000000,0.0167507621,0.0001397988,Very Low,19693.2000000000,0.0002150400,1634.3040000000,21327.5040000000,11.4838786799,Relatively Low,13.3171993296,Relatively Low,0.0000000000,0.0000000000,376167000.0000000000,3139.0000000000,23856400000.0000000000,807532.1623493504,24233374532.1623497009,0.0000180224,0.0000000760,0.0002275779,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,2.0000000000,0.0289855072,376166995.4879204631,3138.9999875522,23856399905.3967666626,807532.1623493504,24233374433.0470390320,0.0000255348,0.0000003276,0.0002460797,Very Low,278.4154362740,0.0000298104,226.5587004029,5.7599208486,510.7340575256,3.2460456341,Very Low,4.5359830678,Very Low,0.0000000000,0.0148900000,376167000.0000000000,3139.0000000000,23856400000.0000000000,24232567000.0000000000,0.0000058883,0.0000028944,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.0000000000,5.9166666660,51663594.4435835779,101.8023609365,773697943.1173160076,2833.2124537414,825364370.7733533382,0.0001804370,0.0000114831,0.0042466231,Very Low,55155.3144331424,0.0069166132,52566.2605523137,71.1868804704,107792.7618659264,21.4915266456,Relatively Moderate,20.7584800543,Relatively High,1.0000000000,0.0312500000,376167000.0000000000,3139.0000000000,23856400000.0000000000,807532.1623493504,24233374532.1623497009,0.0000032387,0.0000018297,0.0000727233,Very Low,38.0714962911,0.0001794807,1364.0534395736,1.8351991633,1403.9601350280,10.8049594658,Very Low,12.6981405265,Relatively Low,0.0000000000,0.0001499326,376167000.0000000000,3139.0000000000,23856400000.0000000000,807532.1623493504,24233374532.1623497009,0.0043344678,0.0000028901,0.0010190254,Very Low,244.4626335188,0.0000013602,10.3373675981,0.1233788883,254.9233800052,4.5173854980,Very Low,5.5009638623,Very Low,4.0000000000,0.0182681760,79552220.5985832810,124.6270280907,947165413.4890952110,1026717634.0876784325,0.0015593140,0.0000038734,Relatively Low,2266.1103815019,0.0000088186,67.0216568862,2333.1320383881,14.1872704626,Relatively Moderate,12.8430178115,Relatively Moderate,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0005411070,0.0000037371,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000023137,0.0000977117,0.0001482071
16,T15009030303,Hawaii,HI,15,Maui,County,9,15009,30303,15009030303,3567,1129413000.0000000000,197696.7639710142,19.7369018049,25.6493645079,Relatively High,88.6938231210,86.8098159509,26.4505931648,Relatively Moderate,88.1315387894,88.9570552147,931468.5240622705,861544.7090485197,0.0092002397,69921.8217850408,1.9932287101,31.2283114516,Relatively Low,43.6448444724,45.0142450142,-0.4160000000,51.8016000000,Relatively Low,16.9583200764,80.0000000000,2.5900800000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0699710120,100790585.9537615627,318.3246696267,2419267489.1627006531,2520058075.1164622307,0.0000180303,0.0000000002,Very Low,127.1574129927,0.0000000042,0.0319497717,127.1893627645,1.6576395812,Very Low,1.6070109389,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,1239.0000000000,68.8333333330,0.0000000000,0.0000000000,0.0000001625,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0069234740,1129413000.0000000000,3567.0000000000,27109200000.0000000000,28238613000.0000000000,0.0008599048,0.0000075108,Very Low,848650.0000000000,0.0088365200,67157.5520000000,915807.5520000000,40.2139430552,Very High,43.9741165216,Very High,1.0000000000,0.0312500000,1129413000.0000000000,3567.0000000000,27109200000.0000000000,197696.7639710143,28238810696.7639694214,0.0000180224,0.0000000210,0.0002275779,Very Low,636.0836372416,0.0000023443,17.8165518684,1.4059819995,655.3061711094,5.5826861321,Very Low,5.7732618037,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0100000000,1129413000.0000000000,3567.0000000000,27109200000.0000000000,197696.7639710143,28238810696.7639694214,0.0000255348,0.0000003276,0.0002460797,Very Low,288.3928569774,0.0000116869,88.8201771908,0.4864915964,377.6995257646,2.9354306720,Very Low,3.8679850902,Very Low,0.0000000000,0.0148900000,1129413000.0000000000,3567.0000000000,27109200000.0000000000,28238613000.0000000000,0.0000058883,0.0000016270,Relatively Low,99.0232916173,0.0000864142,656.7482924760,755.7715840933,12.4192596738,Relatively Low,9.9408084200,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,107.0000000000,4.4583333330,45816805.8582067415,16.6469757394,126517015.6197257191,0.0000000000,172333821.4779324830,0.0000305947,0.0000027267,0.0042466231,Very Low,6249.4779108493,0.0002023715,1538.0234492799,0.0000000000,7787.5013601292,8.9509702135,Relatively Low,8.1525703711,Relatively Low,1.0000000000,0.0312500000,1129413000.0000000000,3567.0000000000,27109200000.0000000000,197696.7639710143,28238810696.7639694214,0.0000005132,0.0000000835,0.0000133875,Very Low,18.1118287968,0.0000093029,70.7021550749,0.0827085754,88.8966924471,4.3065889072,Very Low,4.7725068917,Very Low,0.0000000000,0.0002380802,1129413000.0000000000,3567.0000000000,27109200000.0000000000,197696.7639710142,28238810696.7639694214,0.0016308791,0.0000010874,0.0003834167,Very Low,438.5285864888,0.0000009235,7.0183510621,0.0180465388,445.5649840897,5.4415290045,Very Low,6.2485052977,Very Low,4.0000000000,0.0182681760,356660523.6966123581,240.8813720156,1830698427.3183383942,2187358951.0149507523,0.0007732141,0.0000000366,Relatively Low,5037.9054975204,0.0000001612,1.2253441048,5039.1308416252,18.3388016795,Relatively Moderate,15.6543612096,Relatively Moderate,1.0000000000,0.0035310000,1129412989.0734086037,3566.9999767517,27109199823.3126258850,28238612812.3860282898,0.0000000070,0.0000040104,Very Low,0.0280260353,0.0000505110,383.8835142123,383.9115402475,8.3952741740,Very Low,8.1315765739,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000000878,0.0000100823,0.0000069565
17,T15009030403,Hawaii,HI,15,Maui,County,9,15009,30403,15009030403,3269,383672000.0000000000,401871.6484401426,7.3245313886,17.0102151832,Relatively Low,57.9029131553,53.9877300613,18.4437334890,Relatively Low,58.6782881260,69.6319018405,315797.3279419072,249358.1267817433,0.0087414470,66434.9970379305,4.2041222335,29.7011178098,Relatively Low,28.2794845840,31.6239316239,-1.3710000000,51.8016000000,Relatively Low,16.9583200764,80.0000000000,2.5900800000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000478451,0.0000000048,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,42.0000000000,2.3333333330,401871.6484401426,401871.6484401426,0.0000001625,Very Low,0.1523507661,0.1523507661,0.1451047583,Very Low,0.1340403640,Very Low,,0.0064465741,383672000.0000000000,3269.0000000000,24844400000.0000000000,25228072000.0000000000,0.0008599048,0.0000075108,Very Low,248855.3000000000,0.0085937300,65312.3480000000,314167.6480000000,28.1511239294,Relatively High,29.2779385716,Relatively High,1.0000000000,0.0312500000,383672000.0000000000,3269.0000000000,24844400000.0000000000,401871.6484401426,25228473871.6484413147,0.0000180224,0.0000000210,0.0002275779,Very Low,216.0834710312,0.0000021484,16.3280930916,2.8580351669,235.2695992897,3.9678056982,Very Low,3.9025882218,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0100000000,383672000.0000000000,3269.0000000000,24844400000.0000000000,401871.6484401426,25228473871.6484413147,0.0000255348,0.0000003276,0.0002460797,Very Low,97.9697101257,0.0000107105,81.3998203636,0.9889245321,180.3584550214,2.2943967393,Very Low,2.8754496849,Very Low,0.0000000000,0.0148900000,383672000.0000000000,3269.0000000000,24844400000.0000000000,25228072000.0000000000,0.0000058883,0.0000016270,Relatively Low,33.6391243428,0.0000791949,601.8811797320,635.5203040748,11.7221875304,Very Low,8.9239875048,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000305947,0.0000027267,0.0042466231,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,1.0000000000,0.0312500000,383672000.0000000000,3269.0000000000,24844400000.0000000000,401871.6484401426,25228473871.6484413147,0.0000005132,0.0000000835,0.0000133875,Very Low,6.1527550844,0.0000085257,64.7954429324,0.1681273425,71.1163253592,3.9978637221,Very Low,4.2137175891,Very Low,0.0000000000,0.0000705247,383672000.0000000000,3269.0000000000,24844400000.0000000000,401871.6484401426,25228473871.6484413147,0.0055055910,0.0000036709,0.0012943543,Very Low,148.9722004575,0.0000008463,6.4320127900,0.0366844259,155.4408976735,3.8306490250,Very Low,4.1833575346,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0007732141,0.0000000366,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,1.0000000000,0.0035310000,383671965.4931728244,3268.9998233806,24844398657.6928062439,25228070623.1859817505,0.0000000070,0.0000040104,Very Low,0.0095207016,0.0000462911,351.8124890209,351.8220097225,8.1545280316,Very Low,7.5121282608,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000000310,0.0000104614,0.0000013105
18,T15009030404,Hawaii,HI,15,Maui,County,9,15009,30404,15009030404,5609,567723000.0000000000,5651711.1872665770,10.5235860733,21.7626773065,Relatively Moderate,78.1547725429,80.9815950920,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.1610000000,51.8016000000,Relatively Low,16.9583200764,80.0000000000,2.5900800000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000478451,0.0000000048,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,42.0000000000,2.3333333330,5651711.1872665770,5651711.1872665770,0.0000001625,Very Low,2.1425809272,2.1425809272,0.3502508394,Very Low,0.3502314548,Very Low,,0.0062206970,567723000.0000000000,5609.0000000000,42628400000.0000000000,43196123000.0000000000,0.0008599048,0.0000075108,Very Low,399450.1000000000,0.0156823200,119185.6320000000,518635.7320000000,33.2707606493,Relatively High,37.4566993659,Relatively High,1.0000000000,0.0312500000,567723000.0000000000,5609.0000000000,42628400000.0000000000,5651711.1872665808,43201774711.1872634888,0.0000180224,0.0000000210,0.0002275779,Very Low,319.7407067123,0.0000036863,28.0159908693,40.1939011846,387.9505987662,4.6876365807,Very Low,4.9908933102,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0100000000,567723000.0000000000,5609.0000000000,42628400000.0000000000,5651711.1872665808,43201774711.1872634888,0.0000255348,0.0000003276,0.0002460797,Very Low,144.9666844120,0.0000183772,139.6670518260,13.9077137264,298.5414499644,2.7140919728,Very Low,3.6820004321,Very Low,0.0000000000,0.0148900000,567723000.0000000000,5609.0000000000,42628400000.0000000000,43196123000.0000000000,0.0000058883,0.0000016270,Relatively Low,49.7761228061,0.0001358838,1032.7168972520,1082.4930200581,13.9993290959,Relatively Low,11.5366450380,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000305947,0.0000027267,0.0042466231,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,1.0000000000,0.0312500000,567723000.0000000000,5609.0000000000,42628400000.0000000000,5651711.1872665808,43201774711.1872634888,0.0000005132,0.0000000835,0.0000133875,Very Low,9.1042884934,0.0000146286,111.1770080794,2.3644543876,122.6457509603,4.7942688610,Very Low,5.4699309407,Very Low,0.0000000000,0.0001014667,567723000.0000000000,5609.0000000000,42628400000.0000000000,5651711.1872665770,43201774711.1872634888,0.0038099356,0.0000025403,0.0008957088,Very Low,219.4713585555,0.0000014458,10.9878736031,0.5136538593,230.9728860179,4.3712360994,Very Low,5.1676654102,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0007732141,0.0000000366,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,1.0000000000,0.0035310000,567722906.2145869732,5608.9992323313,42628394165.7177505493,43196117071.9323348999,0.0000000070,0.0000040104,Very Low,0.0140878690,0.0000794270,603.6451781764,603.6592660453,9.7623667417,Very Low,9.7351198346,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000000310,0.0000104610,0.0000013088
19,T15001021601,Hawaii,HI,15,Hawaii,County,1,15001,21601,15001021601,7822,1094086000.0000000000,566994.6079257398,6.8170806188,49.7951606355,Very High,99.7442912330,99.6932515337,46.2888122040,Very High,99.5738187217,99.6932515337,4992177.8256177604,3805158.5707100113,0.1561792832,1186962.5526520708,56.7022556784,33.9564709833,Relatively Moderate,72.8134489645,70.3703703704,1.2900000000,50.7751980000,Relatively Low,9.3859370029,40.0000000000,2.5387599000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0699710120,62060272.6402582675,443.6903978226,3372047023.4515032768,3434107296.0917611122,0.0000130436,0.0000000001,Very Low,56.6406985726,0.0000000041,0.0315051310,56.6722037036,1.2660860140,Very Low,1.3616250452,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,98.0000000000,5.4444444440,0.0000000000,0.0000000000,0.0000000541,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0099989874,1094086000.0000000000,7822.0000000000,59447200000.0000000000,60541286000.0000000000,0.0008505842,0.0000116917,Very Low,3343740.7000000002,0.1379278400,1048251.5840000000,4391992.2840000000,67.8155218284,Very High,82.2650123419,Very High,1.0000000000,0.0312500000,1094086000.0000000000,7822.0000000000,59447200000.0000000000,566994.6079257398,60541852994.6079254150,0.0000180224,0.0000000760,0.0002275779,Very Low,616.1875260291,0.0000185843,141.2407668887,4.0323584288,761.4606513466,5.8691825077,Very Low,6.7331958941,Relatively Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0144927536,1094086000.0000000000,7822.0000000000,59447200000.0000000000,566994.6079257398,60541852994.6079254150,0.0000255348,0.0000003276,0.0002460797,Very Low,404.8872371382,0.0000371419,282.2781397865,2.0221139266,689.1874908512,3.5870338637,Very Low,5.2434126229,Very Low,0.0000000000,0.0148900000,1094086000.0000000000,7822.0000000000,59447200000.0000000000,60541286000.0000000000,0.0000058883,0.0000013610,Very Low,95.9259341201,0.0001585151,1204.7147476880,1300.6406818081,14.8827995601,Relatively Low,13.2152755837,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0000000000,5.9166666660,120948558.0820328742,753.2226728277,5724492313.4908361435,19158.5575277741,5845460030.1303968430,0.0006245044,0.0000038327,0.0003492485,Very Low,446903.0195826046,0.0170807736,129813.8797014064,39.5889891275,576756.4882731385,37.5896454739,Very High,37.9802893472,Very High,1.0000000000,0.0312500000,1094086000.0000000000,7822.0000000000,59447200000.0000000000,566994.6079257398,60541852994.6079254150,0.0000083601,0.0000003102,0.0006212585,Very Low,285.8325276715,0.0000758359,576.3528488228,11.0078186279,873.1931951221,9.2230592245,Very Low,11.3384513041,Very Low,0.0000000000,0.0000799759,1094086000.0000000000,7822.0000000000,59447200000.0000000000,566994.6079257398,60541852994.6079254150,0.0047816194,0.0000031882,0.0011241499,Very Low,418.3939264616,0.0000019945,15.1578838311,0.0509755678,433.6027858605,5.3923898832,Very Low,6.8692131386,Very Low,19.0000000000,0.0867738390,218840398.9186238050,746.6182267855,5674298523.5697565079,5893138922.4883804321,0.0006654598,0.0000038734,Very Low,12636.8292031895,0.0002509467,1907.1951510591,14544.0243542486,26.1104249456,Relatively High,24.7254344658,Relatively High,3.0000000000,0.0200386000,1094085980.3737592697,7821.9998504835,59447198863.6745376587,60541284844.0483016968,0.0000000070,0.0000040043,Very Low,0.1540742249,0.0006276471,4770.1179074570,4770.2719816818,19.4448923018,Relatively Low,20.8934909442,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000022210,0.0001000049,0.0004101879
20,T15001021013,Hawaii,HI,15,Hawaii,County,1,15001,21013,15001021013,4970,472410000.0000000000,49059676.8905426562,51.0843274312,34.2704008127,Relatively High,97.6615020828,91.7177914110,31.7870290791,Relatively High,95.1456577627,92.3312883436,1616634.1715474543,1092599.9326310402,0.0687639329,522605.8900662626,1428.3488501515,34.0316312987,Relatively Moderate,73.4741334501,71.2250712251,1.3370000000,50.7751980000,Relatively Low,9.3859370029,40.0000000000,2.5387599000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0679710120,11575814.7500163969,121.7836186947,925555502.0800142288,937131316.8300304413,0.0000037564,0.0000000003,Very Low,2.9556129381,0.0000000024,0.0180424519,2.9736553900,0.4739909580,Very Low,0.5108866985,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000541,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0099996439,472410000.0000000000,4970.0000000000,37772000000.0000000000,38244410000.0000000000,0.0008505842,0.0000116917,Very Low,1091887.0999999999,0.0681696800,518089.5680000000,1609976.6679999998,48.5342637441,Very High,59.0058028418,Very High,1.0000000000,0.0312500000,472410000.0000000000,4970.0000000000,37772000000.0000000000,49059676.8905426711,38293469676.8905410767,0.0000180224,0.0000000760,0.0002275779,Very Low,266.0605740053,0.0000118082,89.7425992630,348.9031445064,704.7063177748,5.7195849429,Very Low,6.5760993879,Relatively Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0130926272,472410000.0000000000,4970.0000000000,37772000000.0000000000,49059676.8905426711,38293469676.8905410767,0.0000255348,0.0000003276,0.0002460797,Very Low,143.4534201390,0.0000197510,150.1073280265,123.7327500539,417.2934982194,3.0346146773,Very Low,4.4457223006,Very Low,0.0000000000,0.0148900000,472410000.0000000000,4970.0000000000,37772000000.0000000000,38244410000.0000000000,0.0000058883,0.0000013610,Very Low,41.4193861705,0.0001007185,765.4605338800,806.8799200505,12.6931230651,Relatively Low,11.2958860000,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0000000000,5.9166666660,607.4849160695,0.0000000000,0.0000000000,0.0000000000,607.4849160695,0.0006245044,0.0000038327,0.0003492485,Very Low,2.2446472091,0.0000000000,0.0000000000,0.0000000000,2.2446472091,0.5912712527,Very Low,0.5987382758,Very Low,1.0000000000,0.0312500000,472410000.0000000000,4970.0000000000,37772000000.0000000000,49059676.8905426711,38293469676.8905410767,0.0000083601,0.0000003102,0.0006212585,Very Low,123.4182179437,0.0000481852,366.2073202052,952.4606012164,1442.0861393653,10.9018938929,Relatively Low,13.4320070560,Relatively Low,0.0000000000,0.0003763200,472410000.0000000000,4970.0000000000,37772000000.0000000000,49059676.8905426562,38293469676.8905410767,0.0007493188,0.0000004996,0.0001761635,Very Low,133.2119011897,0.0000009344,7.1017795182,3.2523543748,143.5660350827,3.7305067727,Very Low,4.7624656829,Very Low,0.0000000000,0.0000000000,6173149.8587964876,49.0000000000,372400000.0000000000,378573149.8587964773,0.0006654598,0.0000038734,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,4.0000000000,0.0207448000,472409670.7066273689,4969.9964727827,37771973193.1484375000,38244382863.8550567627,0.0000000070,0.0000040043,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.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000000365,0.0000291145,0.0000015088
21,T15001021702,Hawaii,HI,15,Hawaii,County,1,15001,21702,15001021702,9540,1290871000.0000000000,1847307.1325365920,202.2053672226,41.6514079785,Very High,99.2906143884,97.5460122699,43.0017491363,Very High,99.3098612849,99.3865030675,4002398.2558925641,3010194.0544788949,0.1303958532,991008.4843458552,1195.7170678134,30.5742567924,Relatively Low,36.7056055591,37.8917378917,-0.8250000000,50.7751980000,Relatively Low,9.3859370029,40.0000000000,2.5387599000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0020000000,2781293.4652375295,20.5547569497,156216152.8174247146,158997446.2826622427,0.0001485004,0.0000000132,Very Low,0.8260461896,0.0000000005,0.0041116194,0.8301578090,0.3097847707,Very Low,0.2999768522,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,1904.0000000000,105.7777777770,0.0000000000,0.0000000000,0.0000000541,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0099727839,1290871000.0000000000,9540.0000000000,72504000000.0000000000,73794871000.0000000000,0.0008505842,0.0000116917,Very Low,2069190.1000000001,0.0929550600,706458.4560000001,2775648.5559999999,58.1964835648,Very High,63.5647236624,Very High,1.0000000000,0.0312500000,1290871000.0000000000,9540.0000000000,72504000000.0000000000,1847307.1325365920,73796718307.1325225830,0.0000180224,0.0000000760,0.0002275779,Very Low,727.0165306165,0.0000226661,172.2624541197,13.1376989875,912.4166837238,6.2338957004,Very Low,6.4392683964,Relatively Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0100000000,1290871000.0000000000,9540.0000000000,72504000000.0000000000,1847307.1325365920,73796718307.1325225830,0.0000255348,0.0000003276,0.0002460797,Very Low,329.6207637766,0.0000312567,237.5510205776,4.5458477818,571.7176321361,3.3704162765,Very Low,4.4360400879,Very Low,0.0000000000,0.0148900000,1290871000.0000000000,9540.0000000000,72504000000.0000000000,73794871000.0000000000,0.0000058883,0.0000013610,Very Low,113.1794086604,0.0001933309,1469.3145861600,1582.4939948204,15.8883773218,Relatively Low,12.7029473048,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0000000000,5.9166666660,254174294.5316500664,1597.5991511029,12141753548.3820400238,552684.3798532827,12396480527.2935447693,0.0006245044,0.0000038327,0.0003492485,Very Low,939170.0201124339,0.0362286352,275337.6278939629,1142.0596708920,1215649.7076772891,48.1955436376,Very High,43.8460306298,Very High,1.0000000000,0.0312500000,1290871000.0000000000,9540.0000000000,72504000000.0000000000,1847307.1325365920,73796718307.1325225830,0.0000083601,0.0000003102,0.0006212585,Very Low,337.2430694017,0.0000924923,702.9412142414,35.8642244223,1076.0485080654,9.8881603341,Very Low,10.9452982890,Very Low,0.0000000000,0.0012659477,1290871000.0000000000,9540.0000000000,72504000000.0000000000,1847307.1325365920,73796718307.1325225830,0.0001993923,0.0000001329,0.0000468768,Very Low,325.8419546829,0.0000016056,12.2027969479,0.1096257297,338.1543773606,4.9635103885,Very Low,5.6929552963,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0006654598,0.0000038734,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,5.0000000000,0.0209036275,1283193020.0345883369,9471.8345321507,71985942444.3451843262,73269135464.3797760010,0.0000000070,0.0000040043,Very Low,0.2065931336,0.0008708058,6618.1242682260,6618.3308613596,21.6873915176,Relatively Low,20.9819644591,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000038333,0.0006472757,0.0007289681
22,T15001021704,Hawaii,HI,15,Hawaii,County,1,15001,21704,15001021704,8087,1437523000.0000000000,0.0000000000,141.2921284365,37.4934682651,Very High,98.6279712396,95.0920245399,40.5478070100,Very High,99.0060352768,97.2392638037,3355552.5856007547,2636098.9296592614,0.0946649547,719453.6559414929,0.0000000000,29.1877888475,Relatively Low,23.8708177167,28.2051282051,-1.6920000000,50.7751980000,Relatively Low,9.3859370029,40.0000000000,2.5387599000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0699710120,136722744.0023373067,769.1541844874,5845571802.1043519974,5982294546.1066894531,0.0000000520,0.0000000000,Very Low,0.4976182338,0.0000000001,0.0008613326,0.4984795664,0.2613498758,Very Low,0.2415990737,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,1589.0000000000,88.2777777770,0.0000000000,0.0000000000,0.0000000541,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0099749521,1437523000.0000000000,8087.0000000000,61461200000.0000000000,62898723000.0000000000,0.0008505842,0.0000116917,Very Low,2606385.9000000004,0.0932795800,708924.8080000000,3315310.7080000001,61.7471139969,Very High,64.3845063537,Very High,1.0000000000,0.0312500000,1437523000.0000000000,8087.0000000000,61461200000.0000000000,0.0000000000,62898723000.0000000000,0.0000180224,0.0000000760,0.0002275779,Very Low,809.6107079150,0.0000192139,146.0258350586,0.0000000000,955.6365429737,6.3308113948,Relatively Low,6.2428321439,Relatively Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0100000000,1437523000.0000000000,8087.0000000000,61461200000.0000000000,0.0000000000,62898723000.0000000000,0.0000255348,0.0000003276,0.0002460797,Very Low,367.0679945606,0.0000264961,201.3705559131,0.0000000000,568.4385504738,3.3639602531,Very Low,4.2267645992,Very Low,0.0000000000,0.0148900000,1437523000.0000000000,8087.0000000000,61461200000.0000000000,62898723000.0000000000,0.0000058883,0.0000013610,Very Low,126.0373833448,0.0001638854,1245.5290417480,1371.5664250928,15.1485525076,Relatively Low,11.5622238963,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0000000000,5.9166666660,4275225.0092844572,11.3075413498,85937314.2587604970,0.0000000000,90212539.2680449635,0.0006245044,0.0000038327,0.0003492485,Very Low,15796.8891596742,0.0002564203,1948.7939827883,0.0000000000,17745.6831424625,11.7788160915,Relatively Low,10.2298750080,Relatively Low,1.0000000000,0.0312500000,1437523000.0000000000,8087.0000000000,61461200000.0000000000,0.0000000000,62898723000.0000000000,0.0000083601,0.0000003102,0.0006212585,Very Low,375.5562475673,0.0000784051,595.8789936627,0.0000000000,971.4352412300,9.5567340721,Very Low,10.0987330053,Very Low,0.0000000000,0.0009691875,1437523000.0000000000,8087.0000000000,61461200000.0000000000,0.0000000000,62898723000.0000000000,0.0002586645,0.0000001725,0.0314801129,Very Low,360.3789426695,0.0000013518,10.2735112261,0.0000000000,370.6524538956,5.1176772170,Very Low,5.6035862783,Very Low,35.0000000000,0.1598465470,111653589.9509336352,124.2335248173,944174788.6111233234,1055828378.5620572567,0.0006654598,0.0000038734,Very Low,11876.7538770515,0.0000769195,584.5878715456,12461.3417485972,24.7993716910,Relatively High,20.1859557314,Relatively Moderate,4.0000000000,0.0223256980,1436641529.8863048553,8083.2000133200,61432320101.2316055298,62868961631.1179199219,0.0000000070,0.0000040043,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.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000000675,,0.0000124075
23,T15001021902,Hawaii,HI,15,Hawaii,County,1,15001,21902,15001021902,3925,399581000.0000000000,2581801.8541268115,115.3501535902,27.0029295340,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.9059829060,2.1700000000,50.7751980000,Relatively Low,9.3859370029,40.0000000000,2.5387599000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0679710120,22856965.6399190053,224.5191591609,1706345609.6230399609,1729202575.2629590034,0.0000000088,0.0000000000,Very Low,0.0136155178,0.0000000000,0.0000729943,0.0136885121,0.0788482259,Very Low,0.0883124103,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,224.0000000000,12.4444444440,0.0000000000,0.0000000000,0.0000000541,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0098841270,399581000.0000000000,3925.0000000000,29830000000.0000000000,30229581000.0000000000,0.0008505842,0.0000116917,Very Low,422346.0000000000,0.0199002000,151241.5200000000,573587.5200000000,34.4066045743,Relatively High,43.4673703843,Very High,1.0000000000,0.0312500000,399581000.0000000000,3925.0000000000,29830000000.0000000000,2581801.8541268120,30232162801.8541221619,0.0000180224,0.0000000760,0.0002275779,Very Low,225.0433949783,0.0000093254,70.8731794986,18.3612865492,314.2778610261,4.3698485829,Very Low,5.2209017008,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0100000000,399581000.0000000000,3925.0000000000,29830000000.0000000000,2581801.8541268120,30232162801.8541221619,0.0000255348,0.0000003276,0.0002460797,Very Low,102.0320345028,0.0000128598,97.7345655940,6.3532901622,206.1198902590,2.3988125677,Very Low,3.6518284380,Very Low,0.0000000000,0.0148900000,399581000.0000000000,3925.0000000000,29830000000.0000000000,30229581000.0000000000,0.0000058883,0.0000013610,Very Low,35.0339741864,0.0000795413,604.5136007000,639.5475748864,11.7468964466,Very Low,10.8630111137,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0000000000,5.9166666660,24231739.6875672489,212.4539917618,1614650337.3899602890,416363.7036091327,1639298440.7811367512,0.0006245044,0.0000038327,0.0003492485,Very Low,89535.8969783547,0.0048178031,36615.3037124016,860.3684338636,127011.5691246199,22.6996151325,Relatively High,23.8860328609,Relatively High,1.0000000000,0.0312500000,399581000.0000000000,3925.0000000000,29830000000.0000000000,2581801.8541268120,30232162801.8541221619,0.0000083601,0.0000003102,0.0006212585,Very Low,104.3914712733,0.0000380537,289.2079943275,50.1239450006,443.7234106013,7.3599635589,Very Low,9.4230153392,Very Low,0.0000000000,0.0010265904,399581000.0000000000,3925.0000000000,29830000000.0000000000,2581801.8541268115,30232162801.8541221619,0.0003150456,0.0000002101,0.0000740666,Very Low,129.2335939336,0.0000008464,6.4327564020,0.1963101401,135.8626604756,3.6625534291,Very Low,4.8587514569,Very Low,4.0000000000,0.0182681760,1977759.7407743428,10.3807797710,78893926.2592408508,80871686.0000151992,0.0006654598,0.0000038734,Very Low,24.0431034706,0.0000007345,5.5825535655,29.6256570361,3.3098507134,Very Low,3.2641784236,Relatively Low,4.0000000000,0.0218268636,398364800.9912430644,3913.1377072170,29739846574.8488502502,30138211375.8400955200,0.0000000070,0.0000040043,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.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000012633,0.0003623064,0.0002255654
24,T15003007502,Hawaii,HI,15,Honolulu,County,3,15003,7502,15003007502,1376,196711000.0000000000,0.0000000000,7.7618787766,7.9974839570,Very Low,5.4441221353,5.8282208589,13.4756112773,Relatively Low,29.9577943057,19.9386503067,123170.6861596142,117626.1358237950,0.0007295461,5544.5503358193,0.0000000000,18.9659859594,Very Low,1.2256175964,10.5413105413,-8.0840000000,51.4027980000,Relatively Low,13.6493795737,60.0000000000,2.5701399000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000478451,0.0000000048,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000004090,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0028437331,196711000.0000000000,1376.0000000000,10457600000.0000000000,10654311000.0000000000,0.0167507621,0.0001397988,Very Low,117052.4000000000,0.0007125600,5415.4560000000,122467.8560000000,20.5643959253,Relatively Moderate,13.7632106877,Relatively Low,1.0000000000,0.0312500000,196711000.0000000000,1376.0000000000,10457600000.0000000000,0.0000000000,10654311000.0000000000,0.0000180224,0.0000000210,0.0002275779,Very Low,110.7873278999,0.0000009033,6.8648716832,0.0000000000,117.6521995832,3.1494047356,Very Low,1.9933788852,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0100000000,196711000.0000000000,1376.0000000000,10457600000.0000000000,0.0000000000,10654311000.0000000000,0.0000255348,0.0000003276,0.0002460797,Very Low,50.2296744317,0.0000045083,34.2631241420,0.0000000000,84.4927985737,1.7819530051,Very Low,1.4371183905,Very Low,0.0000000000,0.0148900000,196711000.0000000000,1376.0000000000,10457600000.0000000000,10654311000.0000000000,0.0000058883,0.0000002640,Very Low,17.2469864587,0.0000054090,41.1084072960,58.3553937547,5.2884189904,Very Low,2.5908077620,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0000000000,6.3750000000,334545.9186602517,0.0000000000,0.0000000000,0.0000000000,334545.9186602517,0.0000678921,0.0000000585,0.0005670888,Very Low,144.7954863065,0.0000000000,0.0000000000,0.0000000000,144.7954863065,2.3713140511,Very Low,1.3218946842,Very Low,1.0000000000,0.0312500000,196711000.0000000000,1376.0000000000,10457600000.0000000000,0.0000000000,10654311000.0000000000,0.0000002273,0.0000001163,0.0000219536,Very Low,1.3970006805,0.0000050029,38.0217855444,0.0000000000,39.4187862249,3.2840213033,Very Low,2.2274217169,Very Low,0.0000000000,0.0002439162,196711000.0000000000,1376.0000000000,10457600000.0000000000,0.0000000000,10654311000.0000000000,0.0051953759,0.0000034641,0.0314801129,Very Low,249.2793480177,0.0000011627,8.8361471536,0.0000000000,258.1154951713,4.5361626976,Very Low,3.1876813425,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0015593140,0.0000000365,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0477752648,0.0001095931,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000000123,,0.0000029166
25,T15001020202,Hawaii,HI,15,Hawaii,County,1,15001,20202,15001020202,2568,183300000.0000000000,19450471.0412919968,244.9265376883,26.8331711535,Relatively High,90.8054826159,87.7300613497,25.4228346534,Relatively Moderate,85.7586714142,88.3435582822,827053.9790743970,517884.4786890347,0.0406058540,308604.4903297233,565.0100556387,33.3168087250,Relatively Moderate,66.7428118075,65.2421652422,0.8900000000,50.7751980000,Relatively Low,9.3859370029,40.0000000000,2.5387599000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0679710120,530773.6291478402,7.4360429877,56513926.7067788765,57044700.3359267265,0.0000291625,0.0000000018,Very Low,1.0521023568,0.0000000009,0.0068371040,1.0589394608,0.3359672067,Very Low,0.3545129100,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000541,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0099986349,183300000.0000000000,2568.0000000000,19516800000.0000000000,19700100000.0000000000,0.0008505842,0.0000116917,Very Low,510273.9000000000,0.0397819300,302342.6680000000,812616.5680000000,38.6429680605,Very High,45.9935976887,Very High,1.0000000000,0.0312500000,183300000.0000000000,2568.0000000000,19516800000.0000000000,19450471.0412919857,19719550471.0412864685,0.0000180224,0.0000000760,0.0002275779,Very Low,103.2342736504,0.0000061013,46.3700190961,138.3280718214,287.9323645679,4.2441620115,Very Low,4.7772331358,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0085026261,183300000.0000000000,2568.0000000000,19516800000.0000000000,19450471.0412919857,19719550471.0412864685,0.0000255348,0.0000003276,0.0002460797,Very Low,47.5251579324,0.0000088161,67.0024084263,47.8636600709,162.3912264296,2.2155277901,Very Low,3.1775808335,Very Low,0.0000000000,0.0148900000,183300000.0000000000,2568.0000000000,19516800000.0000000000,19700100000.0000000000,0.0000058883,0.0000013610,Very Low,16.0711532039,0.0000520413,395.5136118720,411.5847650759,10.1418835219,Very Low,8.8359053801,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0000000000,5.9166666660,1988278.7391910965,22.8556851439,173703207.0934222341,0.0000000000,175691485.8326133490,0.0006245044,0.0000038327,0.0003492485,Very Low,7346.6586655273,0.0005182966,3939.0545037912,0.0000000000,11285.7131693184,10.1293226006,Relatively Low,10.0417935626,Relatively Low,1.0000000000,0.0312500000,183300000.0000000000,2568.0000000000,19516800000.0000000000,19450471.0412919857,19719550471.0412864685,0.0000083601,0.0000003102,0.0006212585,Very Low,47.8875539237,0.0000248973,189.2193960336,377.6178017498,614.7247517071,8.2047455424,Very Low,9.8965701001,Very Low,0.0000000000,0.0015977717,183300000.0000000000,2568.0000000000,19516800000.0000000000,19450471.0412919968,19719550471.0412864685,0.0001643146,0.0000001096,0.0000386301,Very Low,48.1230596103,0.0000004495,3.4164308742,1.2005219967,52.7400124812,2.6717593631,Very Low,3.3389626051,Very Low,3.0000000000,0.0137011320,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0006654598,0.0000038734,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,4.0000000000,0.0207448000,183299817.8147132099,2567.9933134509,19516749182.2267990112,19700049000.0415115356,0.0000000070,0.0000040043,Very Low,0.0267228299,0.0002133209,1621.2391225260,1621.2658453560,13.5698768441,Relatively Low,14.3061317429,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000002378,0.0000290487,0.0000415197
26,T15001020300,Hawaii,HI,15,Hawaii,County,1,15001,20300,15001020300,3934,677850000.0000000000,103350.8998034280,1.2709697914,40.5458083398,Very High,99.1517617784,96.9325153374,36.0264444526,Relatively High,97.9543298643,94.7852760736,2353564.7149971174,2038255.8316858609,0.0414873500,315303.8597053039,5.0236059534,35.5252426719,Relatively High,84.6483188794,84.0455840456,2.2710000000,50.7751980000,Relatively Low,9.3859370029,40.0000000000,2.5387599000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0679710120,38504874.7106034458,223.4685802338,1698361209.7772455215,1736866084.4878492355,0.0000161443,0.0000000010,Very Low,42.2530795804,0.0000000150,0.1140789343,42.3671585148,1.1490783013,Very Low,1.2928806869,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000541,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0099965667,677850000.0000000000,3934.0000000000,29898400000.0000000000,30576250000.0000000000,0.0008505842,0.0000116917,Very Low,1823510.7000000000,0.0372599000,283175.2400000000,2106685.9399999999,53.0854109894,Very High,67.3714272457,Very High,1.0000000000,0.0312500000,677850000.0000000000,3934.0000000000,29898400000.0000000000,103350.8998034280,30576353350.8998031616,0.0000180224,0.0000000760,0.0002275779,Very Low,381.7640610691,0.0000093468,71.0356912478,0.7350120550,453.5347643718,4.9381618494,Very Low,5.9268435024,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0100000000,677850000.0000000000,3934.0000000000,29898400000.0000000000,103350.8998034280,30576353350.8998031616,0.0000255348,0.0000003276,0.0002460797,Very Low,173.0873454636,0.0000128893,97.9586703304,0.2543255804,271.3003413745,2.6288943199,Very Low,4.0203715510,Very Low,0.0000000000,0.0148900000,677850000.0000000000,3934.0000000000,29898400000.0000000000,30576250000.0000000000,0.0000058883,0.0000013610,Very Low,59.4317032147,0.0000797237,605.8997465360,665.3314497507,11.9026831383,Very Low,11.0573477508,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0000000000,5.9166666660,57842789.4465603307,165.7998817432,1260079101.2480535507,978.1387811597,1317922868.8333954811,0.0006245044,0.0000038327,0.0003492485,Very Low,213728.1971333290,0.0037598314,28574.7185786544,2.0212130019,242304.9369249853,28.1530091221,Relatively High,29.7597559190,Relatively High,1.0000000000,0.0312500000,677850000.0000000000,3934.0000000000,29898400000.0000000000,103350.8998034280,30576353350.8998031616,0.0000083601,0.0000003102,0.0006212585,Very Low,177.0898986754,0.0000381409,289.8711464164,2.0064881467,468.9675332385,7.4969706224,Very Low,9.6422648288,Very Low,0.0000000000,0.0000097837,677850000.0000000000,3934.0000000000,29898400000.0000000000,103350.8998034280,30576353350.8998031616,0.0276254828,0.0000184197,0.0064947002,Very Low,183.2096424429,0.0000007090,5.3881035599,0.0065671694,188.6043131722,4.0857125073,Very Low,5.4449646719,Very Low,0.0000000000,0.0000000000,199213148.0932354331,676.7842904604,5143560607.4987268448,5342773755.5919628143,0.0006654598,0.0000038734,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,4.0000000000,0.0207448000,677850000.0000000000,3934.0000000000,29898400000.0000000000,30576250000.0000000000,0.0000000070,0.0000040043,Very Low,0.0988220855,0.0003267939,2483.6336896246,2483.7325117101,15.6432181718,Relatively Low,17.5851498720,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000009915,0.0000486073,0.0003168032
27,T15003009507,Hawaii,HI,15,Honolulu,County,3,15003,9507,15003009507,2560,291260000.0000000000,0.0000000000,0.6777584315,10.3745217900,Very Low,17.9491057067,10.4294478528,13.7534872042,Relatively Low,31.7642530142,21.4723926380,130948.4674371914,125905.4006006140,0.0006635614,5043.0668365775,0.0000000000,24.1056722051,Very Low,3.4429458594,12.8205128205,-4.8700000000,51.4027980000,Relatively Low,13.6493795737,60.0000000000,2.5701399000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000478451,0.0000000048,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000004090,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0038371924,291260000.0000000000,2560.0000000000,19456000000.0000000000,19747260000.0000000000,0.0167507621,0.0001397988,Very Low,125352.3000000000,0.0006324400,4806.5440000000,130158.8440000000,20.9861680407,Relatively Moderate,17.8517488934,Relatively Moderate,1.0000000000,0.0312500000,291260000.0000000000,2560.0000000000,19456000000.0000000000,0.0000000000,19747260000.0000000000,0.0000180224,0.0000000210,0.0002275779,Very Low,164.0371769964,0.0000016805,12.7718542944,0.0000000000,176.8090312908,3.6074191585,Very Low,2.9020293931,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0100000000,291260000.0000000000,2560.0000000000,19456000000.0000000000,0.0000000000,19747260000.0000000000,0.0000255348,0.0000003276,0.0002460797,Very Low,74.3725311496,0.0000083875,63.7453472410,0.0000000000,138.1178783905,2.0991315083,Very Low,2.1516903399,Very Low,0.0000000000,0.0148900000,291260000.0000000000,2560.0000000000,19456000000.0000000000,19747260000.0000000000,0.0000058883,0.0000002640,Very Low,25.5367380369,0.0000100633,76.4807577600,102.0174957969,6.3707477239,Very Low,3.9668297631,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000678921,0.0000000585,0.0005670888,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,1.0000000000,0.0312500000,291260000.0000000000,2560.0000000000,19456000000.0000000000,0.0000000000,19747260000.0000000000,0.0000002273,0.0000001163,0.0000219536,Very Low,2.0684680481,0.0000093077,70.7382056640,0.0000000000,72.8066737121,4.0292908096,Very Low,3.4735129238,Very Low,0.0000000000,0.0000165662,291260000.0000000000,2560.0000000000,19456000000.0000000000,0.0000000000,19747260000.0000000000,0.0594988816,0.0000396718,0.0314801129,Very Low,287.0856863831,0.0000016825,12.7866716181,0.0000000000,299.8723580012,4.7686568890,Very Low,4.2594450047,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0015593140,0.0000000365,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0477752648,0.0001095931,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000000122,,0.0000018990
28,T15009031502,Hawaii,HI,15,Maui,County,9,15009,31502,15009031502,5036,709032000.0000000000,4590410.1368262004,33.4481475347,20.8852252798,Relatively Moderate,74.9817841873,77.9141104294,24.1981968780,Relatively Moderate,82.5403153741,86.8098159509,713199.3757334640,567506.0158586083,0.0191292960,145382.6496820149,310.7101928407,27.7949242800,Relatively Low,14.3120947665,19.3732193732,-2.5630000000,51.8016000000,Relatively Low,16.9583200764,80.0000000000,2.5900800000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0699710120,23099293.9524668790,164.0660003281,1246901602.4934508801,1270000896.4459178448,0.0000458100,0.0000000022,Very Low,74.0418791841,0.0000000248,0.1886672111,74.2305463952,1.3852688343,Very Low,1.1953078769,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,392.0000000000,21.7777777770,0.0000000000,0.0000000000,0.0000001625,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0058748695,709032000.0000000000,5036.0000000000,38273600000.0000000000,38982632000.0000000000,0.0008599048,0.0000075108,Very Low,550446.2000000000,0.0158187400,120222.4240000000,670668.6240000001,36.2474880052,Very High,35.2789273681,Relatively High,1.0000000000,0.0312500000,709032000.0000000000,5036.0000000000,38273600000.0000000000,4590410.1368262004,38987222410.1368255615,0.0000180224,0.0000000210,0.0002275779,Very Low,399.3257147569,0.0000033097,25.1539543620,32.6461288135,457.1257979323,4.9511608580,Very Low,4.5572417759,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0100000000,709032000.0000000000,5036.0000000000,38273600000.0000000000,4590410.1368262004,38987222410.1368255615,0.0000255348,0.0000003276,0.0002460797,Very Low,181.0495931678,0.0000164999,125.3990502756,11.2960673245,317.7447107678,2.7710803876,Very Low,3.2499679737,Very Low,0.0000000000,0.0148900000,709032000.0000000000,5036.0000000000,38273600000.0000000000,38982632000.0000000000,0.0000058883,0.0000016270,Relatively Low,62.1656404717,0.0001220023,927.2173818080,989.3830222797,13.5858559669,Relatively Low,9.6789889819,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,107.0000000000,4.4583333330,49165319.4555135295,253.3727385673,1925632813.1116755009,13966.8999917194,1974812099.4671807289,0.0000305947,0.0000027267,0.0042466231,Very Low,6706.2199592869,0.0030801644,23409.2497895341,264.4333801592,30379.9031289802,14.0907095081,Relatively Moderate,11.4228454037,Relatively Low,1.0000000000,0.0312500000,709032000.0000000000,5036.0000000000,38273600000.0000000000,4590410.1368262004,38987222410.1368255615,0.0000005132,0.0000000835,0.0000133875,Very Low,11.3703899242,0.0000131341,99.8194709720,1.9204476360,113.1103085322,4.6666541082,Very Low,4.6029446457,Very Low,0.0000000000,0.0003844310,709032000.0000000000,5036.0000000000,38273600000.0000000000,4590410.1368262004,38987222410.1368255615,0.0009982937,0.0000006656,0.0002346970,Very Low,272.1088122904,0.0000012887,9.7937574448,0.4141689076,282.3167386428,4.6737212510,Very Low,4.7765928461,Very Low,5.0000000000,0.0228352210,529748701.1041623354,3369.4402347956,25607745784.4463996887,26137494485.5505599976,0.0007732141,0.0000000366,Very Low,9353.5162751160,0.0000028191,21.4250892171,9374.9413643331,22.5549531321,Relatively Moderate,17.1365470909,Relatively Moderate,1.0000000000,0.0035310000,709031990.6309193373,5035.9999867482,38273599899.2860870361,38982631889.9169998169,0.0000000070,0.0000040104,Very Low,0.0175944103,0.0000713130,541.9785211903,541.9961156007,9.4179537409,Very Low,8.1192033408,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000006427,0.0000676868,0.0000108687
29,T15009031700,Hawaii,HI,15,Maui,County,9,15009,31700,15009031700,4503,555074000.0000000000,1276731.1537544020,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.7549857550,2.4810000000,51.8016000000,Relatively Low,16.9583200764,80.0000000000,2.5900800000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0699710120,69959563.7247151732,567.5421933875,4313320669.7452640533,4383280233.4699792862,0.0000001491,0.0000000000,Very Low,0.7298131267,0.0000000006,0.0046429426,0.7344560692,0.2973914322,Very Low,0.3310791736,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,770.0000000000,42.7777777770,0.0000000000,0.0000000000,0.0000001625,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0050032569,555074000.0000000000,4503.0000000000,34222800000.0000000000,34777874000.0000000000,0.0008599048,0.0000075108,Very Low,300975.7000000000,0.0068167600,51807.3760000000,352783.0760000000,29.2602365400,Relatively High,36.7428620471,Relatively High,1.0000000000,0.0312500000,555074000.0000000000,4503.0000000000,34222800000.0000000000,1276731.1537544020,34779150731.1537551880,0.0000180224,0.0000000210,0.0002275779,Very Low,312.6168096693,0.0000029594,22.4917109794,9.0798705263,344.1883911751,4.5042988642,Very Low,5.3490902368,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0100000000,555074000.0000000000,4503.0000000000,34222800000.0000000000,1276731.1537544020,34779150731.1537551880,0.0000255348,0.0000003276,0.0002460797,Very Low,141.7367930897,0.0000147536,112.1270697758,3.1417761460,257.0056390115,2.5818870076,Very Low,3.9068333014,Very Low,0.0000000000,0.0148900000,555074000.0000000000,4503.0000000000,34222800000.0000000000,34777874000.0000000000,0.0000058883,0.0000016270,Relatively Low,48.6670992553,0.0001090898,829.0825794840,877.7496787393,13.0543648938,Relatively Low,11.9993143124,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,107.0000000000,4.4583333330,53882794.8115416467,393.4555693181,2990262326.8174185753,330715.4008730415,3044475837.0298333168,0.0000305947,0.0000027267,0.0042466231,Very Low,7349.6903514333,0.0047831028,36351.5812921717,6261.3888103603,49962.6604539653,16.6323105532,Relatively Moderate,17.3960927705,Relatively Moderate,1.0000000000,0.0312500000,555074000.0000000000,4503.0000000000,34222800000.0000000000,1276731.1537544020,34779150731.1537551880,0.0000005132,0.0000000835,0.0000133875,Very Low,8.9014428359,0.0000117441,89.2547811335,0.5341342610,98.6903582304,4.4592633895,Very Low,5.6748051881,Very Low,0.0000000000,0.0024062802,555074000.0000000000,4503.0000000000,34222800000.0000000000,1276731.1537544020,34779150731.1537551880,0.0002794641,0.0000001863,0.0000657015,Very Low,373.2700670825,0.0000020191,15.3447945665,0.2018463811,388.8167080301,5.1999468378,Very Low,6.8569915193,Very Low,7.0000000000,0.0319693090,84493307.1627601832,678.6567944610,5157791637.9032754898,5242284945.0660352707,0.0007732141,0.0000000366,Very Low,2088.6003439168,0.0000007949,6.0414768162,2094.6418207330,13.6863927662,Relatively Moderate,13.4161554257,Relatively Moderate,1.0000000000,0.0035310000,555073174.0393439531,4502.9919424707,34222738762.7770843506,34777811936.8164215088,0.0000000070,0.0000040104,Very Low,0.0137739698,0.0000637652,484.6157506621,484.6295246319,9.0732132399,Very Low,10.0919635959,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000010934,0.0049143834,0.0000148370
30,T15001021202,Hawaii,HI,15,Hawaii,County,1,15001,21202,15001021202,8451,921317000.0000000000,67149035.7106963694,934.5492187546,57.9621366282,Very High,99.8872681780,100.0000000000,50.9009757018,Very High,99.7415416764,100.0000000000,6638046.0138780484,4824851.1298461528,0.2383117837,1811169.5564462843,2025.3275856100,35.9442214511,Relatively High,86.9723415315,86.6096866097,2.5330000000,50.7751980000,Relatively Low,9.3859370029,40.0000000000,2.5387599000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0699710120,83809817.3656403869,768.7655460141,5842618149.7067823410,5926427967.0724239349,0.0000000015,0.0000000000,Very Low,0.0089197982,0.0000000000,0.0000412276,0.0089610257,0.0684634982,Very Low,0.0779399169,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,812.0000000000,45.1111111110,0.0000000000,0.0000000000,0.0000000541,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0099993129,921317000.0000000000,8451.0000000000,64227600000.0000000000,65148917000.0000000000,0.0008505842,0.0000116917,Very Low,4823252.0000000000,0.2372857400,1803371.6240000001,6626623.6239999998,77.7808503062,Very High,99.8769515712,Very High,1.0000000000,0.0312500000,921317000.0000000000,8451.0000000000,64227600000.0000000000,67149035.7106963992,65216066035.7107009888,0.0000180224,0.0000000760,0.0002275779,Very Low,518.8842951283,0.0000200788,152.5985324699,477.5512436032,1149.0340712014,6.7319274673,Relatively Low,8.1750345355,Relatively Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,1.0000000000,0.0145222912,916526100.2799532413,8404.8988265971,63877231082.1376800537,67149035.7106963992,64860906218.1283340454,0.0000255348,0.0000003276,0.0002460797,Very Low,339.1880815019,0.0000399097,303.3136289789,239.4784683418,881.9801788226,3.8944185305,Very Low,6.0259803913,Very Low,0.0000000000,0.0148900000,921317000.0000000000,8451.0000000000,64227600000.0000000000,65148917000.0000000000,0.0000058883,0.0000013610,Very Low,80.7781050537,0.0001712620,1301.5909400040,1382.3690450577,15.1882191486,Relatively Low,14.2759487032,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0000000000,5.9166666660,33595.8970324927,0.3104494424,2359415.7624847298,0.0000000000,2393011.6595172225,0.0006245044,0.0000038327,0.0003492485,Very Low,124.1363110689,0.0000070400,53.5042929894,0.0000000000,177.6406040583,2.5385446927,Very Low,2.7150722173,Very Low,1.0000000000,0.0312500000,921317000.0000000000,8451.0000000000,64227600000.0000000000,67149035.7106963992,65216066035.7107009888,0.0000083601,0.0000003102,0.0006212585,Very Low,240.6962221409,0.0000819342,622.6998114826,1303.6533254449,2167.0493590684,12.4870873874,Relatively Low,16.2497403306,Relatively Low,2.0000000000,0.0070628791,921317000.0000000000,8451.0000000000,64227600000.0000000000,67149035.7106963694,65216066035.7107009888,0.0000416555,0.0000000278,0.0000097931,Very Low,271.0588231698,0.0000016578,12.5993870449,4.6445482201,288.3027584348,4.7065231209,Very Low,6.3464133912,Very Low,21.0000000000,0.0959079280,379409.9916177188,1.3972932715,10619428.8636823799,10998838.8553000987,0.0006654598,0.0000038734,Very Low,24.2150337388,0.0000005191,3.9450254625,28.1600592013,3.2543450395,Very Low,3.2621214124,Relatively Low,4.0000000000,0.0207448000,921315089.3788785934,8450.9785947338,64227437319.9771652222,65148752409.3560485840,0.0000000070,0.0000040043,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.0000000000,1.2887045444,80084.4603006705,3.5257309566,26795555.2704130225,0.0000000000,26875639.7307136953,0.0000000851,0.0000001057,0.0000000000,Very Low,0.0297382894,0.0000016269,12.3642771750,0.0000000000,12.3940154644,3.6838330638,Very Low,2.5516985128,Very Low,November 2021,0.0000000383,0.0000301617,0.0000017093
31,T15001021300,Hawaii,HI,15,Hawaii,County,1,15001,21300,15001021300,5972,691942000.0000000000,41505347.6819777489,314.4847400233,44.8648895425,Very High,99.5614457169,98.7730061350,40.9441045600,Very High,99.0610264095,97.8527607362,3454904.6788427671,2421751.9646799425,0.1357247505,1031508.1034963035,1644.6106665214,34.5881374634,Relatively Moderate,78.0811424507,75.4985754986,1.6850000000,50.7751980000,Relatively Low,9.3859370029,40.0000000000,2.5387599000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0699710120,59825905.4567175135,516.3442996487,3924216677.3300786018,3984042582.7867960930,0.0000003187,0.0000000000,Very Low,1.3342353514,0.0000000008,0.0059722724,1.3402076238,0.3634102780,Very Low,0.3981036443,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,532.0000000000,29.5555555550,0.0000000000,0.0000000000,0.0000000541,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0099990732,691942000.0000000000,5972.0000000000,45387200000.0000000000,46079142000.0000000000,0.0008505842,0.0000116917,Very Low,2014339.2000000000,0.1113426200,846203.9120000000,2860543.1120000002,58.7838578297,Very High,72.6354733640,Very High,1.0000000000,0.0312500000,691942000.0000000000,5972.0000000000,45387200000.0000000000,41505347.6819777414,46120647347.6819763184,0.0000180224,0.0000000760,0.0002275779,Very Low,389.7006534547,0.0000141889,107.8355740040,295.1781837538,792.7144112124,5.9484074704,Very Low,6.9510269670,Relatively Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,1.0000000000,0.0144927536,683648413.1210414171,5903.0589820760,44863248263.7773818970,41505347.6819777414,45588402024.5804061890,0.0000255348,0.0000003276,0.0002460797,Very Low,252.9970378585,0.0000280300,213.0279351202,148.0235268574,614.0484998361,3.4516273867,Very Low,5.1393369516,Very Low,0.0000000000,0.0148900000,691942000.0000000000,5972.0000000000,45387200000.0000000000,46079142000.0000000000,0.0000058883,0.0000013610,Very Low,60.6672443546,0.0001210243,919.7847702880,980.4520146426,13.5448532024,Relatively Low,12.2509712728,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0000000000,5.9166666660,108451273.1736082137,1031.9646383704,7842931251.6148195267,190128.1686397818,7951572652.9570655823,0.0006245044,0.0000038327,0.0003492485,Very Low,400725.7484292681,0.0234017841,177853.5594508763,392.8783255313,578972.1862056758,37.6377194155,Very High,38.7362849875,Very High,1.0000000000,0.0312500000,691942000.0000000000,5972.0000000000,45387200000.0000000000,41505347.6819777414,46120647347.6819763184,0.0000083601,0.0000003102,0.0006212585,Very Low,180.7714666508,0.0000578998,440.0382527704,805.7983849982,1426.6081044193,10.8627498557,Relatively Low,13.6026382415,Relatively Low,0.0000000000,0.0023371140,691942000.0000000000,5972.0000000000,45387200000.0000000000,41505347.6819777489,46120647347.6819763184,0.0001198082,0.0000000799,0.0000281667,Very Low,193.7474988081,0.0000011150,8.4736995875,2.7322453807,204.9534437764,4.2005130404,Very Low,5.4502921677,Very Low,19.0000000000,0.0867738390,97112232.8858421743,779.5012678000,5924209635.2800340652,6021321868.1658763885,0.0006654598,0.0000038734,Very Low,5607.6972377257,0.0002619991,1991.1930687700,7598.8903064956,21.0298318769,Relatively Moderate,20.2847855136,Relatively Moderate,4.0000000000,0.0207448000,691941637.7987550497,5971.9970579512,45387177640.4291381836,46079119278.2278976440,0.0000000070,0.0000040043,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.0000000000,0.9643149741,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000039558,0.0000396241,0.0005806917
32,T15003010308,Hawaii,HI,15,Honolulu,County,3,15003,10308,15003010308,3319,402502000.0000000000,0.0000000000,3.2978566421,14.6608364994,Relatively Low,45.1697163832,34.0490797546,14.8377632042,Relatively Low,38.7288799681,32.5153374233,164424.7705555970,141142.5125061344,0.0030634550,23282.2580494626,0.0000000000,31.5753282267,Relatively Moderate,47.4995212431,49.5726495726,-0.1990000000,51.4027980000,Relatively Low,13.6493795737,60.0000000000,2.5701399000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000478451,0.0000000048,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,133.0000000000,7.3888888880,0.0000000000,0.0000000000,0.0000004090,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0031566579,402502000.0000000000,3319.0000000000,25224400000.0000000000,25626902000.0000000000,0.0167507621,0.0001397988,Very Low,140331.5000000000,0.0030228500,22973.6600000000,163305.1600000000,22.6347249226,Relatively Moderate,25.2203710271,Relatively Moderate,1.0000000000,0.0312500000,402502000.0000000000,3319.0000000000,25224400000.0000000000,0.0000000000,25626902000.0000000000,0.0000180224,0.0000000210,0.0002275779,Very Low,226.6884976151,0.0000021788,16.5585095325,0.0000000000,243.2470071476,4.0121543080,Very Low,4.2277709887,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0100000000,402502000.0000000000,3319.0000000000,25224400000.0000000000,0.0000000000,25626902000.0000000000,0.0000255348,0.0000003276,0.0002460797,Very Low,102.7779047338,0.0000108743,82.6448466769,0.0000000000,185.4227514107,2.3156736562,Very Low,3.1091817133,Very Low,0.0000000000,0.0148900000,402502000.0000000000,3319.0000000000,25224400000.0000000000,25626902000.0000000000,0.0000058883,0.0000002640,Very Low,35.2900780517,0.0000130469,99.1561074240,134.4461854757,6.9847095260,Very Low,5.6967889747,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000678921,0.0000000585,0.0005670888,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,1.0000000000,0.0312500000,402502000.0000000000,3319.0000000000,25224400000.0000000000,0.0000000000,25626902000.0000000000,0.0000002273,0.0000001163,0.0000219536,Very Low,2.8584856358,0.0000120672,91.7109783589,0.0000000000,94.5694639947,4.3963121986,Very Low,4.9642935990,Very Low,0.0000000000,0.0000900893,402502000.0000000000,3319.0000000000,25224400000.0000000000,0.0000000000,25626902000.0000000000,0.0122279031,0.0000081531,0.0314801129,Very Low,443.3975400980,0.0000024378,18.5276074704,0.0000000000,461.9251475684,5.5073304115,Very Low,6.4439737658,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0015593140,0.0000000365,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0477752648,0.0001095931,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000000122,,0.0000020149
33,T15001021504,Hawaii,HI,15,Hawaii,County,1,15001,21504,15001021504,3965,567799000.0000000000,0.0000000000,11.9815794264,39.0504271072,Very High,98.9400459176,96.0122699387,38.7614777296,Very High,98.7090831603,96.3190184049,2931317.8565635281,2359248.5526345233,0.0752722768,572069.3039290046,0.0000000000,31.8008091728,Relatively Moderate,50.0218860285,52.9914529915,-0.0580000000,50.7751980000,Relatively Low,9.3859370029,40.0000000000,2.5387599000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0679710120,84051061.9140487611,586.9373853938,4460724128.9927358627,4544775190.9067840576,0.0000006689,0.0000000000,Very Low,3.8215319092,0.0000000005,0.0041417707,3.8256736799,0.5155163995,Very Low,0.5192212128,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,119.0000000000,6.6111111110,0.0000000000,0.0000000000,0.0000000541,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0099991023,567799000.0000000000,3965.0000000000,30134000000.0000000000,30701799000.0000000000,0.0008505842,0.0000116917,Very Low,2292113.7000000002,0.0742325100,564167.0760000001,2856280.7760000001,58.7546464651,Very High,66.7488670584,Very High,1.0000000000,0.0312500000,567799000.0000000000,3965.0000000000,30134000000.0000000000,0.0000000000,30701799000.0000000000,0.0000180224,0.0000000760,0.0002275779,Very Low,319.7835097897,0.0000094205,71.5954539393,0.0000000000,391.3789637291,4.7014045019,Very Low,5.0511105804,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0144927536,567799000.0000000000,3965.0000000000,30134000000.0000000000,0.0000000000,30701799000.0000000000,0.0000255348,0.0000003276,0.0002460797,Very Low,210.1247693141,0.0000188273,143.0878067314,0.0000000000,353.2125760456,2.8705717113,Very Low,3.9297288144,Very Low,0.0000000000,0.0148900000,567799000.0000000000,3965.0000000000,30134000000.0000000000,30701799000.0000000000,0.0000058883,0.0000013610,Very Low,49.7827862412,0.0000803519,610.6742488600,660.4570351012,11.8735443385,Very Low,9.8738742457,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0000000000,5.9166666660,17678751.9168055244,25.0000000000,190000000.0000000000,0.0000000000,207678751.9168055058,0.0006245044,0.0000038327,0.0003492485,Very Low,65322.7102444127,0.0005669231,4308.6156452932,0.0000000000,69631.3258897059,18.5782850353,Relatively Moderate,17.5796928591,Relatively Moderate,1.0000000000,0.0312500000,567799000.0000000000,3965.0000000000,30134000000.0000000000,0.0000000000,30701799000.0000000000,0.0000083601,0.0000003102,0.0006212585,Very Low,148.3388174050,0.0000384415,292.1553369448,0.0000000000,440.4941543498,7.3420656985,Very Low,8.4530342805,Very Low,0.0000000000,0.0001412408,567799000.0000000000,3965.0000000000,30134000000.0000000000,0.0000000000,30701799000.0000000000,0.0027075331,0.0000018053,0.0314801129,Very Low,217.1343505456,0.0000010110,7.6835859614,0.0000000000,224.8179365070,4.3320578719,Very Low,5.1679616475,Very Low,15.0000000000,0.0685056630,18932200.4766563512,25.0024907062,190018929.3672243655,208951129.8438806832,0.0006654598,0.0000038734,Very Low,863.0766648539,0.0000066344,50.4216998251,913.4983646790,10.3789877739,Relatively Low,9.2045087312,Relatively Low,3.0000000000,0.0200386000,567798879.6827729940,3964.9999981359,30133999985.8324813843,30701798865.5152511597,0.0000000070,0.0000040043,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.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000001803,,0.0001167168
34,T15001021604,Hawaii,HI,15,Hawaii,County,1,15001,21604,15001021604,7587,965922000.0000000000,0.0000000000,3.0342188606,39.5529446793,Very High,99.0376551781,96.3190184049,41.0047129501,Very High,99.0665255228,98.1595092025,3470269.9917778168,2636463.2241591662,0.1097114168,833806.7676186502,0.0000000000,30.4479234964,Relatively Low,35.4239050146,37.3219373219,-0.9040000000,50.7751980000,Relatively Low,9.3859370029,40.0000000000,2.5387599000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0699710120,29819708.4730784819,234.2240141391,1780102507.4569923878,1809922215.9300704002,0.0000156136,0.0000000006,Very Low,32.5779960448,0.0000000096,0.0727345758,32.6507306206,1.0535071298,Very Low,1.0159373566,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,49.0000000000,2.7222222220,0.0000000000,0.0000000000,0.0000000541,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0099990193,965922000.0000000000,7587.0000000000,57661200000.0000000000,58627122000.0000000000,0.0008505842,0.0000116917,Very Low,2358086.4000000004,0.1017149700,773033.7720000000,3131120.1719999998,60.5817522328,Very High,65.8966020412,Very High,1.0000000000,0.0312500000,965922000.0000000000,7587.0000000000,57661200000.0000000000,0.0000000000,58627122000.0000000000,0.0000180224,0.0000000760,0.0002275779,Very Low,544.0057614457,0.0000180260,136.9974045493,0.0000000000,681.0031659950,5.6547251774,Very Low,5.8168822061,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0144927536,965922000.0000000000,7587.0000000000,57661200000.0000000000,0.0000000000,58627122000.0000000000,0.0000255348,0.0000003276,0.0002460797,Very Low,357.4577225839,0.0000360260,273.7975257683,0.0000000000,631.2552483523,3.4835711241,Very Low,4.5660259096,Very Low,0.0000000000,0.0148900000,965922000.0000000000,7587.0000000000,57661200000.0000000000,58627122000.0000000000,0.0000058883,0.0000013610,Very Low,84.6889276868,0.0001537528,1168.5209397480,1253.2098674348,14.6996430876,Relatively Low,11.7039784212,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0000000000,5.9166666660,72095984.5884209126,299.4473453306,2275799824.5124926567,0.0000000000,2347895809.1009144783,0.0006245044,0.0000038327,0.0003492485,Very Low,266393.5289786026,0.0067905448,51608.1406813159,0.0000000000,318001.6696599185,30.8233993797,Relatively High,27.9258051760,Relatively High,1.0000000000,0.0312500000,965922000.0000000000,7587.0000000000,57661200000.0000000000,0.0000000000,58627122000.0000000000,0.0000083601,0.0000003102,0.0006212585,Very Low,252.3493827665,0.0000735575,559.0372109459,0.0000000000,811.3865937124,9.0001032650,Very Low,9.9211351379,Very Low,0.0000000000,0.0000396076,965922000.0000000000,7587.0000000000,57661200000.0000000000,0.0000000000,58627122000.0000000000,0.0096550590,0.0000064377,0.0314801129,Very Low,369.3822041738,0.0000019345,14.7024884463,0.0000000000,384.0846926201,5.1787657086,Very Low,5.9153319159,Very Low,14.0000000000,0.0639386180,243079736.7117206454,1267.0762440467,9629779454.7548809052,9872859191.4666023254,0.0006654598,0.0000038734,Very Low,10342.6971602800,0.0003138052,2384.9195180287,12727.6166783087,24.9747665844,Relatively High,21.2063810389,Relatively High,3.0000000000,0.0200386000,965922000.0000000000,7587.0000000000,57661200000.0000000000,58627122000.0000000000,0.0000000070,0.0000040043,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.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000009324,,0.0002774903
35,T15001022000,Hawaii,HI,15,Hawaii,County,1,15001,22000,15001022000,2588,255562000.0000000000,1087339.0101268515,464.1587560056,20.7476698713,Relatively Moderate,74.4689918751,77.3006134969,19.5680692358,Relatively Moderate,64.1512806060,75.1533742331,377142.8388196314,279582.4595634430,0.0128327356,97528.7908128289,31.5884433596,33.4687285113,Relatively Moderate,68.2447405138,66.3817663818,0.9850000000,50.7751980000,Relatively Low,9.3859370029,40.0000000000,2.5387599000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0679710120,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000478451,0.0000000048,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,1631.0000000000,90.6111111110,0.0000000000,0.0000000000,0.0000000541,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0099812096,255562000.0000000000,2588.0000000000,19668800000.0000000000,19924362000.0000000000,0.0008505842,0.0000116917,Very Low,279213.3000000000,0.0125324300,95246.4680000000,374459.7680000000,29.8476612003,Relatively High,35.6872456781,Relatively High,1.0000000000,0.0312500000,255562000.0000000000,2588.0000000000,19668800000.0000000000,1087339.0101268515,19925449339.0101280212,0.0000180224,0.0000000760,0.0002275779,Very Low,143.9321191635,0.0000061488,46.7311563165,7.7329494164,198.3962248964,3.7486330273,Very Low,4.2387053459,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0102889159,255562000.0000000000,2588.0000000000,19668800000.0000000000,1087339.0101268515,19925449339.0101280212,0.0000255348,0.0000003276,0.0002460797,Very Low,64.6707563155,0.0000084808,64.4537491694,2.6757205341,131.8002260189,2.0666252581,Very Low,2.9775355575,Very Low,0.0000000000,0.0148900000,255562000.0000000000,2588.0000000000,19668800000.0000000000,19924362000.0000000000,0.0000058883,0.0000013610,Very Low,22.4068524555,0.0000524466,398.5939359520,421.0007884075,10.2186413768,Very Low,8.9433744405,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0006245044,0.0000038327,0.0003492485,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,1.0000000000,0.0312500000,255562000.0000000000,2588.0000000000,19668800000.0000000000,1087339.0101268515,19925449339.0101280212,0.0000083601,0.0000003102,0.0006212585,Very Low,66.7661705175,0.0000250912,190.6930673426,21.1099549152,278.5691927753,6.3020606503,Very Low,7.6362121452,Very Low,0.0000000000,0.0031985263,255562000.0000000000,2588.0000000000,19668800000.0000000000,1087339.0101268515,19925449339.0101280212,0.0000853899,0.0000000569,0.0000200750,Very Low,69.7995388104,0.0000004713,3.5818500352,0.0698184939,73.4512073395,2.9836662624,Very Low,3.7458582497,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0006654598,0.0000038734,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,4.0000000000,0.0203185325,254026689.5486555099,2587.9972855693,19668779370.3269805908,19922806059.8756408691,0.0000000070,0.0000040043,Very Low,0.0357989244,0.0002076670,1578.2690540132,1578.3048529376,13.4489421521,Relatively Low,14.2432880593,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,53.0000000000,1.2047797578,4169606.0993384407,0.0000000000,0.0000000000,0.0000000000,4169606.0993384407,0.0000000851,0.0000001057,0.0000000000,Very Low,1.5483272564,0.0000000000,0.0000000000,0.0000000000,1.5483272564,1.8415500075,Very Low,1.1877446094,Very Low,November 2021,0.0000000358,0.0000290511,0.0000014444
36,T15001022102,Hawaii,HI,15,Hawaii,County,1,15001,22102,15001022102,2041,231676000.0000000000,20509139.4740214944,318.2069134970,28.2978366690,Relatively High,93.0133765930,89.5705521472,26.8749889144,Relatively High,88.8835425288,89.5705521472,977027.5682842253,707863.2039671029,0.0353379791,268568.6410903669,595.7232267555,33.2368509427,Relatively Moderate,65.9453396438,64.3874643875,0.8400000000,50.7751980000,Relatively Low,9.3859370029,40.0000000000,2.5387599000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0579710120,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000478451,0.0000000048,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,238.0000000000,13.2222222220,0.0000000000,0.0000000000,0.0000000541,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0099869850,231676000.0000000000,2041.0000000000,15511600000.0000000000,15743276000.0000000000,0.0008505842,0.0000116917,Very Low,707499.2999999999,0.0350988900,266751.5640000000,974250.8639999999,41.0517981635,Very High,48.7433714577,Very High,1.0000000000,0.0312500000,231676000.0000000000,2041.0000000000,15511600000.0000000000,20509139.4740215018,15763785139.4740200043,0.0000180224,0.0000000760,0.0002275779,Very Low,130.4795612794,0.0000048492,36.8540533395,145.8571215132,313.1907361321,4.3648041515,Very Low,4.9012371629,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0117516502,231676000.0000000000,2041.0000000000,15511600000.0000000000,20509139.4740215018,15763785139.4740200043,0.0000255348,0.0000003276,0.0002460797,Very Low,59.1840584381,0.0000066871,50.8219741089,50.4688281351,160.4748606821,2.2067781933,Very Low,3.1574360485,Very Low,0.0000000000,0.0148900000,231676000.0000000000,2041.0000000000,15511600000.0000000000,15743276000.0000000000,0.0000058883,0.0000013610,Very Low,20.3126049627,0.0000413615,314.3470723640,334.6596773267,9.4660032840,Very Low,8.2272664527,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0006245044,0.0000038327,0.0003492485,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,1.0000000000,0.0312500000,231676000.0000000000,2041.0000000000,15511600000.0000000000,20509139.4740215018,15763785139.4740200043,0.0000083601,0.0000003102,0.0006212585,Very Low,60.5258971247,0.0000197879,150.3881570511,398.1711367054,609.0851908812,8.1795779715,Very Low,9.8425348042,Very Low,0.0000000000,0.0020489727,231676000.0000000000,2041.0000000000,15511600000.0000000000,20509139.4740214944,15763785139.4740200043,0.0001241102,0.0000000828,0.0000291781,Very Low,58.9148231709,0.0000003461,2.6301068292,1.2261404018,62.7710704018,2.8314166101,Very Low,3.5300428471,Very Low,5.0000000000,0.0228352210,2267345.0026022545,25.8386654596,196373857.4926019609,198641202.4952042103,0.0006654598,0.0000038734,Very Low,34.4543953978,0.0000022854,17.3693286400,51.8237240378,3.9880624307,Relatively Low,3.6964876590,Relatively Low,4.0000000000,0.0204629272,231675410.1738269627,2040.9936542881,15511551772.5892314911,15743227182.7630596161,0.0000000070,0.0000040043,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.0000000000,0.9612593147,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000000358,0.0000290467,0.0000014219
37,T15001021509,Hawaii,HI,15,Hawaii,County,1,15001,21509,15001021509,5154,799747000.0000000000,979196.9503299170,10.1295724573,43.6441792428,Very High,99.4844581311,98.4662576687,39.6085028569,Very High,98.8685574451,96.6257668712,3127715.3237965079,2488986.8228898174,0.0840386976,638694.1016106104,34.3992960803,34.7816352966,Relatively Moderate,79.5680245124,77.4928774929,1.8060000000,50.7751980000,Relatively Low,9.3859370029,40.0000000000,2.5387599000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0699710120,34544698.0026134551,222.6246219185,1691947126.5807435513,1726491824.5833570957,0.0000109139,0.0000000005,Very Low,26.3802562625,0.0000000075,0.0567194769,26.4369757394,0.9819222520,Very Low,1.0816801748,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,28.0000000000,1.5555555550,0.0000000000,0.0000000000,0.0000000541,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0099990082,799747000.0000000000,5154.0000000000,39170400000.0000000000,39970147000.0000000000,0.0008505842,0.0000116917,Very Low,2391862.2000000002,0.0814548200,619056.6319999999,3010918.8319999999,59.7963856883,Very High,74.2999363956,Very High,1.0000000000,0.0312500000,799747000.0000000000,5154.0000000000,39170400000.0000000000,979196.9503299171,39971126196.9503250122,0.0000180224,0.0000000760,0.0002275779,Very Low,450.4162610427,0.0000122454,93.0650616906,6.9638635375,550.4451862709,5.2674426826,Very Low,6.1897185553,Relatively Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0144927536,799747000.0000000000,5154.0000000000,39170400000.0000000000,979196.9503299171,39971126196.9503250122,0.0000255348,0.0000003276,0.0002460797,Very Low,295.9615178693,0.0000244732,185.9961048913,3.4921809880,485.4498037485,3.1915706156,Very Low,4.7787076778,Very Low,0.0000000000,0.0148900000,799747000.0000000000,5154.0000000000,39170400000.0000000000,39970147000.0000000000,0.0000058883,0.0000013610,Very Low,70.1192392872,0.0001044473,793.7995154160,863.9187547032,12.9854345870,Relatively Low,11.8106970135,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.0000000000,5.9166666660,23918829.4109991714,78.8266354636,599082429.5234788656,2344.7633025502,623003603.6977806091,0.0006245044,0.0000038327,0.0003492485,Very Low,88379.6984285393,0.0017875457,13585.3469929743,4.8451877839,101969.8906092976,21.0973569676,Relatively Moderate,21.8346150102,Relatively High,1.0000000000,0.0312500000,799747000.0000000000,5154.0000000000,39170400000.0000000000,979196.9503299171,39971126196.9503250122,0.0000083601,0.0000003102,0.0006212585,Very Low,208.9357751655,0.0000499691,379.7650962455,19.0104496225,607.7113210335,8.1734233122,Very Low,10.2922465761,Very Low,0.0000000000,0.0001332481,799747000.0000000000,5154.0000000000,39170400000.0000000000,979196.9503299170,39971126196.9503250122,0.0028562355,0.0000019044,0.0006714957,Very Low,304.3740193640,0.0000013079,9.9399963725,0.0876141484,314.4016298849,4.8444617015,Very Low,6.3211251574,Very Low,11.0000000000,0.0502374860,221010989.9433892369,956.0722553606,7266149140.7407073975,7487160130.6840963364,0.0006654598,0.0000038734,Very Low,7388.6241355279,0.0001860428,1413.9249167873,8802.5490523153,22.0862454143,Relatively Moderate,21.4229529236,Relatively High,4.0000000000,0.0202783018,799720520.0699262619,5153.6368864899,39167640337.3234024048,39967360857.3933258057,0.0000000070,0.0000040043,Very Low,0.1132567587,0.0004178388,3175.5752067561,3175.6884635148,16.9786748734,Relatively Low,18.6868761580,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000003842,0.0000351301,0.0001122053
38,T15003010100,Hawaii,HI,15,Honolulu,County,3,15003,10100,15003010100,7881,844170000.0000000000,6510793.1749418816,30.2068351444,17.9023593434,Relatively Low,62.2967046564,62.5766871166,20.1899418692,Relatively Moderate,67.0658106380,79.1411042945,414254.4118402397,357290.3980572544,0.0066572447,50595.0595105788,6368.9542724065,28.3354388883,Relatively Low,17.4965119142,21.0826210826,-2.2250000000,51.4027980000,Relatively Low,13.6493795737,60.0000000000,2.5701399000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0699710120,108722387.3965868801,1015.0101698384,7714077290.7720127106,7822799678.1686000824,0.0000217970,0.0000000016,Very Low,165.8185422659,0.0000001136,0.8633732204,166.6819154863,1.8139946646,Very Low,1.6080612486,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000004090,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0031021867,844170000.0000000000,7881.0000000000,59895600000.0000000000,60739770000.0000000000,0.0167507621,0.0001397988,Very Low,271131.7000000000,0.0061413700,46674.4120000000,317806.1120000000,28.2593824392,Relatively High,28.2566705000,Relatively Moderate,1.0000000000,0.0312500000,844170000.0000000000,7881.0000000000,59895600000.0000000000,6510793.1749418788,60746280793.1749420166,0.0000180224,0.0000000210,0.0002275779,Very Low,475.4352252455,0.0000051735,39.3183530055,46.3035298223,561.0571080733,5.3010774425,Very Low,5.0127961668,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0144927536,844170000.0000000000,7881.0000000000,59895600000.0000000000,6510793.1749418788,60746280793.1749420166,0.0000255348,0.0000003276,0.0002460797,Very Low,312.4010900194,0.0000374220,284.4073152208,23.2199131490,620.0283183891,3.4627955954,Very Low,4.1723206395,Very Low,0.0000000000,0.0148900000,844170000.0000000000,7881.0000000000,59895600000.0000000000,60739770000.0000000000,0.0000058883,0.0000002640,Very Low,74.0141047470,0.0000309799,235.4472077760,309.4613125230,9.2221951746,Very Low,6.7499127907,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0000000000,6.3750000000,144063515.1865202785,1085.2615309044,8247987634.8732604980,1740883.8763676984,8393792033.9361505508,0.0000678921,0.0000000585,0.0005670888,Very Low,62352.4173422581,0.0004047596,3076.1731167997,6293.6278904878,71722.2183495456,18.7624106894,Relatively Moderate,15.6261122070,Relatively Moderate,1.0000000000,0.0312500000,844170000.0000000000,7881.0000000000,59895600000.0000000000,6510793.1749418788,60746280793.1749420166,0.0000002273,0.0000001163,0.0000219536,Very Low,5.9951200718,0.0000286538,217.7686714211,4.4667327311,228.2305242240,5.8969773428,Very Low,5.9755854646,Very Low,0.0000000000,0.0008089954,844170000.0000000000,7881.0000000000,59895600000.0000000000,6510793.1749418816,60746280793.1749420166,0.0010790568,0.0000007195,0.0002536843,Very Low,736.9198762201,0.0000045872,34.8625006827,1.3362062164,773.1185831192,6.5388187819,Very Low,6.8658963899,Very Low,6.0000000000,0.0274022650,515711432.1667201519,4182.4213727807,31786402433.1335411072,32302113865.3002624512,0.0015593140,0.0000000365,Very Low,22035.6967564264,0.0000041851,31.8069724526,22067.5037288791,30.0033774230,Relatively High,23.4192184699,Relatively High,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0477752648,0.0001095931,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000000649,0.0009782148,0.0000759598
39,T15003010202,Hawaii,HI,15,Honolulu,County,3,15003,10202,15003010202,7643,654554000.0000000000,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.0104045950,79074.9221952323,2671.0665233012,28.8791518078,Relatively Low,21.4100073865,26.2108262108,-1.8850000000,51.4027980000,Relatively Low,13.6493795737,60.0000000000,2.5701399000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0699710120,149406920.2225816846,1744.5727797266,13258753125.9224720001,13408160046.1450557709,0.0000463641,0.0000000057,Very Low,484.6969048295,0.0000006988,5.3105325914,490.0074374209,2.5986077845,Very Low,2.3478038255,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000004090,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0034127689,654554000.0000000000,7643.0000000000,58086800000.0000000000,58741354000.0000000000,0.0167507621,0.0001397988,Very Low,247080.5000000000,0.0083154600,63197.4960000000,310277.9960000000,28.0344631782,Relatively High,28.5696588646,Relatively High,1.0000000000,0.0312500000,654554000.0000000000,7643.0000000000,58086800000.0000000000,1559566.8001234487,58742913566.8001251221,0.0000180224,0.0000000210,0.0002275779,Very Low,368.6437902619,0.0000050172,38.1309696766,11.0913441572,417.8661040956,4.8051561720,Very Low,4.6310331917,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0144927536,654554000.0000000000,7643.0000000000,58086800000.0000000000,1559566.8001234487,58742913566.8001251221,0.0000255348,0.0000003276,0.0002460797,Very Low,242.2300994782,0.0000362919,275.8184380450,5.5619960081,523.6105335314,3.2730989859,Very Low,4.0194298107,Very Low,0.0000000000,0.0148900000,654554000.0000000000,7643.0000000000,58086800000.0000000000,58741354000.0000000000,0.0000058883,0.0000002640,Very Low,57.3891850203,0.0000300443,228.3368873280,285.7260723483,8.9801201061,Very Low,6.6988536162,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0000000000,6.3750000000,435262433.1492907405,5305.6996876866,40323317626.4183044434,733854.2006652680,40759313913.7682723999,0.0000678921,0.0000000585,0.0005670888,Very Low,188386.8018213588,0.0019788161,15039.0023789685,2653.0231726283,206078.8273729557,26.6736137620,Relatively High,22.6411586896,Relatively High,1.0000000000,0.0312500000,654554000.0000000000,7643.0000000000,58086800000.0000000000,1559566.8001234487,58742913566.8001251221,0.0000002273,0.0000001163,0.0000219536,Very Low,4.6485066083,0.0000277885,211.1922288633,1.0699415394,216.9106770110,5.7978262092,Very Low,5.9878468792,Very Low,0.0000000000,0.0003346294,654554000.0000000000,7643.0000000000,58086800000.0000000000,1559566.8001234492,58742913566.8001251221,0.0026087124,0.0000017394,0.0006133035,Very Low,571.3942128474,0.0000044486,33.8096805884,0.3200689681,605.5239624040,6.0273680086,Very Low,6.4502559937,Very Low,6.0000000000,0.0274022650,509853307.4954975247,6025.7162425590,45795443443.4484024048,46305296750.9438858032,0.0015593140,0.0000000365,Very Low,21785.3865039000,0.0000060296,45.8250791711,21831.2115830711,29.8959038814,Relatively High,23.7830983180,Relatively High,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0477752648,0.0001095931,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000002726,0.0017126977,0.0002904509
40,T15003000114,Hawaii,HI,15,Honolulu,County,3,15003,114,15003000114,1594,256337000.0000000000,0.0000000000,0.4733660713,11.5700314407,Very Low,25.5750010311,13.4969325153,13.0024416326,Very Low,27.0776337316,15.3374233129,110646.2439046590,96129.4471325930,0.0019101048,14516.7967720660,0.0000000000,28.4361856940,Relatively Low,18.1695072908,21.3675213675,-2.1620000000,51.4027980000,Relatively Low,13.6493795737,60.0000000000,2.5701399000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0679710120,45060581.7616326436,280.2036667670,2129547867.4289019108,2174608449.1905345917,0.0000223874,0.0000000023,Very Low,68.5682860676,0.0000000436,0.3316687560,68.8999548236,1.3512825139,Very Low,1.2021374741,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,287.0000000000,15.9444444440,0.0000000000,0.0000000000,0.0000004090,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0035448826,256337000.0000000000,1594.0000000000,12114400000.0000000000,12370737000.0000000000,0.0167507621,0.0001397988,Very Low,78176.6000000000,0.0018149900,13793.9240000000,91970.5240000000,18.6921018488,Relatively Moderate,18.7567615341,Relatively Moderate,1.0000000000,0.0312500000,256337000.0000000000,1594.0000000000,12114400000.0000000000,0.0000000000,12370737000.0000000000,0.0000180224,0.0000000210,0.0002275779,Very Low,144.3685979527,0.0000010464,7.9524749005,0.0000000000,152.3210728532,3.4325361718,Very Low,3.2574099371,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0100000000,256337000.0000000000,1594.0000000000,12114400000.0000000000,0.0000000000,12370737000.0000000000,0.0000255348,0.0000003276,0.0002460797,Very Low,65.4550282129,0.0000052226,39.6914388680,0.0000000000,105.1464670809,1.9167019130,Very Low,2.3176443554,Very Low,0.0000000000,0.0148900000,256337000.0000000000,1594.0000000000,12114400000.0000000000,12370737000.0000000000,0.0000058883,0.0000002640,Very Low,22.4748019576,0.0000062660,47.6212218240,70.0960237816,5.6216436913,Very Low,4.1292251723,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0000000000,6.3750000000,31810533.4518781751,201.1940620543,1529074871.6130447388,0.0000000000,1560885405.0649232864,0.0000678921,0.0000000585,0.0005670888,Very Low,13767.9804293500,0.0000750374,570.2844405031,0.0000000000,14338.2648698530,10.9707486819,Relatively Low,9.1693798611,Relatively Low,1.0000000000,0.0312500000,256337000.0000000000,1594.0000000000,12114400000.0000000000,0.0000000000,12370737000.0000000000,0.0000002273,0.0000001163,0.0000219536,Very Low,1.8204521528,0.0000057955,44.0455858705,0.0000000000,45.8660380233,3.4541030654,Very Low,3.5125918792,Very Low,0.0000000000,0.0000203690,256337000.0000000000,1594.0000000000,12114400000.0000000000,0.0000000000,12370737000.0000000000,0.0540823568,0.0000360603,0.0314801129,Very Low,282.3816906154,0.0000011708,8.8981639975,0.0000000000,291.2798546130,4.7226679739,Very Low,4.9763159800,Very Low,5.0000000000,0.0228352210,101097246.5153407156,638.7094045184,4854191474.3399534225,4955288720.8552951813,0.0015593140,0.0000000365,Very Low,3599.7978462840,0.0000005326,4.0477773464,3603.8456236304,16.3998975605,Relatively Moderate,12.8464989548,Relatively Moderate,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0477752648,0.0001095931,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000000593,,0.0000559929
41,T15003000301,Hawaii,HI,15,Honolulu,County,3,15003,301,15003000301,3307,448705000.0000000000,0.0000000000,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.0000000000,30.8301216957,Relatively Low,39.3975870654,39.8860398860,-0.6650000000,51.4027980000,Relatively Low,13.6493795737,60.0000000000,2.5701399000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0454782590,25555924.5562681481,188.3496785362,1431457556.8750038147,1457013481.4312715530,0.0000127441,0.0000000012,Very Low,14.8116874350,0.0000000104,0.0793339445,14.8910213795,0.8109262150,Very Low,0.7821557032,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,287.0000000000,15.9444444440,0.0000000000,0.0000000000,0.0000004090,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0032518991,448705000.0000000000,3307.0000000000,25133200000.0000000000,25581905000.0000000000,0.0167507621,0.0001397988,Very Low,137822.2000000000,0.0035576500,27038.1400000000,164860.3400000000,22.7063493531,Relatively Moderate,24.7030701239,Relatively Moderate,1.0000000000,0.0312500000,448705000.0000000000,3307.0000000000,25133200000.0000000000,0.0000000000,25581905000.0000000000,0.0000180224,0.0000000210,0.0002275779,Very Low,252.7099550373,0.0000021709,16.4986414655,0.0000000000,269.2085965027,4.1500955944,Very Low,4.2699156153,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0100000000,448705000.0000000000,3307.0000000000,25133200000.0000000000,0.0000000000,25581905000.0000000000,0.0000255348,0.0000003276,0.0002460797,Very Low,114.5757281792,0.0000108350,82.3460403617,0.0000000000,196.9217685408,2.3625858060,Very Low,3.0973030875,Very Low,0.0000000000,0.0148900000,448705000.0000000000,3307.0000000000,25133200000.0000000000,25581905000.0000000000,0.0000058883,0.0000002640,Very Low,39.3410081743,0.0000129997,98.7976038720,138.1386120463,7.0480755517,Very Low,5.6128016961,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0000000000,6.3750000000,43472034.2885192484,372.9604933622,2834499749.5526738167,0.0000000000,2877971783.8411927223,0.0000678921,0.0000000585,0.0005670888,Very Low,18815.2178652957,0.0001390995,1057.1562804341,0.0000000000,19872.3741457298,12.2317140159,Relatively Low,11.0839590918,Relatively Low,1.0000000000,0.0312500000,448705000.0000000000,3307.0000000000,25133200000.0000000000,0.0000000000,25581905000.0000000000,0.0000002273,0.0000001163,0.0000219536,Very Low,3.1866097490,0.0000120236,91.3793930199,0.0000000000,94.5660027689,4.3962585632,Very Low,4.8470726091,Very Low,0.0000000000,0.0000891993,448705000.0000000000,3307.0000000000,25133200000.0000000000,0.0000000000,25581905000.0000000000,0.0123499135,0.0000082345,0.0314801129,Very Low,494.2949183598,0.0000024290,18.4606200375,0.0000000000,512.7555383974,5.7023523714,Very Low,6.5147029765,Very Low,5.0000000000,0.0228352210,44498932.4144714028,322.9626620121,2454516231.2922034264,2499015163.7066750526,0.0015593140,0.0000000365,Very Low,1584.4858944130,0.0000002693,2.0467538724,1586.5326482854,12.4758098497,Relatively Moderate,10.5953740883,Relatively Moderate,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0477752648,0.0001095931,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000000543,,0.0000439802
42,T15003000401,Hawaii,HI,15,Honolulu,County,3,15003,401,15003000401,2893,351046000.0000000000,0.0000000000,2.3849752201,14.1817633164,Relatively Low,42.3115522622,28.5276073620,14.3094432099,Relatively Low,35.2974332889,26.3803680982,147478.9860232134,127735.0410334750,0.0025978875,19743.9449897384,0.0000000000,31.6712775654,Relatively Moderate,48.6047656827,51.2820512821,-0.1390000000,51.4027980000,Relatively Low,13.6493795737,60.0000000000,2.5701399000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0020000000,6908402.0026214793,56.9327295955,432688744.9258443117,439597146.9284657836,0.0000711351,0.0000000050,Very Low,0.9828593662,0.0000000006,0.0043249758,0.9871843420,0.3282005193,Very Low,0.3251932208,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,287.0000000000,15.9444444440,0.0000000000,0.0000000000,0.0000004090,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0030079196,351046000.0000000000,2893.0000000000,21986800000.0000000000,22337846000.0000000000,0.0167507621,0.0001397988,Very Low,124594.1000000000,0.0025472200,19358.8720000000,143952.9720000000,21.7027847784,Relatively Moderate,24.2554548276,Relatively Moderate,1.0000000000,0.0312500000,351046000.0000000000,2893.0000000000,21986800000.0000000000,0.0000000000,22337846000.0000000000,0.0000180224,0.0000000210,0.0002275779,Very Low,197.7085588006,0.0000018991,14.4331931539,0.0000000000,212.1417519545,3.8332797027,Very Low,4.0515578542,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0100000000,351046000.0000000000,2893.0000000000,21986800000.0000000000,0.0000000000,22337846000.0000000000,0.0000255348,0.0000003276,0.0002460797,Very Low,89.6387405409,0.0000094786,72.0372224875,0.0000000000,161.6759630284,2.2122701874,Very Low,2.9793712675,Very Low,0.0000000000,0.0148900000,351046000.0000000000,2893.0000000000,21986800000.0000000000,22337846000.0000000000,0.0000058883,0.0000002640,Very Low,30.7785818200,0.0000113723,86.4292313280,117.2078131480,6.6724353693,Very Low,5.4586326301,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0000000000,6.3750000000,5598483.8728212211,40.8697676930,310610234.4665992260,0.0000000000,316208718.3394203782,0.0000678921,0.0000000585,0.0005670888,Very Low,2423.0909711602,0.0000152428,115.8453304451,0.0000000000,2538.9363016053,6.1605762200,Relatively Low,5.7348131748,Relatively Low,1.0000000000,0.0312500000,351046000.0000000000,2893.0000000000,21986800000.0000000000,0.0000000000,22337846000.0000000000,0.0000002273,0.0000001163,0.0000219536,Very Low,2.4930558072,0.0000105184,79.9396988232,0.0000000000,82.4327546304,4.1995699630,Very Low,4.7565433860,Very Low,0.0000000000,0.0000660707,351046000.0000000000,2893.0000000000,21986800000.0000000000,0.0000000000,22337846000.0000000000,0.0169083019,0.0000112739,0.0314801129,Very Low,392.1684715683,0.0000021549,16.3773613872,0.0000000000,408.5458329555,5.2864507718,Very Low,6.2042957720,Very Low,0.0000000000,0.0045870000,570395.3445181100,5.2058202244,39564233.7054760307,40134629.0499941409,0.0015593140,0.0000000365,Very Low,4.0797944117,0.0000000009,0.0066271377,4.0864215494,1.7101470841,Very Low,1.4920087004,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0477752648,0.0001095931,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000000175,,0.0000089358
43,T15003000500,Hawaii,HI,15,Honolulu,County,3,15003,500,15003000500,3807,768658000.0000000000,0.0000000000,1.1120328336,20.3323526080,Relatively Moderate,72.8563769092,76.0736196319,21.7355738392,Relatively Moderate,73.8723380855,82.2085889571,516862.7907281188,477082.1470773286,0.0052342952,39780.6436507902,0.0000000000,29.8930164873,Relatively Low,30.0289989878,33.6182336182,-1.2510000000,51.4027980000,Relatively Low,13.6493795737,60.0000000000,2.5701399000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0699710120,360125556.2738288641,1783.6254780858,13555553633.4519920349,13915679189.7258243561,0.0000304590,0.0000000035,Very Low,767.5160208618,0.0000004430,3.3664820289,770.8825028907,3.0222884210,Very Low,2.8264563707,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,287.0000000000,15.9444444440,0.0000000000,0.0000000000,0.0000004090,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0029710230,768658000.0000000000,3807.0000000000,28933200000.0000000000,29701858000.0000000000,0.0167507621,0.0001397988,Very Low,330555.3000000000,0.0046237000,35140.1200000000,365695.4200000000,29.6129558301,Relatively High,31.2377595174,Relatively High,1.0000000000,0.0312500000,768658000.0000000000,3807.0000000000,28933200000.0000000000,0.0000000000,29701858000.0000000000,0.0000180224,0.0000000210,0.0002275779,Very Low,432.9069848209,0.0000024991,18.9931442583,0.0000000000,451.9001290792,4.9322219806,Very Low,4.9203761960,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0100000000,768658000.0000000000,3807.0000000000,28933200000.0000000000,0.0000000000,29701858000.0000000000,0.0000255348,0.0000003276,0.0002460797,Very Low,196.2749469490,0.0000124732,94.7963034947,0.0000000000,291.0712504437,2.6912628627,Very Low,3.4209500746,Very Low,0.0000000000,0.0148900000,768658000.0000000000,3807.0000000000,28933200000.0000000000,29701858000.0000000000,0.0000058883,0.0000002640,Very Low,67.3934559705,0.0000149652,113.7352518720,181.1287078425,7.7142661392,Very Low,5.9565976821,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0000000000,6.3750000000,310362683.7705971003,1505.3407549263,11440589737.4396343231,0.0000000000,11750952421.2102317810,0.0000678921,0.0000000585,0.0005670888,Very Low,134328.6921804771,0.0005614326,4266.8874092204,0.0000000000,138595.5795896974,23.3697388730,Relatively High,20.5331678871,Relatively High,1.0000000000,0.0312500000,768658000.0000000000,3807.0000000000,28933200000.0000000000,0.0000000000,29701858000.0000000000,0.0000002273,0.0000001163,0.0000219536,Very Low,5.4588495259,0.0000138415,105.1954488188,0.0000000000,110.6542983447,4.6326303292,Very Low,4.9524311546,Very Low,0.0000000000,0.0000506726,768658000.0000000000,3807.0000000000,28933200000.0000000000,0.0000000000,29701858000.0000000000,0.0267087035,0.0000178084,0.0314801129,Very Low,1040.3016804499,0.0000034354,26.1093390095,0.0000000000,1066.4110194594,7.2787835569,Very Low,8.0631344480,Very Low,3.0000000000,0.0137011320,453479536.5391238332,3008.6510313156,22865747837.9989280701,23319227374.5380477905,0.0015593140,0.0000000365,Very Low,9688.3029582735,0.0000015053,11.4402720877,9699.7432303613,22.8124793275,Relatively Moderate,18.7851444478,Relatively Moderate,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0477752648,0.0001095931,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000001600,,0.0001780227
44,T15003001100,Hawaii,HI,15,Honolulu,County,3,15003,1100,15003001100,3862,219684000.0000000000,0.0000000000,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.0000000000,36.5503014408,Relatively High,89.7682816732,89.7435897436,2.9120000000,51.4027980000,Relatively Low,13.6493795737,60.0000000000,2.5701399000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000478451,0.0000000048,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,287.0000000000,15.9444444440,0.0000000000,0.0000000000,0.0000004090,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0029807350,219684000.0000000000,3862.0000000000,29351200000.0000000000,29570884000.0000000000,0.0167507621,0.0001397988,Very Low,78161.0000000000,0.0041124200,31254.3920000000,109415.3920000000,19.8062105715,Relatively Moderate,25.5458719969,Relatively Moderate,1.0000000000,0.0312500000,219684000.0000000000,3862.0000000000,29351200000.0000000000,0.0000000000,29570884000.0000000000,0.0000180224,0.0000000210,0.0002275779,Very Low,123.7256856200,0.0000025352,19.2675395659,0.0000000000,142.9932251859,3.3609878804,Very Low,4.0996224460,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0100000000,219684000.0000000000,3862.0000000000,29351200000.0000000000,0.0000000000,29570884000.0000000000,0.0000255348,0.0000003276,0.0002460797,Very Low,56.0957739925,0.0000126534,96.1658324393,0.0000000000,152.2616064318,2.1684686631,Very Low,3.3702722886,Very Low,0.0000000000,0.0148900000,219684000.0000000000,3862.0000000000,29351200000.0000000000,29570884000.0000000000,0.0000058883,0.0000002640,Very Low,19.2611850542,0.0000151814,115.3783931520,134.6395782062,6.9880569493,Very Low,6.5975289928,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000678921,0.0000000585,0.0005670888,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,1.0000000000,0.0312500000,219684000.0000000000,3862.0000000000,29351200000.0000000000,0.0000000000,29570884000.0000000000,0.0000002273,0.0000001163,0.0000219536,Very Low,1.5601501569,0.0000140415,106.7152149592,0.0000000000,108.2753651161,4.5991908913,Very Low,6.0116468147,Very Low,0.0000000000,0.0000095105,219684000.0000000000,3862.0000000000,29351200000.0000000000,0.0000000000,29570884000.0000000000,0.1262836527,0.0000842016,0.0314801129,Very Low,263.8454713676,0.0000030927,23.5044632585,0.0000000000,287.3499346261,4.7013324703,Very Low,6.3676040782,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0015593140,0.0000000365,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0477752648,0.0001095931,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000000123,,0.0000021143
45,T15003001400,Hawaii,HI,15,Honolulu,County,3,15003,1400,15003001400,2550,280795000.0000000000,0.0000000000,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.0000000000,33.8173444421,Relatively Moderate,71.5385878040,69.8005698006,1.2030000000,51.4027980000,Relatively Low,13.6493795737,60.0000000000,2.5701399000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000478451,0.0000000048,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,287.0000000000,15.9444444440,0.0000000000,0.0000000000,0.0000004090,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0029408590,280795000.0000000000,2550.0000000000,19380000000.0000000000,19660795000.0000000000,0.0167507621,0.0001397988,Very Low,77555.8000000000,0.0021786600,16557.8160000000,94113.6160000000,18.8361759451,Relatively Moderate,22.4781526450,Relatively Moderate,1.0000000000,0.0312500000,280795000.0000000000,2550.0000000000,19380000000.0000000000,0.0000000000,19660795000.0000000000,0.0000180224,0.0000000210,0.0002275779,Very Low,158.1433053447,0.0000016739,12.7219642386,0.0000000000,170.8652695832,3.5665341864,Very Low,4.0250552399,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0100000000,280795000.0000000000,2550.0000000000,19380000000.0000000000,0.0000000000,19660795000.0000000000,0.0000255348,0.0000003276,0.0002460797,Very Low,71.7003189046,0.0000083548,63.4963419783,0.0000000000,135.1966608829,2.0842269303,Very Low,2.9971286146,Very Low,0.0000000000,0.0148900000,280795000.0000000000,2550.0000000000,19380000000.0000000000,19660795000.0000000000,0.0000058883,0.0000002640,Very Low,24.6192005667,0.0000100239,76.1820048000,100.8012053667,6.3453282955,Very Low,5.5427782779,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000678921,0.0000000585,0.0005670888,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,1.0000000000,0.0312500000,280795000.0000000000,2550.0000000000,19380000000.0000000000,0.0000000000,19660795000.0000000000,0.0000002273,0.0000001163,0.0000219536,Very Low,1.9941477908,0.0000092713,70.4618845481,0.0000000000,72.4560323389,4.0228119610,Very Low,4.8650834374,Very Low,0.0000000000,0.0000105528,280795000.0000000000,2550.0000000000,19380000000.0000000000,0.0000000000,19660795000.0000000000,0.1339019955,0.0000892813,0.0314801129,Very Low,396.7732396591,0.0000024025,18.2591281087,0.0000000000,415.0323677677,5.3142818813,Very Low,6.6596369426,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0015593140,0.0000000365,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0477752648,0.0001095931,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000000124,,0.0000023264
46,T15003001901,Hawaii,HI,15,Honolulu,County,3,15003,1901,15003001901,837,1117472000.0000000000,0.0000000000,0.3282774340,30.7033480191,Relatively High,95.5127235733,89.8773006135,27.1286782082,Relatively High,89.3399689300,89.8773006135,1004957.8320852902,995747.3951398877,0.0012118996,9210.4369454027,0.0000000000,36.1665040858,Relatively High,88.0789538478,88.3190883191,2.6720000000,51.4027980000,Relatively Low,13.6493795737,60.0000000000,2.5701399000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0699710120,905020382.2971718311,677.8711770700,5151820945.7317676544,6056841328.0289392471,0.0000366518,0.0000000046,Very Low,2320.9822630745,0.0000002186,1.6615278346,2322.6437909091,4.3651655035,Relatively Low,4.9390552318,Relatively Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,154.0000000000,8.5555555550,0.0000000000,0.0000000000,0.0000004090,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0065640198,1117472000.0000000000,837.0000000000,6361200000.0000000000,7478672000.0000000000,0.0167507621,0.0001397988,Very Low,577071.7000000000,0.0009401100,7144.8360000000,584216.5360000000,34.6178320726,Relatively High,44.1809219918,Very High,1.0000000000,0.0312500000,1117472000.0000000000,837.0000000000,6361200000.0000000000,0.0000000000,7478672000.0000000000,0.0000180224,0.0000000210,0.0002275779,Very Low,629.3584846957,0.0000005494,4.1757976736,0.0000000000,633.5342823693,5.5201621225,Very Low,6.6626088408,Relatively Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0100000000,1117472000.0000000000,837.0000000000,6361200000.0000000000,0.0000000000,7478672000.0000000000,0.0000255348,0.0000003276,0.0002460797,Very Low,285.3437517296,0.0000027423,20.8417404846,0.0000000000,306.1854922143,2.7370614693,Very Low,4.2093201478,Very Low,0.0000000000,0.0148900000,1117472000.0000000000,837.0000000000,6361200000.0000000000,7478672000.0000000000,0.0000058883,0.0000002640,Very Low,97.9763432245,0.0000032902,25.0056227520,122.9819659765,6.7802545464,Very Low,6.3341222119,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0000000000,6.3750000000,870614950.6549522877,698.4187222552,5307982289.1392316818,0.0000000000,6178597239.7941837311,0.0000678921,0.0000000585,0.0005670888,Very Low,376812.5932326717,0.0002604826,1979.6674225433,0.0000000000,378792.2606552151,32.6741600789,Relatively High,34.7330818955,Very High,1.0000000000,0.0312500000,1117472000.0000000000,837.0000000000,6361200000.0000000000,0.0000000000,7478672000.0000000000,0.0000002273,0.0000001163,0.0000219536,Very Low,7.9360541324,0.0000030432,23.1280773987,0.0000000000,31.0641315311,3.0333646550,Very Low,3.9233062707,Very Low,0.0000000000,0.0000235593,1117472000.0000000000,837.0000000000,6361200000.0000000000,0.0000000000,7478672000.0000000000,0.0599777062,0.0000399911,0.0314801129,Relatively Low,1579.0273532943,0.0000007886,5.9932902851,0.0000000000,1585.0206435794,8.3067072474,Very Low,11.1332617875,Very Low,5.0000000000,0.0228352210,1037497917.9564591646,809.0763770808,6148980465.8138828278,7186478383.7703418732,0.0015593140,0.0000000365,Relatively Low,36942.4776570648,0.0000006747,5.1274664307,36947.6051234956,35.6271574790,Relatively High,35.4944142526,Relatively High,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0477752648,0.0001095931,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000003239,,0.0003416043
47,T15003001904,Hawaii,HI,15,Honolulu,County,3,15003,1904,15003001904,3912,544584000.0000000000,0.0000000000,0.0445511515,20.5232328900,Relatively Moderate,73.6152545402,76.3803680982,21.1782783212,Relatively Moderate,71.5035950453,80.9815950920,478116.6755402327,435047.8831005651,0.0056669464,43068.7924396676,0.0000000000,30.9676490813,Relatively Low,40.8133395344,42.1652421652,-0.5790000000,51.4027980000,Relatively Low,13.6493795737,60.0000000000,2.5701399000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0579710120,538132301.3557038307,3865.6544498250,29378973818.6702117920,29917106120.0259208679,0.0000464411,0.0000000047,Very Low,1448.7797772610,0.0000010507,7.9856652236,1456.7654424846,3.7365407360,Relatively Low,3.6200502203,Relatively Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,154.0000000000,8.5555555550,0.0000000000,0.0000000000,0.0000004090,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0075987240,544584000.0000000000,3912.0000000000,29731200000.0000000000,30275784000.0000000000,0.0167507621,0.0001397988,Very Low,200288.1000000000,0.0042067200,31971.0720000000,232259.1720000000,25.4545960597,Relatively High,27.8165217199,Relatively Moderate,1.0000000000,0.0312500000,544584000.0000000000,3912.0000000000,29731200000.0000000000,0.0000000000,30275784000.0000000000,0.0000180224,0.0000000210,0.0002275779,Very Low,306.7088580560,0.0000025680,19.5169898436,0.0000000000,326.2258478996,4.4245378574,Very Low,4.5725883466,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0100000000,544584000.0000000000,3912.0000000000,29731200000.0000000000,0.0000000000,30275784000.0000000000,0.0000255348,0.0000003276,0.0002460797,Very Low,139.0581971557,0.0000128172,97.4108587526,0.0000000000,236.4690559083,2.5111989463,Very Low,3.3068175468,Very Low,0.0000000000,0.0148900000,544584000.0000000000,3912.0000000000,29731200000.0000000000,30275784000.0000000000,0.0000058883,0.0000002640,Very Low,47.7473698657,0.0000153779,116.8721579520,164.6195278177,7.4723861251,Very Low,5.9772504184,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0000000000,6.3750000000,527170866.7436609864,3780.1623928368,28729234185.5599555969,0.0000000000,29256405052.3036117554,0.0000678921,0.0000000585,0.0005670888,Very Low,228165.8742765172,0.0014098510,10714.8678902232,0.0000000000,238880.7421667403,28.0197622945,Relatively High,25.5038085954,Relatively High,1.0000000000,0.0312500000,544584000.0000000000,3912.0000000000,29731200000.0000000000,0.0000000000,30275784000.0000000000,0.0000002273,0.0000001163,0.0000219536,Very Low,3.8675225004,0.0000142233,108.0968205303,0.0000000000,111.9643430307,4.6508406739,Very Low,5.1506348041,Very Low,0.0000000000,0.0000105528,544584000.0000000000,3912.0000000000,29731200000.0000000000,0.0000000000,30275784000.0000000000,0.1339019955,0.0000892813,0.0314801129,Very Low,769.5164014548,0.0000036857,28.0116506514,0.0000000000,797.5280521062,6.6069231193,Very Low,7.5819369394,Very Low,1.0000000000,0.0045670440,544584000.0000000000,3912.0000000000,29731200000.0000000000,30275784000.0000000000,0.0015593140,0.0000000365,Very Low,3878.2306977544,0.0000006524,4.9584064909,3883.1891042453,16.8131307015,Relatively Moderate,14.3426412330,Relatively Moderate,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0477752648,0.0001095931,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000003731,,0.0004239595
48,T15003002202,Hawaii,HI,15,Honolulu,County,3,15003,2202,15003002202,3400,291464000.0000000000,0.0000000000,0.0920274117,17.0347962319,Relatively Low,58.0362666520,54.2944785276,16.8452811998,Relatively Low,50.3182611804,55.8282208589,240600.6144384057,206514.8289788663,0.0044849718,34085.7854595395,0.0000000000,32.3157372907,Relatively Moderate,55.9680463984,58.4045584046,0.2640000000,51.4027980000,Relatively Low,13.6493795737,60.0000000000,2.5701399000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0579710120,172542690.3860186636,2012.7533668393,15296925587.9790382385,15469468278.3650550842,0.0000700448,0.0000000071,Very Low,700.6213058816,0.0000008330,6.3310746600,706.9523805416,2.9363189746,Very Low,2.9686154104,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,154.0000000000,8.5555555550,0.0000000000,0.0000000000,0.0000004090,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0039757619,291464000.0000000000,3400.0000000000,25840000000.0000000000,26131464000.0000000000,0.0167507621,0.0001397988,Very Low,103980.9000000000,0.0034610900,26304.2840000000,130285.1840000000,20.9929559904,Relatively Moderate,23.9395532155,Relatively Moderate,1.0000000000,0.0312500000,291464000.0000000000,3400.0000000000,25840000000.0000000000,0.0000000000,26131464000.0000000000,0.0000180224,0.0000000210,0.0002275779,Very Low,164.1520694777,0.0000022319,16.9626189847,0.0000000000,181.1146884624,3.6364672743,Very Low,3.9217481945,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0100000000,291464000.0000000000,3400.0000000000,25840000000.0000000000,0.0000000000,26131464000.0000000000,0.0000255348,0.0000003276,0.0002460797,Very Low,74.4246220524,0.0000111397,84.6617893044,0.0000000000,159.0864113568,2.2003953055,Very Low,3.0236787973,Very Low,0.0000000000,0.0148900000,291464000.0000000000,3400.0000000000,25840000000.0000000000,26131464000.0000000000,0.0000058883,0.0000002640,Very Low,25.5546240994,0.0000133653,101.5760064000,127.1306304994,6.8556544867,Very Low,5.7226462356,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0000000000,6.3750000000,219965392.4481385648,2625.4678449644,19953555621.7294769287,0.0000000000,20173521014.1776084900,0.0000678921,0.0000000585,0.0005670888,Very Low,95203.6602259949,0.0009791956,7441.8869311356,0.0000000000,102645.5471571305,21.1438517348,Relatively Moderate,20.0830898102,Relatively High,1.0000000000,0.0312500000,291464000.0000000000,3400.0000000000,25840000000.0000000000,0.0000000000,26131464000.0000000000,0.0000002273,0.0000001163,0.0000219536,Very Low,2.0699168137,0.0000123617,93.9491793975,0.0000000000,96.0190962112,4.4186617199,Very Low,5.1065299405,Very Low,0.0000000000,0.0000105528,291464000.0000000000,3400.0000000000,25840000000.0000000000,0.0000000000,26131464000.0000000000,0.1339019955,0.0000892813,0.0314801129,Very Low,411.8489129934,0.0000032034,24.3455041449,0.0000000000,436.1944171383,5.4031119357,Very Low,6.4702789640,Very Low,3.0000000000,0.0137011320,278575886.5716552138,3100.1926962857,23561464491.7714042664,23840040378.3430557251,0.0015593140,0.0000000365,Very Low,5951.5973015532,0.0000015511,11.7883555124,5963.3856570656,19.3976911898,Relatively Moderate,17.2677765053,Relatively Moderate,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0477752648,0.0001095931,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000003007,,0.0003313697
49,T15003002600,Hawaii,HI,15,Honolulu,County,3,15003,2600,15003002600,4249,791449000.0000000000,0.0000000000,0.2563620755,25.6530656656,Relatively High,88.7048213476,87.1165644172,21.1208678596,Relatively Moderate,71.2740070664,80.6748466258,474238.9442787840,431102.8780618620,0.0056757982,43136.0662169221,0.0000000000,38.8131066797,Relatively High,95.9291986978,94.5868945869,4.3270000000,51.4027980000,Relatively Low,13.6493795737,60.0000000000,2.5701399000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0434782590,206319525.3344310820,1107.6540157938,8418170520.0329809189,8624490045.3674087524,0.0000135471,0.0000000017,Very Low,121.5227170250,0.0000000820,0.6229487767,122.1456658017,1.6354321518,Very Low,1.9858551825,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,154.0000000000,8.5555555550,0.0000000000,0.0000000000,0.0000004090,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0035502375,791449000.0000000000,4249.0000000000,32292400000.0000000000,33083849000.0000000000,0.0167507621,0.0001397988,Very Low,427356.7000000000,0.0056226000,42731.7600000000,470088.4600000000,32.1984610759,Relatively High,44.1003359351,Very High,1.0000000000,0.0312500000,791449000.0000000000,4249.0000000000,32292400000.0000000000,0.0000000000,33083849000.0000000000,0.0000180224,0.0000000210,0.0002275779,Very Low,445.7428404058,0.0000027892,21.1982847254,0.0000000000,466.9411251311,4.9863470369,Very Low,6.4587259850,Relatively Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0100000000,791449000.0000000000,4249.0000000000,32292400000.0000000000,0.0000000000,33083849000.0000000000,0.0000255348,0.0000003276,0.0002460797,Very Low,202.0945732534,0.0000139214,105.8023361042,0.0000000000,307.8969093577,2.7421515792,Very Low,4.5257518719,Very Low,0.0000000000,0.0148900000,791449000.0000000000,4249.0000000000,32292400000.0000000000,33083849000.0000000000,0.0000058883,0.0000002640,Very Low,69.3916973926,0.0000167026,126.9401327040,196.3318300966,7.9243276913,Very Low,7.9446494857,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000678921,0.0000000585,0.0005670888,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,1.0000000000,0.0312500000,791449000.0000000000,4249.0000000000,32292400000.0000000000,0.0000000000,33083849000.0000000000,0.0000002273,0.0000001163,0.0000219536,Very Low,5.6207064759,0.0000154485,117.4088421353,0.0000000000,123.0295486112,4.7992645854,Very Low,6.6615326154,Very Low,0.0000000000,0.0000105528,791449000.0000000000,4249.0000000000,32292400000.0000000000,0.0000000000,33083849000.0000000000,0.1339019955,0.0000892813,0.0314801129,Relatively Low,1118.3453542795,0.0000040033,30.4247197387,0.0000000000,1148.7700740183,7.4615370840,Very Low,10.7322937623,Very Low,0.0000000000,0.0045870000,249345255.4642154872,1499.5410201852,11396511753.4072074890,11645857008.8714237213,0.0015593140,0.0000000365,Very Low,1783.4601730298,0.0000002512,1.9089527377,1785.3691257675,12.9766248366,Relatively Moderate,13.8743441858,Relatively Moderate,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0477752648,0.0001095931,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000000125,,0.0000024799
50,T15003002800,Hawaii,HI,15,Honolulu,County,3,15003,2800,15003002800,3678,390551000.0000000000,0.0000000000,0.8899299747,13.2762476830,Relatively Low,36.7437000784,24.5398773006,14.0640371335,Relatively Low,33.7961753667,23.9263803681,140020.6050686634,112962.0459764169,0.0035603367,27058.5590922465,0.0000000000,30.1664721027,Relatively Low,32.6375400104,35.8974358974,-1.0800000000,51.4027980000,Relatively Low,13.6493795737,60.0000000000,2.5701399000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000478451,0.0000000048,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,287.0000000000,15.9444444440,0.0000000000,0.0000000000,0.0000004090,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0029738504,390551000.0000000000,3678.0000000000,27952800000.0000000000,28343351000.0000000000,0.0167507621,0.0001397988,Very Low,110889.3000000000,0.0035064400,26648.9440000000,137538.2440000000,21.3755062984,Relatively Moderate,22.7546054907,Relatively Moderate,1.0000000000,0.0312500000,390551000.0000000000,3678.0000000000,27952800000.0000000000,0.0000000000,28343351000.0000000000,0.0000180224,0.0000000210,0.0002275779,Very Low,219.9577130893,0.0000024144,18.3495625376,0.0000000000,238.3072756269,3.9848094602,Very Low,4.0116038184,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0100000000,390551000.0000000000,3678.0000000000,27952800000.0000000000,0.0000000000,28343351000.0000000000,0.0000255348,0.0000003276,0.0002460797,Very Low,99.7262460104,0.0000120505,91.5841356063,0.0000000000,191.3103816168,2.3399281779,Very Low,3.0015662033,Very Low,0.0000000000,0.0148900000,390551000.0000000000,3678.0000000000,27952800000.0000000000,28343351000.0000000000,0.0000058883,0.0000002640,Very Low,34.2422528910,0.0000144581,109.8813386880,144.1235915790,7.1484279941,Very Low,5.5701767866,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0000000000,6.3750000000,2748002.7474915790,22.2384646731,169012331.5158708692,0.0000000000,171760334.2633624673,0.0000678921,0.0000000585,0.0005670888,Very Low,1189.3685500276,0.0000082941,63.0349139248,0.0000000000,1252.4034639523,4.8676441341,Very Low,4.3159429990,Very Low,1.0000000000,0.0312500000,390551000.0000000000,3678.0000000000,27952800000.0000000000,0.0000000000,28343351000.0000000000,0.0000002273,0.0000001163,0.0000219536,Very Low,2.7736121151,0.0000133725,101.6309064222,0.0000000000,104.4045185373,4.5437174273,Very Low,4.9018147862,Very Low,0.0000000000,0.0000297603,390551000.0000000000,3678.0000000000,27952800000.0000000000,0.0000000000,28343351000.0000000000,0.0453136570,0.0000302136,0.0314801129,Very Low,526.6776022834,0.0000033071,25.1342350676,0.0000000000,551.8118373510,5.8436061145,Very Low,6.5323723162,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0015593140,0.0000000365,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0477752648,0.0001095931,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000000147,,0.0000053072
51,T15003003000,Hawaii,HI,15,Honolulu,County,3,15003,3000,15003003000,4321,523641000.0000000000,0.0000000000,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.0000000000,28.7304303328,Relatively Low,20.3526386343,23.6467236467,-1.9780000000,51.4027980000,Relatively Low,13.6493795737,60.0000000000,2.5701399000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0020000000,251966.9345973358,2.0791899878,15801843.9071857799,16053810.8417831156,0.0000615999,0.0000000062,Very Low,0.0310422895,0.0000000000,0.0001956324,0.0312379219,0.1038087327,Very Low,0.0933066629,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,154.0000000000,8.5555555550,0.0000000000,0.0000000000,0.0000004090,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0029729141,523641000.0000000000,4321.0000000000,32839600000.0000000000,33363241000.0000000000,0.0167507621,0.0001397988,Very Low,166244.1000000000,0.0041246100,31347.0360000000,197591.1360000000,24.1192836215,Relatively Moderate,24.4531556460,Relatively Moderate,1.0000000000,0.0312500000,523641000.0000000000,4321.0000000000,32839600000.0000000000,0.0000000000,33363241000.0000000000,0.0000180224,0.0000000210,0.0002275779,Very Low,294.9137931729,0.0000028365,21.5574931274,0.0000000000,316.4712863003,4.3799911192,Very Low,4.1995360505,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0100000000,523641000.0000000000,4321.0000000000,32839600000.0000000000,0.0000000000,33363241000.0000000000,0.0000255348,0.0000003276,0.0002460797,Very Low,133.7104531473,0.0000141573,107.5951739954,0.0000000000,241.3056271427,2.5282042934,Very Low,3.0886960415,Very Low,0.0000000000,0.0148900000,523641000.0000000000,4321.0000000000,32839600000.0000000000,33363241000.0000000000,0.0000058883,0.0000002640,Very Low,45.9111551273,0.0000169857,129.0911540160,175.0023091433,7.6262923178,Very Low,5.6596488655,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0000000000,6.3750000000,7892777.5263804989,56.2731231073,427675735.6151204705,0.0000000000,435568513.1415009499,0.0000678921,0.0000000585,0.0005670888,Very Low,3416.0887833210,0.0000209876,159.5061315374,0.0000000000,3575.5949148584,6.9053681457,Relatively Low,5.8312454850,Relatively Low,1.0000000000,0.0312500000,523641000.0000000000,4321.0000000000,32839600000.0000000000,0.0000000000,33363241000.0000000000,0.0000002273,0.0000001163,0.0000219536,Very Low,3.7187896627,0.0000157103,119.3983541696,0.0000000000,123.1171438323,4.8004033170,Very Low,4.9322027091,Very Low,0.0000000000,0.0000201545,523641000.0000000000,4321.0000000000,32839600000.0000000000,0.0000000000,33363241000.0000000000,0.0701101201,0.0000467470,0.0314801129,Very Low,739.9232037191,0.0000040711,30.9402715912,0.0000000000,770.8634753103,6.5324549018,Very Low,6.9548406651,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0015593140,0.0000000365,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0477752648,0.0001095931,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000000173,,0.0000088501
52,T15003003101,Hawaii,HI,15,Honolulu,County,3,15003,3101,15003003101,3687,492314000.0000000000,0.0000000000,2.0789056010,16.6138274719,Relatively Low,55.9534775018,51.8404907975,16.7794100011,Relatively Low,49.9511953697,55.2147239264,237789.1283950369,204090.5852518204,0.0044340188,33698.5431432164,0.0000000000,31.6408936082,Relatively Moderate,48.2340710749,50.1424501425,-0.1580000000,51.4027980000,Relatively Low,13.6493795737,60.0000000000,2.5701399000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0020000000,4891339.6375649422,36.6318431808,278402008.1739190221,283293347.8114840388,0.0000981502,0.0000000102,Very Low,0.9601719971,0.0000000007,0.0056849324,0.9658569295,0.3258197788,Very Low,0.3225245827,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,287.0000000000,15.9444444440,0.0000000000,0.0000000000,0.0000004090,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0029680742,492314000.0000000000,3687.0000000000,28021200000.0000000000,28513514000.0000000000,0.0167507621,0.0001397988,Very Low,190812.3000000000,0.0042947900,32640.4040000000,223452.7040000000,25.1287251725,Relatively High,28.0574096887,Relatively Moderate,1.0000000000,0.0312500000,492314000.0000000000,3687.0000000000,28021200000.0000000000,0.0000000000,28513514000.0000000000,0.0000180224,0.0000000210,0.0002275779,Very Low,277.2704757248,0.0000024203,18.3944635877,0.0000000000,295.6649393125,4.2818199548,Very Low,4.5212976106,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0100000000,492314000.0000000000,3687.0000000000,28021200000.0000000000,0.0000000000,28513514000.0000000000,0.0000255348,0.0000003276,0.0002460797,Very Low,125.7111800466,0.0000120800,91.8082403427,0.0000000000,217.5194203893,2.4422438638,Very Low,3.2859325425,Very Low,0.0000000000,0.0148900000,492314000.0000000000,3687.0000000000,28021200000.0000000000,28513514000.0000000000,0.0000058883,0.0000002640,Very Low,43.1645047377,0.0000144934,110.1502163520,153.3147210897,7.2972653803,Very Low,5.9640707912,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.0000000000,6.3750000000,28382955.0204525515,252.3501170301,1917860889.4284636974,0.0000000000,1946243844.4489159584,0.0000678921,0.0000000585,0.0005670888,Very Low,12284.4833721466,0.0000941166,715.2862456870,0.0000000000,12999.7696178336,10.6181604917,Relatively Low,9.8748471608,Relatively Low,1.0000000000,0.0312500000,492314000.0000000000,3687.0000000000,28021200000.0000000000,0.0000000000,28513514000.0000000000,0.0000002273,0.0000001163,0.0000219536,Very Low,3.4963118130,0.0000134052,101.8795954253,0.0000000000,105.3759072384,4.5577656620,Very Low,5.1572928361,Very Low,0.0000000000,0.0000568811,492314000.0000000000,3687.0000000000,28021200000.0000000000,0.0000000000,28513514000.0000000000,0.0193976418,0.0000129337,0.0314801129,Very Low,543.1992353547,0.0000027125,20.6146968892,0.0000000000,563.8139322439,5.8856694150,Very Low,6.9010131938,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0015593140,0.0000000365,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0477752648,0.0001095931,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000000378,,0.0000269712
53,T15003003407,Hawaii,HI,15,Honolulu,County,3,15003,3407,15003003407,913,159228000.0000000000,0.0000000000,0.0477917056,18.3386697912,Relatively Moderate,64.3052557775,65.3374233129,12.1430194003,Very Low,21.8534761270,12.2699386503,90124.3205147800,80912.8216251666,0.0012120393,9211.4988896134,0.0000000000,48.2609182352,Very High,99.6593986814,100.0000000000,10.2350000000,51.4027980000,Relatively Low,13.6493795737,60.0000000000,2.5701399000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000478451,0.0000000048,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,154.0000000000,8.5555555550,0.0000000000,0.0000000000,0.0000004090,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0046333130,159228000.0000000000,913.0000000000,6938800000.0000000000,7098028000.0000000000,0.0167507621,0.0001397988,Very Low,80542.4000000000,0.0012006800,9125.1680000000,89667.5680000000,18.5347634922,Relatively Moderate,31.5653788500,Relatively High,1.0000000000,0.0312500000,159228000.0000000000,913.0000000000,6938800000.0000000000,0.0000000000,7098028000.0000000000,0.0000180224,0.0000000210,0.0002275779,Very Low,89.6769608555,0.0000005993,4.5549620980,0.0000000000,94.2319229535,2.9247885716,Very Low,4.7105976451,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0100000000,159228000.0000000000,913.0000000000,6938800000.0000000000,0.0000000000,7098028000.0000000000,0.0000255348,0.0000003276,0.0002460797,Very Low,40.6584817341,0.0000029913,22.7341804809,0.0000000000,63.3926622150,1.6192081391,Very Low,3.3229142555,Very Low,0.0000000000,0.0148900000,159228000.0000000000,913.0000000000,6938800000.0000000000,7098028000.0000000000,0.0000058883,0.0000002640,Very Low,13.9605978306,0.0000035890,27.2761452480,41.2367430786,4.7104273192,Very Low,5.8720506988,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000678921,0.0000000585,0.0005670888,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,1.0000000000,0.0312500000,159228000.0000000000,913.0000000000,6938800000.0000000000,0.0000000000,7098028000.0000000000,0.0000002273,0.0000001163,0.0000219536,Very Low,1.1308041968,0.0000033195,25.2281178794,0.0000000000,26.3589220762,2.8717553046,Very Low,4.9563740207,Very Low,0.0000000000,0.0000105528,159228000.0000000000,913.0000000000,6938800000.0000000000,0.0000000000,7098028000.0000000000,0.1339019955,0.0000892813,0.0314801129,Relatively Low,224.9947805496,0.0000008602,6.5374839071,0.0000000000,231.5322644568,4.3747620601,Very Low,7.8239142645,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0015593140,0.0000000365,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0477752648,0.0001095931,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000000124,,0.0000023264
54,T15003003501,Hawaii,HI,15,Honolulu,County,3,15003,3501,15003003501,2282,361961000.0000000000,0.0000000000,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.0000000000,39.7422161099,Relatively High,97.1001012229,95.4415954416,4.9080000000,51.4027980000,Relatively Low,13.6493795737,60.0000000000,2.5701399000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000478451,0.0000000048,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,154.0000000000,8.5555555550,0.0000000000,0.0000000000,0.0000004090,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0046333130,361961000.0000000000,2282.0000000000,17343200000.0000000000,17705161000.0000000000,0.0167507621,0.0001397988,Very Low,183464.6000000000,0.0024805400,18852.1040000000,202316.7040000000,24.3100488847,Relatively Moderate,34.0930840747,Relatively High,1.0000000000,0.0312500000,361961000.0000000000,2282.0000000000,17343200000.0000000000,0.0000000000,17705161000.0000000000,0.0000180224,0.0000000210,0.0002275779,Very Low,203.8558697479,0.0000014980,11.3849107421,0.0000000000,215.2407804900,3.8518554300,Very Low,5.1086719073,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0100000000,361961000.0000000000,2282.0000000000,17343200000.0000000000,0.0000000000,17705161000.0000000000,0.0000255348,0.0000003276,0.0002460797,Very Low,92.4258591891,0.0000074767,56.8230009390,0.0000000000,149.2488601282,2.1540710416,Very Low,3.6402648222,Very Low,0.0000000000,0.0148900000,361961000.0000000000,2282.0000000000,17343200000.0000000000,17705161000.0000000000,0.0000058883,0.0000002640,Very Low,31.7355738398,0.0000089705,68.1754254720,99.9109993118,6.3265938633,Very Low,6.4946528924,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000678921,0.0000000585,0.0005670888,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,1.0000000000,0.0312500000,361961000.0000000000,2282.0000000000,17343200000.0000000000,0.0000000000,17705161000.0000000000,0.0000002273,0.0000001163,0.0000219536,Very Low,2.5705718710,0.0000082969,63.0564786427,0.0000000000,65.6270505137,3.8922361200,Very Low,5.5318744949,Very Low,0.0000000000,0.0000105528,361961000.0000000000,2282.0000000000,17343200000.0000000000,0.0000000000,17705161000.0000000000,0.1339019955,0.0000892813,0.0314801129,Relatively Low,511.4636606785,0.0000021500,16.3401295467,0.0000000000,527.8037902252,5.7575992375,Very Low,8.4795135456,Very Low,0.0000000000,0.0045870000,55964729.5375511646,188.8993255307,1435634874.0330631733,1491599603.5706143379,0.0015593140,0.0000000365,Very Low,400.2918204270,0.0000000316,0.2404735047,400.5322939317,7.8849374944,Relatively Low,8.6322228692,Relatively Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0477752648,0.0001095931,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,November 2021,0.0000000124,,0.0000023264
55,T15003004600,Hawaii,HI,15,Honolulu,County,3,15003,4600,15003004600,3735,483204000.0000000000,17799.9354685802,2.6391245450,16.4638912986,Relatively Low,55.1767277526,50.0000000000,15.6406606485,Relatively Low,43.4856129449,41.1042944785,192587.1103315401,163440.9148912363,0.0038350010,29146.0077957004,0.1876446033,33.6382390098,Relatively Moderate,69.8861926518,68.0911680912,1.0910000000,51.4027980000,Relatively Low,13.6493795737,60.0000000000,2.5701399000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000478451,0.0000000048,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000021774,0.0000022062,0.0080465986,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000004090,No Rating,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,0.0029215956,483204000.0000000000,3735.0000000000,28386000000.0000000000,28869204000.0000000000,0.0167507621,0.0001397988,Very Low,162417.5000000000,0.0037890500,28796.7800000000,191214.2800000000,23.8569741112,Relatively Moderate,28.3189396515,Relatively Moderate,1.0000000000,0.0312500000,483204000.0000000000,3735.0000000000,28386000000.0000000000,17799.9354685802,28869221799.9354629517,0.0000180224,0.0000000210,0.0002275779,Very Low,272.1397379210,0.0000024518,18.6339358542,0.1265897750,290.9002635501,4.2586946040,Very Low,4.7807463515,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000016,0.0000001005,0.0000761839,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0100000000,483204000.0000000000,3735.0000000000,28386000000.0000000000,17799.9354685802,28869221799.9354629517,0.0000255348,0.0000003276,0.0002460797,Very Low,123.3849637492,0.0000122373,93.0034656035,0.0438020271,216.4322313799,2.4381681868,Very Low,3.4875286844,Very Low,0.0000000000,0.0148900000,483204000.0000000000,3735.0000000000,28386000000.0000000000,28869204000.0000000000,0.0000058883,0.0000002640,Very Low,42.3657693002,0.0000146821,111.5842305600,153.9499998602,7.3073305357,Very Low,6.3493009578,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000678921,0.0000000585,0.0005670888,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,1.0000000000,0.0312500000,483204000.0000000000,3735.0000000000,28386000000.0000000000,17799.9354685802,28869221799.9354629517,0.0000002273,0.0000001163,0.0000219536,Very Low,3.4316144840,0.0000135797,103.2059367729,0.0122116541,106.6497629110,4.5760579400,Very Low,5.5048542640,Very Low,0.0000000000,0.0000790165,483204000.0000000000,3735.0000000000,28386000000.0000000000,17799.9354685802,28869221799.9354629517,0.0152455823,0.0000101652,0.0035842084,Very Low,582.0928057819,0.0000030000,22.8002269098,0.0050411471,604.8980738388,6.0252906004,Very Low,7.5107533908,Very Low,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0015593140,0.0000000365,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0477752648,0.0001095931,No Rating,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,No Expected Annual Losses,0.0000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000000,0.0000000851,0.0000001057,0.0000000000,No ,,,,,,,,,,,0.0000000123,0.0000105419,0.0000021180
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

1 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)
2 1 T15007040300 T06001020100 Hawaii HI 15 Kauai County 7 15007 40300 15007040300 06001020100 8385 912658000.0000000000 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.1330000000 -0.133 52.5091980000 52.509198 Relatively Low 23.5125676106 100.0000000000 100.0 2.6254599000 2.6254599 Not Applicable Not Applicable Not Applicable 0.0699710120 0.069971012 202742385.5800542533 202742385.58005425 1862.6855876887 14156410466.4337959290 14156410466.433796 14359152852.0138511658 14359152852.013851 0.0000357579 3.57579e-05 0.0000000020 2e-09 Very Low 507.2650077305 0.0000002606 2.606e-07 1.9802850905 509.2452928210 509.245292821 2.6321796000 2.6321796 Very Low 2.5538810410 2.553881041 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0030589604 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0005345855 912658000.0000000000 912658000.0 8385.0000000000 8385.0 63726000000.0000000000 63726000000.0 64638658000.0000000000 64638658000.00001 0.0167507621 0.0001397988 Very Low 22512.2000000000 22512.2 0.0001541200 0.00015412 1171.3120000000 1171.312 23683.5120000000 23683.512 11.8920653303 Relatively Low 13.0147002820 13.014700282 Relatively Low 0.0000000000 0.0 0.0000000000 0.0 912658000.0000000000 912658000.0 8385.0000000000 8385.0 63726000000.0000000000 63726000000.0 147860.5647200878 64638805860.5647201538 64638805860.56472 0.0000180224 1.80224e-05 0.0000000760 7.6e-08 0.0002275779 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 2.0000000000 2.0 0.0343605913 912658000.0000000000 912658000.0 8385.0000000000 8385.0 63726000000.0000000000 63726000000.0 147860.5647200878 64638805860.5647201538 64638805860.56472 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 788.9305592758 0.0000968737 9.68737e-05 736.2401254130 736.240125413 1.3226671624 1526.4933518512 4.6757862953 Very Low 6.1662913066 Very Low 0.0000000000 0.0 0.0148900000 0.01489 912658000.0000000000 912658000.0 8385.0000000000 8385.0 63726000000.0000000000 63726000000.0 64638658000.0000000000 64638658000.00001 0.0000058883 5.8883e-06 0.0000028944 2.8944e-06 Relatively Low 80.0189118426 0.0003613770 0.000361377 2746.4650635800 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.0000000000 142.0 5.9166666660 5.916666666 59632790.0585851222 59632790.05858513 418.9266599156 3183842615.3584799767 3183842615.35848 51591.3125103788 3243526996.7295761108 3243526996.729576 0.0001804370 0.000180437 0.0000114831 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.0000000000 1.0 0.0312500000 0.03125 912658000.0000000000 912658000.0 8385.0000000000 8385.0 63726000000.0000000000 63726000000.0 147860.5647200878 64638805860.5647201538 64638805860.56472 0.0000032387 3.2387e-06 0.0000018297 1.8297e-06 0.0000727233 7.27233e-05 Very Low 92.3692287258 0.0004794348 3643.7043933928 0.3360282071 3736.4096503256 14.9734902768 Relatively Low 16.6070545485 Relatively Low 0.0000000000 0.0 0.0000653310 6.5331e-05 912658000.0000000000 912658000.0 8385.0000000000 8385.0 63726000000.0000000000 63726000000.0 147860.5647200878 64638805860.5647201538 64638805860.56472 0.0089662390 0.008966239 0.0000059784 5.9784e-06 0.0021079463 Very Low 534.6107152638 0.0000032750 3.275e-06 24.8896914625 0.0203625042 559.5207692305 5.8706925202 Very Low 6.7469108145 Very Low 7.0000000000 7.0 0.0319693090 0.031969309 198555247.5326173902 198555247.5326174 978.4678896234 7436355961.1380958557 7436355961.138096 7634911208.6707134247 7634911208.670712 0.0015593140 0.001559314 0.0000038734 3.8734e-06 Very Low 9898.0167648649 0.0001211641 920.8471781755 10818.8639430404 23.6580872265 Relatively High 20.2115884136 Relatively Moderate 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0005411070 0.000541107 0.0000037371 3.7371e-06 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000035067 3.5067e-06 0.0087782352 0.0000719506 6.6152e-05
3 2 T15001020100 T06007040300 Hawaii HI 15 Hawaii County 1 15001 20100 15001020100 06007040300 5213 409283000.0000000000 409283000.0 30161527.9142542519 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.0359926557 243454.0359926558 876.2067770047 33.3455935266 Relatively Moderate 67.0519519602 65.5270655271 0.9080000000 0.908 50.7751980000 50.775198 Relatively Low 9.3859370029 40.0000000000 40.0 2.5387599000 2.5387599 Not Applicable Not Applicable Not Applicable 0.0579710120 0.057971012 1082842.5920536572 13.7920666932 104819706.8679994941 104819706.8679995 105902549.4600531608 105902549.46005316 0.0000313713 3.13713e-05 0.0000000025 2.5e-09 Very Low 1.9692852387 0.0000000020 2e-09 0.0151413322 1.9844265710 1.984426571 0.4142077200 0.41420772 Very Low 0.4374499910 0.437449991 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000541 5.41e-08 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0099874373 409283000.0000000000 409283000.0 5213.0000000000 5213.0 39618800000.0000000000 39618800000.0 40028083000.0000000000 40028083000.0 0.0008505842 0.0000116917 1.16917e-05 Very Low 509627.8000000000 509627.8 0.0314233600 0.03142336 238817.5360000000 238817.536 748445.3360000000 748445.336 37.5977579168 Very High 44.7882310288 Very High 1.0000000000 1.0 0.0312500000 0.03125 409283000.0000000000 409283000.0 5213.0000000000 5213.0 39618800000.0000000000 39618800000.0 30161527.9142542407 30161527.91425424 40058244527.9142456055 40058244527.914246 0.0000180224 1.80224e-05 0.0000000760 7.6e-08 0.0002275779 Very Low 230.5075462219 0.0000123856 1.23856e-05 94.1304164907 214.5030827638 539.1410454765 5.2311349597 Very Low 5.8932581207 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0100000000 0.01 409283000.0000000000 409283000.0 5213.0000000000 5213.0 39618800000.0000000000 39618800000.0 30161527.9142542407 30161527.91425424 40058244527.9142456055 40058244527.914246 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 104.5094165573 0.0000170798 1.70798e-05 129.8064434247 74.2213962963 308.5372562783 2.7440512545 Very Low 3.9390063490 3.939006349 Very Low 0.0000000000 0.0 0.0148900000 0.01489 409283000.0000000000 409283000.0 5213.0000000000 5213.0 39618800000.0000000000 39618800000.0 40028083000.0000000000 40028083000.0 0.0000058883 5.8883e-06 0.0000013610 1.361e-06 Very Low 35.8846142757 0.0001056430 0.000105643 802.8864714520 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.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0006245044 0.0000038327 3.8327e-06 0.0003492485 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 1.0000000000 1.0 0.0312500000 0.03125 409283000.0000000000 409283000.0 5213.0000000000 5213.0 39618800000.0000000000 39618800000.0 30161527.9142542407 30161527.91425424 40058244527.9142456055 40058244527.914246 0.0000083601 8.3601e-06 0.0000003102 3.102e-07 0.0006212585 Very Low 106.9261414761 0.0000505411 5.05411e-05 384.1124266061 585.5657605523 1076.6043286345 9.8898625798 Very Low 11.9394659724 Relatively Low 0.0000000000 0.0 0.0006781468 409283000.0000000000 409283000.0 5213.0000000000 5213.0 39618800000.0000000000 39618800000.0 30161527.9142542519 30161527.914254252 40058244527.9142456055 40058244527.914246 0.0003985575 0.0000002657 2.657e-07 0.0000937001 9.37001e-05 Very Low 110.6212172132 0.0000009395 9.395e-07 7.1398535480 7.139853548 1.9165373923 119.6776081535 3.5109250974 Very Low 4.3917261130 4.391726113 Very Low 4.0000000000 4.0 0.0182681760 0.018268176 315888.8587620233 315888.8587620232 2.2117928286 16809625.4977076985 16809625.4977077 17125514.3564697206 17125514.35646972 0.0006654598 0.0000038734 3.8734e-06 Very Low 3.8401775301 0.0000001565 1.565e-07 1.1894532216 5.0296307517 1.8327269938 Very Low 1.7042906890 1.704290689 Very Low 4.0000000000 4.0 0.0204021391 407903840.5845158696 407903840.58451587 5201.9799937840 5201.979993784 39535047952.7582778931 39535047952.75828 39942951793.3427886963 39942951793.34279 0.0000000070 7e-09 0.0000040043 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.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000000358 3.58e-08 0.0000290505 2.90505e-05 0.0000014426 1.4426e-06
4 3 T15007040500 T06007040500 Hawaii HI 15 Kauai County 7 15007 40500 15007040500 06007040500 5943 1030806000.0000000000 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.7680000000 0.768 52.5091980000 52.509198 Relatively Low 23.5125676106 100.0000000000 100.0 2.6254599000 2.6254599 Not Applicable Not Applicable Not Applicable 0.0699710120 0.069971012 66594737.2848528028 66594737.2848528 383.9447225607 2917979891.4611377716 2917979891.461138 2984574628.7459902763 2984574628.7459903 0.0000063169 6.3169e-06 0.0000000003 3e-10 Very Low 29.4350693631 0.0000000083 8.3e-09 0.0628428106 29.4979121737 1.0184434918 Very Low 1.0330889632 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 56.0000000000 56.0 3.1111111110 3.111111111 0.0000000000 0.0 0.0000000000 0.0 0.0030589604 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0005860614 1030806000.0000000000 1030806000.0 5943.0000000000 5943.0 45166800000.0000000000 45166800000.0 46197606000.0000000000 46197606000.0 0.0167507621 0.0001397988 Very Low 120075.0000000000 120075.0 0.0011438300 0.00114383 8693.1080000000 8693.108 128768.1080000000 128768.108 20.9111551033 Relatively Moderate 23.9260247408 Relatively Moderate 0.0000000000 0.0 0.0000000000 0.0 1030806000.0000000000 1030806000.0 5943.0000000000 5943.0 45166800000.0000000000 45166800000.0 459516.6731830846 46198065516.6731948853 46198065516.673195 0.0000180224 1.80224e-05 0.0000000760 7.6e-08 0.0002275779 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 2.0000000000 2.0 0.0289855072 1030806000.0000000000 1030806000.0 5943.0000000000 5943.0 45166800000.0000000000 45166800000.0 459516.6731830846 46198065516.6731948853 46198065516.673195 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 762.9385502884 0.0000564393 5.64393e-05 428.9386307213 3.2776151707 1195.1547961804 4.3095415029 Very Low 5.9417734791 Very Low 0.0000000000 0.0 0.0148900000 0.01489 1030806000.0000000000 1030806000.0 5943.0000000000 5943.0 45166800000.0000000000 45166800000.0 46197606000.0000000000 46197606000.0 0.0000058883 5.8883e-06 0.0000028944 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.0000000000 142.0 5.9166666660 5.916666666 40606220.8832914308 40606220.88329143 293.0385094863 2227092672.0956783295 2227092672.0956783 530.1707312656 2267699423.1497006416 2267699423.1497006 0.0001804370 0.000180437 0.0000114831 1.14831e-05 0.0042466231 Very Low 43350.6205845832 0.0199094993 151312.1945288390 151312.194528839 13.3209920158 194676.1361054380 194676.136105438 26.1722849103 Relatively High 24.9423944801 Relatively High 1.0000000000 1.0 0.0312500000 0.03125 1030806000.0000000000 1030806000.0 5943.0000000000 5943.0 45166800000.0000000000 45166800000.0 459516.6731830846 46198065516.6731948853 46198065516.673195 0.0000032387 3.2387e-06 0.0000018297 1.8297e-06 0.0000727233 7.27233e-05 Very Low 104.3268729204 0.0003398069 2582.5325235382 1.0442984855 2687.9036949441 13.4166096589 Relatively Low 15.5570766452 Relatively Low 0.0000000000 0.0 0.0001223370 0.000122337 1030806000.0000000000 1030806000.0 5943.0000000000 5943.0 45166800000.0000000000 45166800000.0 459516.6731830848 46198065516.6731948853 46198065516.673195 0.0052856261 0.0000035243 3.5243e-06 0.0012426410 0.001242641 Very Low 666.5475081608 0.0000025623 2.5623e-06 19.4736228040 19.473622804 0.0698561550 0.069856155 686.0909871197 6.2836381633 Very Low 7.5500148235 Very Low 9.0000000000 9.0 0.0411033970 0.041103397 42337272.9888006300 42337272.98880063 137.6534442030 137.653444203 1046166175.9429297447 1046166175.9429299 1088503448.9317302704 1088503448.9317303 0.0015593140 0.001559314 0.0000038734 3.8734e-06 Very Low 2713.5270992744 0.0000219159 2.19159e-05 166.5606980512 2880.0877973256 15.2190537663 Relatively Moderate 13.5932751503 Relatively Moderate 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0005411070 0.000541107 0.0000037371 3.7371e-06 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000034603 3.4603e-06 0.0000385465 3.85465e-05 0.0000436593 4.36593e-05
5 4 T15001021010 Hawaii HI 15 Hawaii County 1 15001 21010 15001021010 7884 737712000.0000000000 737712000.0 8711454.3090733420 8711454.309073342 58.4401512286 43.1066279987 Very High 99.4459643383 98.1595092025 42.6674572964 Very High 99.2741170486 99.0797546012 3909779.1321200719 3909779.132120072 2582125.8111252696 0.1746532017 1327364.3330713348 288.9879234675 31.8903618889 Relatively Moderate 51.0956693021 54.4159544160 54.415954416 -0.0020000000 -0.002 50.7751980000 50.775198 Relatively Low 9.3859370029 40.0000000000 40.0 2.5387599000 2.5387599 Not Applicable Not Applicable Not Applicable 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000478451 4.78451e-05 0.0000000048 4.8e-09 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000541 5.41e-08 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0099998852 737712000.0000000000 737712000.0 7884.0000000000 7884.0 59918400000.0000000000 59918400000.0 60656112000.0000000000 60656112000.0 0.0008505842 0.0000116917 1.16917e-05 Very Low 2580741.3999999999 2580741.4 0.1736765400 0.17367654 1319941.7039999999 1319941.704 3900683.1039999998 3900683.104 65.1861714882 Very High 74.2640163391 Very High 1.0000000000 1.0 0.0312500000 0.03125 737712000.0000000000 737712000.0 7884.0000000000 7884.0 59918400000.0000000000 59918400000.0 8711454.3090733420 8711454.309073342 60664823454.3090744019 60664823454.309074 0.0000180224 1.80224e-05 0.0000000760 7.6e-08 0.0002275779 Very Low 415.4782459486 0.0000187316 1.87316e-05 142.3602922696 61.9542156517 619.7927538699 5.4799587665 Very Low 5.9041560145 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0269344664 737712000.0000000000 737712000.0 7884.0000000000 7884.0 59918400000.0000000000 59918400000.0 8711454.3090733420 8711454.309073342 60664823454.3090744019 60664823454.309074 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 473.5051910310 473.505191031 0.0000651127 6.51127e-05 494.8567057547 57.2461948490 57.246194849 1025.6080916347 4.0952789981 Very Low 5.6221049906 Very Low 0.0000000000 0.0 0.0148900000 0.01489 737712000.0000000000 737712000.0 7884.0000000000 7884.0 59918400000.0000000000 59918400000.0 60656112000.0000000000 60656112000.0 0.0000058883 5.8883e-06 0.0000013610 1.361e-06 Very Low 64.6802104328 0.0001597715 1214.2637523360 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.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0006245044 0.0000038327 3.8327e-06 0.0003492485 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 1.0000000000 1.0 0.0312500000 0.03125 737712000.0000000000 737712000.0 7884.0000000000 7884.0 59918400000.0000000000 59918400000.0 8711454.3090733420 8711454.309073342 60664823454.3090744019 60664823454.309074 0.0000083601 8.3601e-06 0.0000003102 3.102e-07 0.0006212585 Very Low 192.7289862509 0.0000764370 7.6437e-05 580.9212298706 169.1270211135 942.7772372349 9.4618177655 Very Low 10.9242145239 Very Low 1.0000000000 1.0 0.0004673635 737712000.0000000000 737712000.0 7884.0000000000 7884.0 59918400000.0000000000 59918400000.0 8711454.3090733420 8711454.309073342 60664823454.3090744019 60664823454.309074 0.0006900376 0.0000004601 4.601e-07 0.0001622266 Very Low 237.9109428670 237.910942867 0.0000016953 1.6953e-06 12.8843062101 0.6604918534 251.4557409305 4.4968090785 Very Low 5.3796416501 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0006654598 0.0000038734 3.8734e-06 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 4.0000000000 4.0 0.0207448000 0.0207448 737708710.8628113270 737708710.8628113 7883.9591351862 59918089427.4153671265 59918089427.41536 60655798138.2781677246 60655798138.27817 0.0000000070 7e-09 0.0000040043 4.0043e-06 Very Low 0.1075487398 0.0006549135 4977.3427848938 4977.4503336337 19.7224171343 Relatively Low 19.9022650650 19.902265065 Relatively Low Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000000408 4.08e-08 0.0000331733 3.31733e-05 0.0000018765 1.8765e-06
6 5 T15001021101 Hawaii HI 15 Hawaii County 1 15001 21101 15001021101 3531 365469000.0000000000 365469000.0 1115552.9463470120 1115552.946347012 41.0551206444 39.6369371498 Very High 99.0514029613 96.6257668712 35.4631324234 Relatively High 97.7453635601 94.4785276074 2244880.4514211570 2244880.451421157 1569603.2441089998 0.0888473124 675239.5743199890 675239.574319989 37.6329921689 35.2805718581 Relatively High 83.0000273575 82.3361823362 2.1180000000 2.118 50.7751980000 50.775198 Relatively Low 9.3859370029 40.0000000000 40.0 2.5387599000 2.5387599 Not Applicable Not Applicable Not Applicable 0.0679710120 0.067971012 53358423.6905883327 53358423.69058833 515.5255139327 3917993905.8884677887 3917993905.8884683 3971352329.5790557861 3971352329.5790553 0.0000009778 9.778e-07 0.0000000001 1e-10 Very Low 3.5462107144 0.0000000023 2.3e-09 0.0178004814 3.5640111958 0.5034846073 Very Low 0.5625920420 0.562592042 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000541 5.41e-08 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0099998512 365469000.0000000000 365469000.0 3531.0000000000 3531.0 26835600000.0000000000 26835600000.0 27201069000.0000000000 27201069000.0 0.0008505842 0.0000116917 1.16917e-05 Very Low 1549795.8000000000 1549795.8 0.0875910700 0.08759107 665692.1319999999 2215487.9320000000 2215487.932 53.9839983966 Very High 68.0399795668 Very High 1.0000000000 1.0 0.0312500000 0.03125 365469000.0000000000 365469000.0 3531.0000000000 3531.0 26835600000.0000000000 26835600000.0 1115552.9463470120 1115552.946347012 27202184552.9463424683 27202184552.946342 0.0000180224 1.80224e-05 0.0000000760 7.6e-08 0.0002275779 Very Low 205.8315698678 0.0000083893 8.3893e-06 63.7587762572 7.9336015953 277.5239477203 4.1923926160 4.192392616 Very Low 4.9971070139 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0289855072 365469000.0000000000 365469000.0 3531.0000000000 3531.0 26835600000.0000000000 26835600000.0 1115552.9463470120 1115552.946347012 27202184552.9463424683 27202184552.946342 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 270.4974447523 0.0000335331 3.35331e-05 254.8514731746 7.9569545004 533.3058724274 3.2931774779 Very Low 5.0015747332 Very Low 0.0000000000 0.0 0.0148900000 0.01489 365469000.0000000000 365469000.0 3531.0000000000 3531.0 26835600000.0000000000 26835600000.0 27201069000.0000000000 27201069000.0 0.0000058883 5.8883e-06 0.0000013610 1.361e-06 Very Low 32.0431439731 0.0000715567 7.15567e-05 543.8312163240 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.0000000000 142.0 5.9166666660 5.916666666 4828130.5279219840 4828130.527921984 35.1384012388 267051849.4150594473 267051849.41505945 0.0000000000 0.0 271879979.9429814219 271879979.9429814 0.0006245044 0.0000038327 3.8327e-06 0.0003492485 Very Low 17839.8663537918 0.0007968309 6055.9146131274 0.0000000000 0.0 23895.7809669192 13.0070200492 Relatively Moderate 13.6546608024 Relatively Moderate 1.0000000000 1.0 0.0312500000 0.03125 365469000.0000000000 365469000.0 3531.0000000000 3531.0 26835600000.0000000000 26835600000.0 1115552.9463470120 1115552.946347012 27202184552.9463424683 27202184552.946342 0.0000083601 8.3601e-06 0.0000003102 3.102e-07 0.0006212585 Very Low 95.4796314509 0.0000342338 3.42338e-05 260.1766695466 21.6577094941 377.3140104915 6.9727783560 6.972778356 Very Low 8.9063071715 Very Low 0.0000000000 0.0 0.0003634330 0.000363433 365469000.0000000000 365469000.0 3531.0000000000 3531.0 26835600000.0000000000 26835600000.0 1115552.9463470120 1115552.946347012 27202184552.9463424683 27202184552.946342 0.0008889061 0.0000005927 5.927e-07 0.0002089802 Very Low 118.0676167774 0.0000007606 7.606e-07 5.7804922284 0.0847265791 123.9328355849 3.5520526364 Very Low 4.7010550308 Very Low 13.0000000000 13.0 0.0593715740 0.059371574 31437177.7921413518 31437177.79214135 196.0173546829 1489731895.5901708603 1489731895.5901709 1521169073.3823122978 1521169073.3823123 0.0006654598 0.0000038734 3.8734e-06 Very Low 1242.0638448472 0.0000450783 4.50783e-05 342.5948426489 1584.6586874961 12.4708959075 Relatively Moderate 12.2698912376 Relatively Moderate 3.0000000000 3.0 0.0188028000 0.0188028 365467633.7354047298 365467633.73540473 3530.9854379618 26835489328.5099411011 26835489328.50994 27200956962.2453422546 27200956962.245342 0.0000000070 7e-09 0.0000040043 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.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000002677 2.677e-07 0.0000337348 3.37348e-05 0.0000507987 5.07987e-05
7 6 T15007040603 Hawaii HI 15 Kauai County 7 15007 40603 15007040603 2544 509507000.0000000000 509507000.0 3763051.3782403329 3763051.378240333 15.9289735326 23.8613675670 23.861367567 Relatively Moderate 84.6148558545 84.9693251534 22.2413255033 Relatively Moderate 75.9028856597 83.7423312883 553788.5026946985 159866.0053362669 159866.005336267 0.0465200191 353552.1448416797 353552.1448416796 40370.3525167520 40370.352516752 35.0215086434 Relatively Moderate 81.3161710393 79.7720797721 1.9560000000 1.956 52.5091980000 52.509198 Relatively Low 23.5125676106 100.0000000000 100.0 2.6254599000 2.6254599 Not Applicable Not Applicable Not Applicable 0.0699710120 0.069971012 59268365.9828897715 59268365.982889764 295.9306212878 2249072721.7871074677 2249072721.7871075 2308341087.7699966431 2308341087.7699966 0.0000020063 2.0063e-06 0.0000000001 1e-10 Very Low 8.3203647759 0.0000000014 1.4e-09 0.0109218690 0.010921869 8.3312866448 0.6682062552 Very Low 0.7166933897 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 119.0000000000 119.0 6.6111111110 6.611111111 1994468.3763317089 1994468.3763317089 0.0030589604 Relatively Moderate 40334.3876510453 40334.3876510453 9.3173396900 9.31733969 Relatively Moderate 10.0118819196 Relatively Moderate 0.0006288023 509507000.0000000000 509507000.0 2544.0000000000 2544.0 19334400000.0000000000 19334400000.0 19843907000.0000000000 19843907000.0 0.0167507621 0.0001397988 Very Low 29888.8000000000 29888.8 0.0002046000 0.0002046 1554.9600000000 1554.96 31443.7600000000 31443.76 13.0703357152 Relatively Low 15.8125293377 Relatively Low 0.0000000000 0.0 0.0000000000 0.0 509507000.0000000000 509507000.0 2544.0000000000 2544.0 19334400000.0000000000 19334400000.0 3763051.3782403329 3763051.378240333 19847670051.3782386780 19847670051.37824 0.0000180224 1.80224e-05 0.0000000760 7.6e-08 0.0002275779 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 2.0000000000 2.0 0.0289855072 509500026.7867159247 509500026.786716 2543.9789504995 19334240023.7962799072 19334240023.79628 3763051.3782403329 3763051.378240333 19847503101.9612274170 19847503101.961227 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 377.1002611632 0.0000241596 2.41596e-05 183.6127961654 26.8408852286 587.5539425572 3.4012529352 Very Low 4.9584510525 Very Low 0.0000000000 0.0 0.0148900000 0.01489 509507000.0000000000 509507000.0 2544.0000000000 2544.0 19334400000.0000000000 19334400000.0 19843907000.0000000000 19843907000.0 0.0000058883 5.8883e-06 0.0000028944 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.0000000000 142.0 5.9166666660 5.916666666 119566421.2469792366 119566421.24697922 677.5008183296 5149006219.3049850464 5149006219.304985 0.0000000000 0.0 5268572640.5519647598 5268572640.551965 0.0001804370 0.000180437 0.0000114831 1.14831e-05 0.0042466231 Very Low 127647.4010480262 0.0460304759 349831.6169989206 0.0000000000 0.0 477479.0180469467 35.2957296359 Relatively High 35.5664685650 35.566468565 Very High 1.0000000000 1.0 0.0312500000 0.03125 509507000.0000000000 509507000.0 2544.0000000000 2544.0 19334400000.0000000000 19334400000.0 3763051.3782403329 3763051.378240333 19847670051.3782386780 19847670051.37824 0.0000032387 3.2387e-06 0.0000018297 1.8297e-06 0.0000727233 7.27233e-05 Very Low 51.5667080334 0.0001454600 0.00014546 1105.4960019992 8.5519178837 1165.6146279163 10.1552327033 Very Low 12.4507973241 Relatively Low 0.0000000000 0.0 0.0002990171 509507000.0000000000 509507000.0 2544.0000000000 2544.0 19334400000.0000000000 19334400000.0 3763051.3782403329 3763051.378240333 19847670051.3782386780 19847670051.37824 0.0021625099 0.0000014419 1.4419e-06 0.0005084021 Very Low 329.4612383326 0.0000010968 1.0968e-06 8.3360081463 0.5720625944 338.3693090733 4.9645617720 4.964561772 Very Low 6.3071150891 Very Low 3.0000000000 3.0 0.0137011320 0.013701132 71084897.0818793178 71084897.08187932 86.3741073938 656443216.1930950880 656443216.1930951 727528113.2749742270 727528113.2749742 0.0015593140 0.001559314 0.0000038734 3.8734e-06 Relatively Low 1518.6837843730 1518.683784373 0.0000045839 4.5839e-06 34.8375621943 1553.5213465673 12.3886737842 Relatively Moderate 11.6999323670 11.699932367 Relatively Moderate 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0005411070 0.000541107 0.0000037371 3.7371e-06 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000182039 1.82039e-05 0.0107280896 0.0002521232
8 7 T15007040700 Hawaii HI 15 Kauai County 7 15007 40700 15007040700 8403 753840000.0000000000 953840000.0 4902899.0337728122 4902899.033772812 35.9094759697 14.5995882683 Relatively Low 44.7999010160 44.799901016 33.4355828221 14.2025996464 Relatively Low 34.6292910268 25.1533742331 144200.0701977621 43942.4487448400 43942.44874484 0.0128483788 97647.6787717786 2609.9426811435 33.5566820719 Relatively Moderate 69.0887204881 66.9515669516 1.0400000000 1.04 52.5091980000 52.509198 Relatively Low 23.5125676106 100.0000000000 100.0 2.6254599000 2.6254599 Not Applicable Not Applicable Not Applicable 0.0699710120 0.069971012 7924120.2167008780 7924120.216700878 88.3295953796 671304924.8847564459 671304924.8847564 679229045.1014572382 679229045.1014572 0.0000171347 1.71347e-05 0.0000000010 1e-09 Very Low 9.5004950424 0.0000000064 6.4e-09 0.0483633348 9.5488583772 0.6992894806 Very Low 0.7186609050 0.718660905 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 56.0000000000 56.0 3.1111111110 3.111111111 0.0000000000 0.0 0.0000000000 0.0 0.0030589604 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0004179280 0.000417928 753840000.0000000000 753840000.0 8403.0000000000 8403.0 63862800000.0000000000 63862800000.0 64616640000.0000000000 64616640000.0 0.0167507621 0.0001397988 Very Low 22605.7000000000 22605.7 0.0002655400 0.00026554 2018.1040000000 2018.104 24623.8040000000 24623.804 12.0474084201 Relatively Low 13.9653684416 Relatively Low 0.0000000000 0.0 0.0000000000 0.0 753840000.0000000000 753840000.0 8403.0000000000 8403.0 63862800000.0000000000 63862800000.0 4902899.0337728094 4902899.033772809 64621542899.0337677002 64621542899.03377 0.0000180224 1.80224e-05 0.0000000760 7.6e-08 0.0002275779 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 2.0000000000 2.0 0.0367917638 753839838.3895446062 753839838.3895446 8402.9987506390 8402.998750639 63862790504.8567352295 63862790504.856735 4902899.0337728094 4902899.033772809 64621533242.2800445557 64621533242.28005 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 565.9880891858 0.0000806355 8.06355e-05 612.8295337298 35.4917036305 1214.3093265461 4.3324423408 Very Low 6.0517928671 Very Low 0.0000000000 0.0 0.0148900000 0.01489 753840000.0000000000 753840000.0 8403.0000000000 8403.0 63862800000.0000000000 63862800000.0 64616640000.0000000000 64616640000.0 0.0000058883 5.8883e-06 0.0000028944 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.0000000000 142.0 5.9166666660 5.916666666 17435799.6852873713 17435799.68528737 171.1495864487 1300736857.0098330975 1300736857.009833 101991.5773982118 1318274648.2725186348 1318274648.2725186 0.0001804370 0.000180437 0.0000114831 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.0000000000 1.0 0.0312500000 0.03125 753840000.0000000000 753840000.0 8403.0000000000 8403.0 63862800000.0000000000 63862800000.0 4902899.0337728094 4902899.033772809 64621542899.0337677002 64621542899.03377 0.0000032387 3.2387e-06 0.0000018297 1.8297e-06 0.0000727233 7.27233e-05 Very Low 76.2954133774 0.0004804640 0.000480464 3651.5262990207 11.1423378834 3738.9640502815 14.9769017130 14.976901713 Relatively Low 17.5943580840 17.594358084 Relatively Low 0.0000000000 0.0 0.0005599395 753840000.0000000000 753840000.0 8403.0000000000 8403.0 63862800000.0000000000 63862800000.0 4902899.0337728122 4902899.033772812 64621542899.0337677002 64621542899.03377 0.0010585776 0.0000007058 7.058e-07 0.0002488696 Very Low 446.8306321093 0.0000033210 3.321e-06 25.2397457391 0.6832284494 472.7536062978 5.5500327704 Very Low 6.7560542776 Very Low 18.0000000000 18.0 0.0822067950 0.082206795 12152864.1611397993 12152864.1611398 88.2036899901 670348043.9244705439 670348043.9244705 682500908.0856103897 682500908.0856104 0.0015593140 0.001559314 0.0000038734 3.8734e-06 Very Low 1557.8295108863 0.0000280859 2.80859e-05 213.4529715432 1771.2824824295 12.9424059626 Relatively Moderate 11.7116400138 Relatively Moderate 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0005411070 0.000541107 0.0000037371 3.7371e-06 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000014941 1.4941e-06 0.0005323264 0.0000262376 2.07361e-05
9 8 T15009030100 Hawaii HI 15 Maui County 9 15009 30100 15009030100 2291 368239000.0000000000 368239000.0 644114.4382293100 644114.43822931 214.3878544386 15.5323735316 Relatively Low 50.1986554668 40.7975460123 16.2238215839 Relatively Low 46.8895640578 49.0797546012 214942.0674188060 214942.067418806 186581.2187114685 0.0036972718 28099.2660221777 261.5826851598 30.8317208514 Relatively Low 39.4153694635 40.1709401709 -0.6640000000 -0.664 51.8016000000 51.8016 Relatively Low 16.9583200764 80.0000000000 80.0 2.5900800000 2.59008 Not Applicable Not Applicable Not Applicable 0.0699710120 0.069971012 50139595.9945486337 50139595.99454863 311.9436410144 2370771671.7096304893 2370771671.7096305 2420911267.7041788101 2420911267.704179 0.0000003070 3.07e-07 0.0000000000 0.0 Very Low 1.0772166727 0.0000000011 1.1e-09 0.0081382716 1.0853549442 0.3387378870 0.338737887 Very Low 0.3242214636 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 427.0000000000 427.0 23.7222222220 23.722222222 0.0000000000 0.0 0.0000000000 0.0 0.0000001625 1.625e-07 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0071038122 368239000.0000000000 368239000.0 2291.0000000000 2291.0 17411600000.0000000000 17411600000.0 17779839000.0000000000 17779839000.0 0.0008599048 0.0000075108 7.5108e-06 Very Low 185778.4000000000 185778.4 0.0035934900 0.00359349 27310.5240000000 27310.524 213088.9240000000 213088.924 24.7340676281 Relatively High 26.7033206855 Relatively Moderate 1.0000000000 1.0 0.0312500000 0.03125 368239000.0000000000 368239000.0 2291.0000000000 2291.0 17411600000.0000000000 17411600000.0 644114.4382293099 17780483114.4382286072 17780483114.43823 0.0000180224 1.80224e-05 0.0000000210 2.1e-08 0.0002275779 Very Low 207.3916295405 0.0000015057 1.5057e-06 11.4431512000 11.4431512 4.5808200780 4.580820078 223.4156008185 3.9000151241 Very Low 3.9819297582 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0100000000 0.01 368239000.0000000000 368239000.0 2291.0000000000 2291.0 17411600000.0000000000 17411600000.0 644114.4382293099 17780483114.4382286072 17780483114.43823 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 94.0289311886 0.0000075062 7.5062e-06 57.0471056754 1.5850348535 152.6610717175 2.1703633660 2.170363366 Very Low 2.8235447615 Very Low 0.0000000000 0.0 0.0148900000 0.01489 368239000.0000000000 368239000.0 2291.0000000000 2291.0 17411600000.0000000000 17411600000.0 17779839000.0000000000 17779839000.0 0.0000058883 5.8883e-06 0.0000016270 1.627e-06 Relatively Low 32.2860086451 0.0000555018 5.55018e-05 421.8139439480 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.0000000000 107.0 4.4583333330 4.458333333 25.0001805198 0.0001620382 1231.4903737514 13472.8923938542 14729.3829481254 0.0000305947 3.05947e-05 0.0000027267 2.7267e-06 0.0042466231 Relatively Low 0.0034100604 0.0000000020 2e-09 0.0149708011 255.0804028339 255.0987836954 2.8640034011 Very Low 2.5754150950 2.575415095 Very Low 1.0000000000 1.0 0.0312500000 0.03125 368239000.0000000000 368239000.0 2291.0000000000 2291.0 17411600000.0000000000 17411600000.0 644114.4382293099 17780483114.4382286072 17780483114.43823 0.0000005132 5.132e-07 0.0000000835 8.35e-08 0.0000133875 1.33875e-05 Very Low 5.9052638179 0.0000059750 5.975e-06 45.4103272432 0.2694722287 51.5850632898 3.5920816990 3.592081699 Very Low 3.9301453807 Very Low 0.0000000000 0.0 0.0024581721 368239000.0000000000 368239000.0 2291.0000000000 2291.0 17411600000.0000000000 17411600000.0 644114.4382293100 644114.43822931 17780483114.4382286072 17780483114.43823 0.0001798702 0.0000001199 1.199e-07 0.0000422872 4.22872e-05 Very Low 162.8175922584 0.0000006754 6.754e-07 5.1331444622 0.0669551230 0.066955123 168.0176918435 3.9312947106 Very Low 4.4567490456 Very Low 6.0000000000 6.0 0.0274022650 0.027402265 14124383.3924189322 14124383.392418932 90.8041015676 690111171.9139463902 690111171.9139464 704235555.3063653708 704235555.3063654 0.0007732141 0.0000000366 3.66e-08 Very Low 299.2648749055 0.0000000912 9.12e-08 0.6928697330 0.692869733 299.9577446384 7.1604299781 Relatively Low 6.0346593804 Relatively Low 1.0000000000 1.0 0.0035310000 0.003531 368238629.3887721896 368238629.3887722 2290.9968855822 17411576330.4244422913 17411576330.424442 17779814959.8132133484 17779814959.813213 0.0000000070 7e-09 0.0000040104 4.0104e-06 Very Low 0.0091377281 0.0000324420 3.2442e-05 246.5589966972 246.5681344253 7.2433056430 7.243305643 Very Low 6.9266931121 Very Low Insufficient Data Insufficient Data Insufficient Data 1.0000000000 1.0 0.0368471205 4945035.4689473873 4945035.468947387 9.3607227865 71141493.1772216111 71141493.17722161 290715.7155912937 76377244.3617603034 76377244.3617603 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 Very Low 0.0346466514 0.0000000815 8.15e-08 0.6193741462 0.0000000427 4.27e-08 0.6540208402 1.3817404111 Very Low 0.8046981705 Very Low November 2021 0.0000000311 3.11e-08 0.0004061121 0.0000013674 1.3674e-06
10 9 T15009030201 Hawaii HI 15 Maui County 9 15009 30201 15009030201 2453 240407000.0000000000 240407000.0 911133.6885541945 911133.6885541946 45.6037678430 45.603767843 16.0782655749 Relatively Low 53.1489297351 46.3190184049 16.5620580551 Relatively Low 48.7303922243 51.5337423313 228667.7111643000 228667.7111643 175591.2462281788 0.0069825353 53067.2684114386 9.1965246826 31.2634928758 Relatively Low 44.0524717533 45.8689458689 -0.3940000000 -0.394 51.8016000000 51.8016 Relatively Low 16.9583200764 80.0000000000 80.0 2.5900800000 2.59008 Not Applicable Not Applicable Not Applicable 0.0679710120 0.067971012 1123293.7247402107 11.4615610477 87107863.9623089433 87107863.96230894 88231157.6870491505 88231157.68704915 0.0002145287 0.0000000165 1.65e-08 Very Low 16.3795722727 0.0000000129 1.29e-08 0.0979067238 16.4774789966 0.8387581763 Very Low 0.8140563845 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 42.0000000000 42.0 2.3333333330 2.333333333 0.0000000000 0.0 0.0000000000 0.0 0.0000001625 1.625e-07 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0066172465 240407000.0000000000 240407000.0 2453.0000000000 2453.0 18642800000.0000000000 18642800000.0 18883207000.0000000000 18883207000.0 0.0008599048 0.0000075108 7.5108e-06 Very Low 175248.3000000000 175248.3 0.0068716000 0.0068716 52224.1600000000 52224.16 227472.4600000000 227472.46 25.2785131982 Relatively High 27.6733022248 Relatively Moderate 1.0000000000 1.0 0.0312500000 0.03125 240407000.0000000000 240407000.0 2453.0000000000 2453.0 18642800000.0000000000 18642800000.0 911133.6885541949 911133.6885541948 18884118133.6885528564 18884118133.688553 0.0000180224 1.80224e-05 0.0000000210 2.1e-08 0.0002275779 Very Low 135.3968468355 0.0000016121 1.6121e-06 12.2523133536 6.4798104909 154.1289706800 154.12897068 3.4460630452 Very Low 3.5677158209 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0100000000 0.01 240407000.0000000000 240407000.0 2453.0000000000 2453.0 18642800000.0000000000 18642800000.0 911133.6885541949 911133.6885541948 18884118133.6885528564 18884118133.688553 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 61.3873415370 61.387341537 0.0000080370 8.037e-06 61.0809909305 2.2421150138 124.7104474814 2.0288843577 Very Low 2.6764507281 Very Low 0.0000000000 0.0 0.0148900000 0.01489 240407000.0000000000 240407000.0 2453.0000000000 2453.0 18642800000.0000000000 18642800000.0 18883207000.0000000000 18883207000.0 0.0000058883 5.8883e-06 0.0000016270 1.627e-06 Relatively Low 21.0781109017 0.0000594265 5.94265e-05 451.6410320840 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.0000000000 107.0 4.4583333330 4.458333333 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000305947 3.05947e-05 0.0000027267 2.7267e-06 0.0042466231 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 1.0000000000 1.0 0.0312500000 0.03125 240407000.0000000000 240407000.0 2453.0000000000 2453.0 18642800000.0000000000 18642800000.0 911133.6885541949 911133.6885541948 18884118133.6885528564 18884118133.688553 0.0000005132 5.132e-07 0.0000000835 8.35e-08 0.0000133875 1.33875e-05 Very Low 3.8552862642 0.0000063975 6.3975e-06 48.6213586754 0.3811826146 52.8578275542 3.6213846227 Very Low 4.0176934337 Very Low 0.0000000000 0.0 0.0005103731 240407000.0000000000 240407000.0 2453.0000000000 2453.0 18642800000.0000000000 18642800000.0 911133.6885541945 911133.6885541946 18884118133.6885528564 18884118133.688553 0.0008544857 0.0000005697 5.697e-07 0.0002008880 0.000200888 Very Low 104.8430527576 0.0000007133 7.133e-07 5.4209693174 0.0934165632 110.3574386382 3.4173107124 Very Low 3.9282264255 Very Low 1.0000000000 1.0 0.0045670440 0.004567044 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0007732141 0.0000000366 3.66e-08 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 1.0000000000 1.0 0.0035310000 0.003531 240406941.1554738879 240406941.15547386 2452.9993801304 18642795288.9913101196 18642795288.99131 18883202230.1467857361 18883202230.146786 0.0000000070 7e-09 0.0000040104 4.0104e-06 Very Low 0.0059656242 0.0000347360 3.4736e-05 263.9938403539 263.9998059781 7.4101277885 Very Low 7.1854598150 7.185459815 Very Low Insufficient Data Insufficient Data Insufficient Data 1.0000000000 1.0 0.0106982003 7419.8231090135 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 7419.8231090135 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 Very Low 0.0000519859 5.19859e-05 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000519859 5.19859e-05 0.0594097511 Very Low 0.0350835894 Very Low November 2021 0.0000000311 3.11e-08 0.0000100935 1.00935e-05 0.0000014265 1.4265e-06
11 10 T15001021402 Hawaii HI 15 Hawaii County 1 15001 21402 15001021402 4025 425500000.0000000000 425500000.0 1383968.4585880421 1383968.458588042 16.1940325556 40.6895862222 Very High 99.1723834532 97.2392638037 37.6719247757 Relatively High 98.4849942947 96.0122699387 2691010.3460283098 2691010.34602831 1957068.2379162407 0.0965656564 733898.9884986160 733898.988498616 43.1196134532 34.0939983689 Relatively Moderate 74.0007660110 74.000766011 71.7948717949 1.3760000000 1.376 50.7751980000 50.775198 Relatively Low 9.3859370029 40.0000000000 40.0 2.5387599000 2.5387599 Not Applicable Not Applicable Not Applicable 0.0699710120 0.069971012 23588727.0303007476 23588727.030300748 223.1366070434 1695838213.5297291279 1695838213.5297291 1719426940.5600299835 1719426940.56003 0.0000029443 2.9443e-06 0.0000000002 2e-10 Very Low 4.8595807616 0.0000000034 3.4e-09 0.0257939510 0.025793951 4.8853747126 0.5592926832 Very Low 0.6039331168 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 161.0000000000 161.0 8.9444444440 8.944444444 1383968.4585880421 1383968.458588042 1383968.4585880421 1383968.458588042 0.0000000541 5.41e-08 Very Low 0.6696122276 0.6696122276 0.2376883514 Very Low 0.2571334241 Very Low 0.0099990439 425500000.0000000000 425500000.0 4025.0000000000 4025.0 30590000000.0000000000 30590000000.0 31015500000.0000000000 31015500000.000004 0.0008505842 0.0000116917 1.16917e-05 Very Low 1310569.6000000001 1310569.6 0.0711399900 0.07113999 540663.9240000000 540663.924 1851233.5240000000 1851233.524 50.8466471390 50.846647139 Very High 61.9303831851 Very High 1.0000000000 1.0 0.0312500000 0.03125 425500000.0000000000 425500000.0 4025.0000000000 4025.0 30590000000.0000000000 30590000000.0 1383968.4585880418 31016883968.4585876465 31016883968.458588 0.0000180224 1.80224e-05 0.0000000760 7.6e-08 0.0002275779 Very Low 239.6409352949 0.0000095630 9.563e-06 72.6788656012 9.8425219597 322.1623228558 4.4060901141 Very Low 5.0751910790 5.075191079 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 1.0000000000 1.0 0.0144927536 425500000.0000000000 425500000.0 4025.0000000000 4025.0 30590000000.0000000000 30590000000.0 1383968.4585880418 31016883968.4585876465 31016883968.458588 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 157.4643304159 0.0000191122 1.91122e-05 145.2530698864 4.9357469279 307.6531472301 2.7414277339 Very Low 4.0235624639 Very Low 0.0000000000 0.0 0.0148900000 0.01489 425500000.0000000000 425500000.0 4025.0000000000 4025.0 30590000000.0000000000 30590000000.0 31015500000.0000000000 31015500000.000004 0.0000058883 5.8883e-06 0.0000013610 1.361e-06 Very Low 37.3064685666 0.0000815678 8.15678e-05 619.9152211000 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.0000000000 142.0 5.9166666660 5.916666666 174713506.0100780129 174713506.010078 1099.3436364052 8355011636.6798896790 8355011636.67989 341.9328564726 8529725484.6228227615 8529725484.622824 0.0006245044 0.0000038327 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.0000000000 1.0 0.0312500000 0.03125 425500000.0000000000 425500000.0 4025.0000000000 4025.0 30590000000.0000000000 30590000000.0 1383968.4585880418 31016883968.4585876465 31016883968.458588 0.0000083601 8.3601e-06 0.0000003102 3.102e-07 0.0006212585 Very Low 111.1628706773 0.0000390232 3.90232e-05 296.5763508737 26.8688159761 434.6080375270 434.608037527 7.3092160828 Very Low 9.0220437817 Very Low 0.0000000000 0.0 0.0001368209 425500000.0000000000 425500000.0 4025.0000000000 4025.0 30590000000.0000000000 30590000000.0 1383968.4585880421 1383968.458588042 31016883968.4585876465 31016883968.458588 0.0021643504 0.0000014431 1.4431e-06 0.0005088348 Very Low 126.0026443038 0.0000007947 7.947e-07 6.0399428818 0.0963508431 132.1389380288 3.6287819112 Very Low 4.6410708199 Very Low 3.0000000000 3.0 0.0137011320 0.013701132 28350000.0000000000 28350000.0 217.0000000000 217.0 1649200000.0000000000 1649200000.0 1677550000.0000000000 1677550000.0 0.0006654598 0.0000038734 3.8734e-06 Very Low 258.4826038290 258.482603829 0.0000115162 1.15162e-05 87.5233472654 346.0059510944 7.5095445566 Relatively Low 7.1400125868 Relatively Low 4.0000000000 4.0 0.0207448000 0.0207448 425499989.0686448216 425499989.0686448 4024.9999387069 30589999534.1724624634 30589999534.172466 31015499523.2411155701 31015499523.241116 0.0000000070 7e-09 0.0000040043 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.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000062310 6.231e-06 0.0000311565 3.11565e-05 0.0015187781
12 11 T15001021800 Hawaii HI 15 Hawaii County 1 15001 21800 15001021800 6322 560173000.0000000000 560173000.0 1734823.6758895495 140.9697985177 26.9714927226 Relatively High 91.0611913829 88.0368098160 88.036809816 25.2568722397 Relatively Moderate 85.4191011699 88.0368098160 88.036809816 810962.2510357033 553967.9101830884 0.0338073298 256935.7064026278 58.6344499873 33.7086018582 Relatively Moderate 70.5085765874 69.5156695157 1.1350000000 1.135 50.7751980000 50.775198 Relatively Low 9.3859370029 40.0000000000 40.0 2.5387599000 2.5387599 Not Applicable Not Applicable Not Applicable 0.0699710120 0.069971012 51086751.8263611421 51086751.82636114 576.5548233247 4381816657.2675571442 4381816657.267557 4432903409.0939178467 4432903409.093918 0.0000003784 3.784e-07 0.0000000000 0.0 Very Low 1.3527161263 0.0000000015 1.5e-09 0.0117538785 1.3644700048 0.3655901691 Very Low 0.3903076103 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 1575.0000000000 1575.0 87.5000000000 87.5 1734823.6758895495 1734823.6758895495 0.0000000541 5.41e-08 Very Low 8.2112108805 8.2112108805 0.5481118294 Very Low 0.5862496728 Very Low 0.0097461622 560173000.0000000000 560173000.0 6322.0000000000 6322.0 48047200000.0000000000 48047200000.0 48607373000.0000000000 48607373000.0 0.0008505842 0.0000116917 1.16917e-05 Very Low 538363.3999999999 0.0318912200 0.03189122 242373.2720000000 242373.272 780736.6720000000 780736.672 38.1308756030 38.130875603 Very High 45.9177953623 Very High 1.0000000000 1.0 0.0312500000 0.03125 560173000.0000000000 560173000.0 6322.0000000000 6322.0 48047200000.0000000000 48047200000.0 1734823.6758895495 48609107823.6758956909 48609107823.675896 0.0000180224 1.80224e-05 0.0000000760 7.6e-08 0.0002275779 Very Low 315.4885585027 0.0000150205 1.50205e-05 114.1554753602 12.3377379153 441.9817717782 4.8958703896 Very Low 5.5756016541 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0100000000 0.01 560173000.0000000000 560173000.0 6322.0000000000 6322.0 48047200000.0000000000 48047200000.0 1734823.6758895495 48609107823.6758956909 48609107823.675896 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 143.0388103126 0.0000207133 2.07133e-05 157.4211270537 4.2690488333 304.7289861995 2.7327145569 Very Low 3.9654366815 Very Low 0.0000000000 0.0 0.0148900000 0.01489 560173000.0000000000 560173000.0 6322.0000000000 6322.0 48047200000.0000000000 48047200000.0 48607373000.0000000000 48607373000.0 0.0000058883 5.8883e-06 0.0000013610 1.361e-06 Very Low 49.1141631406 0.0001281172 973.6904416880 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.0000000000 142.0 5.9166666660 5.916666666 3744844.4892568006 53.3229072465 405254095.0732191205 405254095.0732191 0.0000000000 0.0 408998939.5624759197 408998939.5624759 0.0006245044 0.0000038327 3.8327e-06 0.0003492485 Very Low 13837.1414811001 0.0012091995 9189.9164965874 0.0000000000 0.0 23027.0579776875 12.8474484831 Relatively Low 12.8862073443 Relatively Moderate 1.0000000000 1.0 0.0312500000 0.03125 560173000.0000000000 560173000.0 6322.0000000000 6322.0 48047200000.0000000000 48047200000.0 1734823.6758895495 48609107823.6758956909 48609107823.675896 0.0000083601 8.3601e-06 0.0000003102 3.102e-07 0.0006212585 Very Low 146.3465070599 0.0000612931 6.12931e-05 465.8275006710 465.827500671 33.6804338323 645.8544415632 8.3409675847 Very Low 10.1791934049 Very Low 0.0000000000 0.0 0.0012868546 560173000.0000000000 560173000.0 6322.0000000000 6322.0 48047200000.0000000000 48047200000.0 1734823.6758895495 48609107823.6758956909 48609107823.675896 0.0002591576 0.0000001728 1.728e-07 0.0000609275 6.09275e-05 Very Low 186.8166860621 0.0000014058 1.4058e-06 10.6840235122 0.1360185260 0.136018526 197.6367281003 4.1499208704 Very Low 5.2476929578 Very Low 38.0000000000 38.0 0.1735476790 0.173547679 8010662.9609236429 8010662.960923643 89.7924700335 682422772.2545192242 682422772.2545192 690433435.2154427767 690433435.2154428 0.0006654598 0.0000038734 3.8734e-06 Very Low 925.1434444921 0.0000603605 6.03605e-05 458.7398439858 1383.8832884779 11.9202554920 11.920255492 Relatively Moderate 11.2055646697 Relatively Moderate 4.0000000000 4.0 0.0199142254 554917542.9647560120 554917542.964756 6278.2557780679 47714743913.3159942627 47714743913.315994 48269661456.2807464600 48269661456.28075 0.0000000070 7e-09 0.0000040043 4.0043e-06 Very Low 0.0678162917 0.0004199984 3191.9877398910 3191.987739891 3192.0555561827 17.0077935464 Relatively Low 18.1414348445 Relatively Low Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000002271 2.271e-07 0.0000337985 3.37985e-05 0.0000262049 2.62049e-05
13 12 T15009030402 Hawaii HI 15 Maui County 9 15009 30402 15009030402 8652 848387000.0000000000 848387000.0 6154260.5031788396 6154260.50317884 17.7870581334 22.7178018808 Relatively Moderate 81.2823932141 83.7423312883 23.9449676493 Relatively Moderate 81.7621908467 85.2760736196 691042.4090305660 691042.409030566 529396.7171852423 0.0212606987 161581.3101906748 64.3816546488 30.5534677690 30.553467769 Relatively Low 36.5264137007 37.6068376068 -0.8380000000 -0.838 51.8016000000 51.8016 Relatively Low 16.9583200764 80.0000000000 80.0 2.5900800000 2.59008 Not Applicable Not Applicable Not Applicable 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000478451 4.78451e-05 0.0000000048 4.8e-09 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 49.0000000000 49.0 2.7222222220 2.722222222 5275080.4312961483 5275080.431296148 5275080.4312961483 5275080.431296148 0.0000001625 1.625e-07 Very Low 2.3330989039 2.3330989039 0.3603389066 Very Low 0.3424150272 Very Low 0.0063848119 848387000.0000000000 848387000.0 8652.0000000000 8652.0 65755200000.0000000000 65755200000.0 66603587000.0000000000 66603587000.0 0.0008599048 0.0000075108 7.5108e-06 Very Low 528285.0000000000 528285.0 0.0208697400 0.02086974 158610.0240000000 158610.024 686895.0240000000 686895.024 36.5374899179 Very High 39.0904958889 Relatively High 1.0000000000 1.0 0.0312500000 0.03125 848387000.0000000000 848387000.0 8652.0000000000 8652.0 65755200000.0000000000 65755200000.0 6154260.5031788396 6154260.50317884 66609741260.5031814575 66609741260.50319 0.0000180224 1.80224e-05 0.0000000210 2.1e-08 0.0002275779 Very Low 477.8102330578 0.0000056862 5.6862e-06 43.2152528077 43.7679368836 564.7934227491 5.3128187837 Very Low 5.3754527661 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0100000000 0.01 848387000.0000000000 848387000.0 8652.0000000000 8652.0 65755200000.0000000000 65755200000.0 6154260.5031788396 6154260.50317884 66609741260.5031814575 66609741260.50319 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 216.6335527858 0.0000283473 2.83473e-05 215.4393532534 15.1443855568 447.2172915961 3.1054833874 Very Low 4.0036322682 Very Low 0.0000000000 0.0 0.0148900000 0.01489 848387000.0000000000 848387000.0 8652.0000000000 8652.0 65755200000.0000000000 65755200000.0 66603587000.0000000000 66603587000.0 0.0000058883 5.8883e-06 0.0000016270 1.627e-06 Relatively Low 74.3838377151 0.0002096036 1592.9874478560 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.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000305947 3.05947e-05 0.0000027267 2.7267e-06 0.0042466231 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 1.0000000000 1.0 0.0312500000 0.03125 848387000.0000000000 848387000.0 8652.0000000000 8652.0 65755200000.0000000000 65755200000.0 6154260.5031788396 6154260.50317884 66609741260.5031814575 66609741260.50319 0.0000005132 5.132e-07 0.0000000835 8.35e-08 0.0000133875 1.33875e-05 Very Low 13.6051560390 13.605156039 0.0000225649 2.25649e-05 171.4928639494 2.5747013191 187.6727213076 5.5246563276 Very Low 5.9900496315 Very Low 0.0000000000 0.0 0.0001715926 848387000.0000000000 848387000.0 8652.0000000000 8652.0 65755200000.0000000000 65755200000.0 6154260.5031788396 6154260.50317884 66609741260.5031814575 66609741260.50319 0.0022617831 0.0000015081 1.5081e-06 0.0005317410 0.000531741 Very Low 329.2633531826 0.0000022389 2.2389e-06 17.0158149667 0.5615319854 346.8407001347 5.0056515598 Very Low 5.6236951437 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0007732141 0.0000000366 3.66e-08 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 1.0000000000 1.0 0.0035310000 0.003531 848386998.4516693354 848386998.4516693 8651.9999778810 8651.999977881 65755199831.8955307007 65755199831.89553 66603586830.3472061157 66603586830.347206 0.0000000070 7e-09 0.0000040104 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.0000000000 1.0 0.0008568947 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000000310 3.1e-08 0.0000104613 1.04613e-05 0.0000013104 1.3104e-06
14 13 T15009030800 Hawaii HI 15 Maui County 9 15009 30800 15009030800 6907 606441000.0000000000 606441000.0 4986834.9241859820 4986834.924185982 54.8722617975 18.4696898486 Relatively Moderate 64.9060339020 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.1990000000 -1.199 51.8016000000 51.8016 Relatively Low 16.9583200764 80.0000000000 80.0 2.5900800000 2.59008 Not Applicable Not Applicable Not Applicable 0.0699710120 0.069971012 13759687.4874341562 13759687.487434156 156.7146045134 1191030994.3018012047 1191030994.3018012 1204790681.7892351151 1204790681.789235 0.0000014976 1.4976e-06 0.0000000002 2e-10 Very Low 1.4418462360 1.441846236 0.0000000020 2e-09 0.0148379347 1.4566841707 0.3736471249 Very Low 0.3477106940 0.347710694 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 546.0000000000 546.0 30.3333333330 30.333333333 0.0000000000 0.0 0.0000000000 0.0 0.0000001625 1.625e-07 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0058745704 606441000.0000000000 606441000.0 6907.0000000000 6907.0 52493200000.0000000000 52493200000.0 53099641000.0000000000 53099641000.0 0.0008599048 0.0000075108 7.5108e-06 Very Low 263409.7000000000 263409.7 0.0099512400 0.00995124 75629.4240000000 75629.424 339039.1240000000 339039.124 28.8752126234 Relatively High 30.3091204383 Relatively High 1.0000000000 1.0 0.0312500000 0.03125 606441000.0000000000 606441000.0 6907.0000000000 6907.0 52493200000.0000000000 52493200000.0 4986834.9241859792 4986834.924185979 53104627834.9241867065 53104627834.92419 0.0000180224 1.80224e-05 0.0000000210 2.1e-08 0.0002275779 Very Low 341.5466238236 0.0000045394 4.5394e-06 34.4992777558 35.4654269344 411.5113285137 4.7806732077 Very Low 4.7456398520 4.745639852 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0100000000 0.01 606441000.0000000000 606441000.0 6907.0000000000 6907.0 52493200000.0000000000 52493200000.0 4986834.9241859792 4986834.924185979 53104627834.9241867065 53104627834.92419 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 154.8532313496 0.0000226300 2.263e-05 171.9879349193 12.2715882373 339.1127545062 2.8318552857 Very Low 3.5818854928 Very Low 0.0000000000 0.0 0.0148900000 0.01489 606441000.0000000000 606441000.0 6907.0000000000 6907.0 52493200000.0000000000 52493200000.0 53099641000.0000000000 53099641000.0 0.0000058883 5.8883e-06 0.0000016270 1.627e-06 Relatively Low 53.1707922538 0.0001673292 1271.7018379960 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.0000000000 107.0 4.4583333330 4.458333333 42656810.4671784788 42656810.46717848 478.2321074611 3634564016.7041287422 3634564016.7041287 1051.9819381299 3677221879.1532449722 3677221879.153245 0.0000305947 3.05947e-05 0.0000027267 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.0000000000 1.0 0.0312500000 0.03125 606441000.0000000000 606441000.0 6907.0000000000 6907.0 52493200000.0000000000 52493200000.0 4986834.9241859792 4986834.924185979 53104627834.9241867065 53104627834.92419 0.0000005132 5.132e-07 0.0000000835 8.35e-08 0.0000133875 1.33875e-05 Very Low 9.7251896050 9.725189605 0.0000180138 1.80138e-05 136.9049019069 2.0862962253 148.7163877373 5.1123960729 Very Low 5.4383270008 Very Low 0.0000000000 0.0 0.0005655006 606441000.0000000000 606441000.0 6907.0000000000 6907.0 52493200000.0000000000 52493200000.0 4986834.9241859820 4986834.924185982 53104627834.9241867065 53104627834.92419 0.0006786466 0.0000004525 4.525e-07 0.0001595486 Very Low 232.7369430918 0.0000017674 1.7674e-06 13.4323833739 0.4499362609 246.6192627266 4.4677918235 Very Low 4.9244889733 Very Low 4.0000000000 4.0 0.0182681760 0.018268176 67033876.9577226788 67033876.95772268 771.7073878955 5864976148.0061273575 5864976148.006127 5932010024.9638500214 5932010024.96385 0.0007732141 0.0000000366 3.66e-08 Very Low 946.8677210060 946.867721006 0.0000005165 5.165e-07 3.9256132198 950.7933342258 10.5183540477 Relatively Low 8.6186622138 Relatively Low 1.0000000000 1.0 0.0035310000 0.003531 606440788.3682715893 606440788.3682716 6906.9980871584 52493185462.4039611816 52493185462.40396 53099626250.7722320557 53099626250.77223 0.0000000070 7e-09 0.0000040104 4.0104e-06 Very Low 0.0150486413 0.0000978075 9.78075e-05 743.3368981321 743.3519467734 10.4637974095 Relatively Low 9.7287461836 Very Low Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000008727 8.727e-07 0.0000140751 1.40751e-05 0.0000109028 1.09028e-05
15 14 T15003010201 Hawaii HI 15 Honolulu County 3 15003 10201 15003010201 5882 557874000.0000000000 557874000.0 2011289.8003964359 2011289.800396436 25.5816853094 17.5102524699 Relatively Low 60.4352548152 60.1226993865 18.0813496455 Relatively Low 56.9034493188 68.4049079755 297546.2422935000 297546.2422935 249181.3591556492 0.0063307538 48113.7288361653 251.1543016855 30.9468600579 Relatively Low 40.5985828797 41.5954415954 -0.5920000000 -0.592 51.4027980000 51.402798 Relatively Low 13.6493795737 60.0000000000 60.0 2.5701399000 2.5701399 Not Applicable Not Applicable Not Applicable 0.0699710120 0.069971012 135837044.0571999550 135837044.05719995 1432.2113831160 1432.211383116 10884806511.6815261841 10884806511.681526 11020643555.7387275696 11020643555.738728 0.0000716225 7.16225e-05 0.0000000065 6.5e-09 Very Low 680.7471428573 0.0000006562 6.562e-07 4.9869103498 685.7340532072 2.9066433749 Very Low 2.8141353282 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000004090 4.09e-07 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0029410400 0.00294104 557874000.0000000000 557874000.0 5882.0000000000 5882.0 44703200000.0000000000 44703200000.0 45261074000.0000000000 45261074000.0 0.0167507621 0.0001397988 Very Low 171686.6000000000 171686.6 0.0057326400 0.00573264 43568.0640000000 43568.064 215254.6640000000 215254.664 24.8175806479 Relatively High 27.1021914971 Relatively Moderate 1.0000000000 1.0 0.0312500000 0.03125 557874000.0000000000 557874000.0 5882.0000000000 5882.0 44703200000.0000000000 44703200000.0 2011289.8003964359 2011289.800396436 45263085289.8003997803 45263085289.8004 0.0000180224 1.80224e-05 0.0000000210 2.1e-08 0.0002275779 Very Low 314.1937652945 0.0000038612 3.8612e-06 29.3453308436 14.3039127110 14.303912711 357.8430088491 4.5630928384 Very Low 4.7126137782 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0144927536 557874000.0000000000 557874000.0 5882.0000000000 5882.0 44703200000.0000000000 44703200000.0 2011289.8003964359 2011289.800396436 45263085289.8003997803 45263085289.8004 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 206.4518351676 0.0000279300 2.793e-05 212.2679644878 7.1730084535 425.8928081089 3.0553182212 Very Low 4.0206282250 4.020628225 Very Low 0.0000000000 0.0 0.0148900000 0.01489 557874000.0000000000 557874000.0 5882.0000000000 5882.0 44703200000.0000000000 44703200000.0 45261074000.0000000000 45261074000.0 0.0000058883 5.8883e-06 0.0000002640 2.64e-07 Very Low 48.9125942306 0.0000231219 2.31219e-05 175.7264910720 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.0000000000 153.0 6.3750000000 6.375 136393741.7226257920 136393741.7226258 1377.3125391358 10467575297.4320640564 10467575297.432064 63035.3285035604 10604032074.4831962585 10604032074.483196 0.0000678921 6.78921e-05 0.0000000585 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.0000000000 1.0 0.0312500000 0.03125 557874000.0000000000 557874000.0 5882.0000000000 5882.0 44703200000.0000000000 44703200000.0 2011289.8003964359 2011289.800396436 45263085289.8003997803 45263085289.8004 0.0000002273 2.273e-07 0.0000001163 1.163e-07 0.0000219536 2.19536e-05 Very Low 3.9619053212 0.0000213858 2.13858e-05 162.5320803577 1.3798463170 1.379846317 167.8738319958 5.3231154392 Very Low 5.8911968528 Very Low 0.0000000000 0.0 0.0006143702 557874000.0000000000 557874000.0 5882.0000000000 5882.0 44703200000.0000000000 44703200000.0 2011289.8003964359 2011289.800396436 45263085289.8003997803 45263085289.8004 0.0014208892 0.0000009474 9.474e-07 0.0003340484 Very Low 486.9972150472 0.0000034236 3.4236e-06 26.0196966141 0.4127758112 513.4296874725 5.7048503468 Very Low 6.5422388715 Very Low 6.0000000000 6.0 0.0274022650 0.027402265 391320912.7946820855 391320912.7946821 4049.3333832863 30774933712.9758224487 30774933712.975822 31166254625.7705078125 31166254625.77051 0.0015593140 0.001559314 0.0000000365 3.65e-08 Very Low 16720.6473057280 16720.647305728 0.0000040520 4.052e-06 30.7948491780 30.794849178 16751.4421549060 16751.442154906 27.3696856628 Relatively High 23.3323622044 Relatively High 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0477752648 0.0001095931 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000001010 1.01e-07 0.0001248723 0.0001089388
16 15 T15007040604 Hawaii HI 15 Kauai County 7 15007 40604 15007040604 3139 376167000.0000000000 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.9447390011 77709.9447390012 0.0074864082 56896.7026370244 78.9053793707 33.5694753170 33.569475317 Relatively Moderate 69.2104615216 67.8062678063 1.0480000000 1.048 52.5091980000 52.509198 Relatively Low 23.5125676106 100.0000000000 100.0 2.6254599000 2.6254599 Not Applicable Not Applicable Not Applicable 0.0699710120 0.069971012 21860058.4640938416 21860058.46409384 182.4155854150 182.415585415 1386358449.1537222862 1386358449.1537223 1408218507.6178162098 1408218507.6178162 0.0000009083 9.083e-07 0.0000000000 0.0 Very Low 1.3892481407 0.0000000004 4e-10 0.0030759352 1.3923240759 0.3680611303 Very Low 0.3784012134 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 119.0000000000 119.0 6.6111111110 6.611111111 0.0000000000 0.0 0.0000000000 0.0 0.0030589604 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0004927213 376167000.0000000000 376167000.0 3139.0000000000 3139.0 23856400000.0000000000 23856400000.0 24232567000.0000000000 24232567000.0 0.0167507621 0.0001397988 Very Low 19693.2000000000 19693.2 0.0002150400 0.00021504 1634.3040000000 1634.304 21327.5040000000 21327.504 11.4838786799 Relatively Low 13.3171993296 Relatively Low 0.0000000000 0.0 0.0000000000 0.0 376167000.0000000000 376167000.0 3139.0000000000 3139.0 23856400000.0000000000 23856400000.0 807532.1623493504 24233374532.1623497009 24233374532.16235 0.0000180224 1.80224e-05 0.0000000760 7.6e-08 0.0002275779 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 2.0000000000 2.0 0.0289855072 376166995.4879204631 376166995.48792046 3138.9999875522 23856399905.3967666626 23856399905.396767 807532.1623493504 24233374433.0470390320 24233374433.04704 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 278.4154362740 278.415436274 0.0000298104 2.98104e-05 226.5587004029 5.7599208486 510.7340575256 3.2460456341 Very Low 4.5359830678 Very Low 0.0000000000 0.0 0.0148900000 0.01489 376167000.0000000000 376167000.0 3139.0000000000 3139.0 23856400000.0000000000 23856400000.0 24232567000.0000000000 24232567000.0 0.0000058883 5.8883e-06 0.0000028944 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.0000000000 142.0 5.9166666660 5.916666666 51663594.4435835779 51663594.44358358 101.8023609365 773697943.1173160076 773697943.117316 2833.2124537414 825364370.7733533382 825364370.7733533 0.0001804370 0.000180437 0.0000114831 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.0000000000 1.0 0.0312500000 0.03125 376167000.0000000000 376167000.0 3139.0000000000 3139.0 23856400000.0000000000 23856400000.0 807532.1623493504 24233374532.1623497009 24233374532.16235 0.0000032387 3.2387e-06 0.0000018297 1.8297e-06 0.0000727233 7.27233e-05 Very Low 38.0714962911 0.0001794807 1364.0534395736 1.8351991633 1403.9601350280 1403.960135028 10.8049594658 Very Low 12.6981405265 Relatively Low 0.0000000000 0.0 0.0001499326 376167000.0000000000 376167000.0 3139.0000000000 3139.0 23856400000.0000000000 23856400000.0 807532.1623493504 24233374532.1623497009 24233374532.16235 0.0043344678 0.0000028901 2.8901e-06 0.0010190254 Very Low 244.4626335188 0.0000013602 1.3602e-06 10.3373675981 0.1233788883 254.9233800052 4.5173854980 4.517385498 Very Low 5.5009638623 Very Low 4.0000000000 4.0 0.0182681760 0.018268176 79552220.5985832810 79552220.59858328 124.6270280907 947165413.4890952110 947165413.4890952 1026717634.0876784325 1026717634.0876783 0.0015593140 0.001559314 0.0000038734 3.8734e-06 Relatively Low 2266.1103815019 0.0000088186 8.8186e-06 67.0216568862 2333.1320383881 14.1872704626 Relatively Moderate 12.8430178115 Relatively Moderate 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0005411070 0.000541107 0.0000037371 3.7371e-06 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000023137 2.3137e-06 0.0000977117 9.77117e-05 0.0001482071
17 16 T15009030303 Hawaii HI 15 Maui County 9 15009 30303 15009030303 3567 1129413000.0000000000 1129413000.0 197696.7639710142 19.7369018049 25.6493645079 Relatively High 88.6938231210 88.693823121 86.8098159509 26.4505931648 Relatively Moderate 88.1315387894 88.9570552147 931468.5240622705 931468.5240622706 861544.7090485197 0.0092002397 69921.8217850408 1.9932287101 31.2283114516 Relatively Low 43.6448444724 45.0142450142 -0.4160000000 -0.416 51.8016000000 51.8016 Relatively Low 16.9583200764 80.0000000000 80.0 2.5900800000 2.59008 Not Applicable Not Applicable Not Applicable 0.0699710120 0.069971012 100790585.9537615627 100790585.95376156 318.3246696267 2419267489.1627006531 2419267489.1627007 2520058075.1164622307 2520058075.116462 0.0000180303 1.80303e-05 0.0000000002 2e-10 Very Low 127.1574129927 0.0000000042 4.2e-09 0.0319497717 127.1893627645 1.6576395812 Very Low 1.6070109389 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 1239.0000000000 1239.0 68.8333333330 68.833333333 0.0000000000 0.0 0.0000000000 0.0 0.0000001625 1.625e-07 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0069234740 0.006923474 1129413000.0000000000 1129413000.0 3567.0000000000 3567.0 27109200000.0000000000 27109200000.0 28238613000.0000000000 28238613000.0 0.0008599048 0.0000075108 7.5108e-06 Very Low 848650.0000000000 848650.0 0.0088365200 0.00883652 67157.5520000000 67157.552 915807.5520000000 915807.552 40.2139430552 Very High 43.9741165216 Very High 1.0000000000 1.0 0.0312500000 0.03125 1129413000.0000000000 1129413000.0 3567.0000000000 3567.0 27109200000.0000000000 27109200000.0 197696.7639710143 28238810696.7639694214 28238810696.76397 0.0000180224 1.80224e-05 0.0000000210 2.1e-08 0.0002275779 Very Low 636.0836372416 0.0000023443 2.3443e-06 17.8165518684 1.4059819995 655.3061711094 5.5826861321 Very Low 5.7732618037 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0100000000 0.01 1129413000.0000000000 1129413000.0 3567.0000000000 3567.0 27109200000.0000000000 27109200000.0 197696.7639710143 28238810696.7639694214 28238810696.76397 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 288.3928569774 0.0000116869 1.16869e-05 88.8201771908 0.4864915964 377.6995257646 2.9354306720 2.935430672 Very Low 3.8679850902 Very Low 0.0000000000 0.0 0.0148900000 0.01489 1129413000.0000000000 1129413000.0 3567.0000000000 3567.0 27109200000.0000000000 27109200000.0 28238613000.0000000000 28238613000.0 0.0000058883 5.8883e-06 0.0000016270 1.627e-06 Relatively Low 99.0232916173 0.0000864142 8.64142e-05 656.7482924760 656.748292476 755.7715840933 12.4192596738 Relatively Low 9.9408084200 9.94080842 Relatively Low Insufficient Data Insufficient Data Insufficient Data Insufficient Data Insufficient Data Insufficient Data 107.0000000000 107.0 4.4583333330 4.458333333 45816805.8582067415 45816805.85820674 16.6469757394 126517015.6197257191 126517015.61972572 0.0000000000 0.0 172333821.4779324830 172333821.47793248 0.0000305947 3.05947e-05 0.0000027267 2.7267e-06 0.0042466231 Very Low 6249.4779108493 0.0002023715 1538.0234492799 0.0000000000 0.0 7787.5013601292 8.9509702135 Relatively Low 8.1525703711 Relatively Low 1.0000000000 1.0 0.0312500000 0.03125 1129413000.0000000000 1129413000.0 3567.0000000000 3567.0 27109200000.0000000000 27109200000.0 197696.7639710143 28238810696.7639694214 28238810696.76397 0.0000005132 5.132e-07 0.0000000835 8.35e-08 0.0000133875 1.33875e-05 Very Low 18.1118287968 0.0000093029 9.3029e-06 70.7021550749 0.0827085754 88.8966924471 4.3065889072 Very Low 4.7725068917 Very Low 0.0000000000 0.0 0.0002380802 1129413000.0000000000 1129413000.0 3567.0000000000 3567.0 27109200000.0000000000 27109200000.0 197696.7639710142 28238810696.7639694214 28238810696.76397 0.0016308791 0.0000010874 1.0874e-06 0.0003834167 Very Low 438.5285864888 0.0000009235 9.235e-07 7.0183510621 0.0180465388 445.5649840897 5.4415290045 Very Low 6.2485052977 Very Low 4.0000000000 4.0 0.0182681760 0.018268176 356660523.6966123581 356660523.69661236 240.8813720156 1830698427.3183383942 1830698427.3183384 2187358951.0149507523 2187358951.0149508 0.0007732141 0.0000000366 3.66e-08 Relatively Low 5037.9054975204 0.0000001612 1.612e-07 1.2253441048 5039.1308416252 18.3388016795 Relatively Moderate 15.6543612096 Relatively Moderate 1.0000000000 1.0 0.0035310000 0.003531 1129412989.0734086037 1129412989.0734086 3566.9999767517 27109199823.3126258850 27109199823.312626 28238612812.3860282898 28238612812.38603 0.0000000070 7e-09 0.0000040104 4.0104e-06 Very Low 0.0280260353 0.0000505110 5.0511e-05 383.8835142123 383.9115402475 8.3952741740 8.395274174 Very Low 8.1315765739 Very Low Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000000878 8.78e-08 0.0000100823 1.00823e-05 0.0000069565 6.9565e-06
18 17 T15009030403 Hawaii HI 15 Maui County 9 15009 30403 15009030403 3269 383672000.0000000000 383672000.0 401871.6484401426 7.3245313886 17.0102151832 Relatively Low 57.9029131553 53.9877300613 18.4437334890 18.443733489 Relatively Low 58.6782881260 58.678288126 69.6319018405 315797.3279419072 249358.1267817433 0.0087414470 0.008741447 66434.9970379305 4.2041222335 29.7011178098 Relatively Low 28.2794845840 28.279484584 31.6239316239 -1.3710000000 -1.371 51.8016000000 51.8016 Relatively Low 16.9583200764 80.0000000000 80.0 2.5900800000 2.59008 Not Applicable Not Applicable Not Applicable 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000478451 4.78451e-05 0.0000000048 4.8e-09 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 42.0000000000 42.0 2.3333333330 2.333333333 401871.6484401426 401871.6484401426 0.0000001625 1.625e-07 Very Low 0.1523507661 0.1523507661 0.1451047583 Very Low 0.1340403640 0.134040364 Very Low 0.0064465741 383672000.0000000000 383672000.0 3269.0000000000 3269.0 24844400000.0000000000 24844400000.0 25228072000.0000000000 25228072000.0 0.0008599048 0.0000075108 7.5108e-06 Very Low 248855.3000000000 248855.3 0.0085937300 0.00859373 65312.3480000000 65312.348 314167.6480000000 314167.648 28.1511239294 Relatively High 29.2779385716 Relatively High 1.0000000000 1.0 0.0312500000 0.03125 383672000.0000000000 383672000.0 3269.0000000000 3269.0 24844400000.0000000000 24844400000.0 401871.6484401426 25228473871.6484413147 25228473871.64844 0.0000180224 1.80224e-05 0.0000000210 2.1e-08 0.0002275779 Very Low 216.0834710312 0.0000021484 2.1484e-06 16.3280930916 2.8580351669 235.2695992897 3.9678056982 Very Low 3.9025882218 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0100000000 0.01 383672000.0000000000 383672000.0 3269.0000000000 3269.0 24844400000.0000000000 24844400000.0 401871.6484401426 25228473871.6484413147 25228473871.64844 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 97.9697101257 0.0000107105 1.07105e-05 81.3998203636 0.9889245321 180.3584550214 2.2943967393 Very Low 2.8754496849 Very Low 0.0000000000 0.0 0.0148900000 0.01489 383672000.0000000000 383672000.0 3269.0000000000 3269.0 24844400000.0000000000 24844400000.0 25228072000.0000000000 25228072000.0 0.0000058883 5.8883e-06 0.0000016270 1.627e-06 Relatively Low 33.6391243428 0.0000791949 7.91949e-05 601.8811797320 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.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000305947 3.05947e-05 0.0000027267 2.7267e-06 0.0042466231 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 1.0000000000 1.0 0.0312500000 0.03125 383672000.0000000000 383672000.0 3269.0000000000 3269.0 24844400000.0000000000 24844400000.0 401871.6484401426 25228473871.6484413147 25228473871.64844 0.0000005132 5.132e-07 0.0000000835 8.35e-08 0.0000133875 1.33875e-05 Very Low 6.1527550844 0.0000085257 8.5257e-06 64.7954429324 0.1681273425 71.1163253592 3.9978637221 Very Low 4.2137175891 Very Low 0.0000000000 0.0 0.0000705247 7.05247e-05 383672000.0000000000 383672000.0 3269.0000000000 3269.0 24844400000.0000000000 24844400000.0 401871.6484401426 25228473871.6484413147 25228473871.64844 0.0055055910 0.005505591 0.0000036709 3.6709e-06 0.0012943543 Very Low 148.9722004575 0.0000008463 8.463e-07 6.4320127900 6.43201279 0.0366844259 155.4408976735 3.8306490250 3.830649025 Very Low 4.1833575346 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0007732141 0.0000000366 3.66e-08 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 1.0000000000 1.0 0.0035310000 0.003531 383671965.4931728244 383671965.4931728 3268.9998233806 24844398657.6928062439 24844398657.692806 25228070623.1859817505 25228070623.18598 0.0000000070 7e-09 0.0000040104 4.0104e-06 Very Low 0.0095207016 0.0000462911 4.62911e-05 351.8124890209 351.8220097225 8.1545280316 Very Low 7.5121282608 Very Low Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000000310 3.1e-08 0.0000104614 1.04614e-05 0.0000013105 1.3105e-06
19 18 T15009030404 Hawaii HI 15 Maui County 9 15009 30404 15009030404 5609 567723000.0000000000 567723000.0 5651711.1872665770 5651711.187266577 10.5235860733 21.7626773065 Relatively Moderate 78.1547725429 80.9815950920 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.1610000000 0.161 51.8016000000 51.8016 Relatively Low 16.9583200764 80.0000000000 80.0 2.5900800000 2.59008 Not Applicable Not Applicable Not Applicable 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000478451 4.78451e-05 0.0000000048 4.8e-09 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 42.0000000000 42.0 2.3333333330 2.333333333 5651711.1872665770 5651711.187266577 5651711.1872665770 5651711.187266577 0.0000001625 1.625e-07 Very Low 2.1425809272 2.1425809272 0.3502508394 Very Low 0.3502314548 Very Low 0.0062206970 0.006220697 567723000.0000000000 567723000.0 5609.0000000000 5609.0 42628400000.0000000000 42628400000.0 43196123000.0000000000 43196123000.0 0.0008599048 0.0000075108 7.5108e-06 Very Low 399450.1000000000 399450.1 0.0156823200 0.01568232 119185.6320000000 119185.632 518635.7320000000 518635.732 33.2707606493 Relatively High 37.4566993659 Relatively High 1.0000000000 1.0 0.0312500000 0.03125 567723000.0000000000 567723000.0 5609.0000000000 5609.0 42628400000.0000000000 42628400000.0 5651711.1872665808 5651711.187266581 43201774711.1872634888 43201774711.18726 0.0000180224 1.80224e-05 0.0000000210 2.1e-08 0.0002275779 Very Low 319.7407067123 0.0000036863 3.6863e-06 28.0159908693 40.1939011846 387.9505987662 4.6876365807 Very Low 4.9908933102 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0100000000 0.01 567723000.0000000000 567723000.0 5609.0000000000 5609.0 42628400000.0000000000 42628400000.0 5651711.1872665808 5651711.187266581 43201774711.1872634888 43201774711.18726 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 144.9666844120 144.966684412 0.0000183772 1.83772e-05 139.6670518260 139.667051826 13.9077137264 298.5414499644 2.7140919728 Very Low 3.6820004321 Very Low 0.0000000000 0.0 0.0148900000 0.01489 567723000.0000000000 567723000.0 5609.0000000000 5609.0 42628400000.0000000000 42628400000.0 43196123000.0000000000 43196123000.0 0.0000058883 5.8883e-06 0.0000016270 1.627e-06 Relatively Low 49.7761228061 0.0001358838 1032.7168972520 1032.716897252 1082.4930200581 13.9993290959 Relatively Low 11.5366450380 11.536645038 Relatively Low Insufficient Data Insufficient Data Insufficient Data Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000305947 3.05947e-05 0.0000027267 2.7267e-06 0.0042466231 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 1.0000000000 1.0 0.0312500000 0.03125 567723000.0000000000 567723000.0 5609.0000000000 5609.0 42628400000.0000000000 42628400000.0 5651711.1872665808 5651711.187266581 43201774711.1872634888 43201774711.18726 0.0000005132 5.132e-07 0.0000000835 8.35e-08 0.0000133875 1.33875e-05 Very Low 9.1042884934 0.0000146286 1.46286e-05 111.1770080794 2.3644543876 122.6457509603 4.7942688610 4.794268861 Very Low 5.4699309407 Very Low 0.0000000000 0.0 0.0001014667 567723000.0000000000 567723000.0 5609.0000000000 5609.0 42628400000.0000000000 42628400000.0 5651711.1872665770 5651711.187266577 43201774711.1872634888 43201774711.18726 0.0038099356 0.0000025403 2.5403e-06 0.0008957088 Very Low 219.4713585555 0.0000014458 1.4458e-06 10.9878736031 0.5136538593 230.9728860179 4.3712360994 Very Low 5.1676654102 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0007732141 0.0000000366 3.66e-08 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 1.0000000000 1.0 0.0035310000 0.003531 567722906.2145869732 567722906.214587 5608.9992323313 42628394165.7177505493 42628394165.71775 43196117071.9323348999 43196117071.932335 0.0000000070 7e-09 0.0000040104 4.0104e-06 Very Low 0.0140878690 0.014087869 0.0000794270 7.9427e-05 603.6451781764 603.6592660453 9.7623667417 Very Low 9.7351198346 Very Low Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000000310 3.1e-08 0.0000104610 1.0461e-05 0.0000013088 1.3088e-06
20 19 T15001021601 Hawaii HI 15 Hawaii County 1 15001 21601 15001021601 7822 1094086000.0000000000 1094086000.0 566994.6079257398 6.8170806188 49.7951606355 Very High 99.7442912330 99.744291233 99.6932515337 46.2888122040 46.288812204 Very High 99.5738187217 99.6932515337 4992177.8256177604 4992177.82561776 3805158.5707100113 0.1561792832 1186962.5526520708 56.7022556784 33.9564709833 Relatively Moderate 72.8134489645 70.3703703704 1.2900000000 1.29 50.7751980000 50.775198 Relatively Low 9.3859370029 40.0000000000 40.0 2.5387599000 2.5387599 Not Applicable Not Applicable Not Applicable 0.0699710120 0.069971012 62060272.6402582675 62060272.64025827 443.6903978226 3372047023.4515032768 3372047023.4515033 3434107296.0917611122 3434107296.091761 0.0000130436 1.30436e-05 0.0000000001 1e-10 Very Low 56.6406985726 0.0000000041 4.1e-09 0.0315051310 0.031505131 56.6722037036 1.2660860140 1.266086014 Very Low 1.3616250452 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 98.0000000000 98.0 5.4444444440 5.444444444 0.0000000000 0.0 0.0000000000 0.0 0.0000000541 5.41e-08 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0099989874 1094086000.0000000000 1094086000.0 7822.0000000000 7822.0 59447200000.0000000000 59447200000.0 60541286000.0000000000 60541286000.0 0.0008505842 0.0000116917 1.16917e-05 Very Low 3343740.7000000002 3343740.7 0.1379278400 0.13792784 1048251.5840000000 1048251.584 4391992.2840000000 4391992.284 67.8155218284 Very High 82.2650123419 Very High 1.0000000000 1.0 0.0312500000 0.03125 1094086000.0000000000 1094086000.0 7822.0000000000 7822.0 59447200000.0000000000 59447200000.0 566994.6079257398 60541852994.6079254150 60541852994.60792 0.0000180224 1.80224e-05 0.0000000760 7.6e-08 0.0002275779 Very Low 616.1875260291 0.0000185843 1.85843e-05 141.2407668887 4.0323584288 761.4606513466 5.8691825077 Very Low 6.7331958941 Relatively Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0144927536 1094086000.0000000000 1094086000.0 7822.0000000000 7822.0 59447200000.0000000000 59447200000.0 566994.6079257398 60541852994.6079254150 60541852994.60792 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 404.8872371382 0.0000371419 3.71419e-05 282.2781397865 2.0221139266 689.1874908512 3.5870338637 Very Low 5.2434126229 Very Low 0.0000000000 0.0 0.0148900000 0.01489 1094086000.0000000000 1094086000.0 7822.0000000000 7822.0 59447200000.0000000000 59447200000.0 60541286000.0000000000 60541286000.0 0.0000058883 5.8883e-06 0.0000013610 1.361e-06 Very Low 95.9259341201 0.0001585151 1204.7147476880 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.0000000000 142.0 5.9166666660 5.916666666 120948558.0820328742 120948558.08203287 753.2226728277 5724492313.4908361435 5724492313.490836 19158.5575277741 5845460030.1303968430 5845460030.130397 0.0006245044 0.0000038327 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.0000000000 1.0 0.0312500000 0.03125 1094086000.0000000000 1094086000.0 7822.0000000000 7822.0 59447200000.0000000000 59447200000.0 566994.6079257398 60541852994.6079254150 60541852994.60792 0.0000083601 8.3601e-06 0.0000003102 3.102e-07 0.0006212585 Very Low 285.8325276715 0.0000758359 7.58359e-05 576.3528488228 11.0078186279 873.1931951221 9.2230592245 Very Low 11.3384513041 Very Low 0.0000000000 0.0 0.0000799759 7.99759e-05 1094086000.0000000000 1094086000.0 7822.0000000000 7822.0 59447200000.0000000000 59447200000.0 566994.6079257398 60541852994.6079254150 60541852994.60792 0.0047816194 0.0000031882 3.1882e-06 0.0011241499 Very Low 418.3939264616 0.0000019945 1.9945e-06 15.1578838311 0.0509755678 433.6027858605 5.3923898832 Very Low 6.8692131386 Very Low 19.0000000000 19.0 0.0867738390 0.086773839 218840398.9186238050 218840398.9186238 746.6182267855 5674298523.5697565079 5674298523.5697565 5893138922.4883804321 5893138922.48838 0.0006654598 0.0000038734 3.8734e-06 Very Low 12636.8292031895 0.0002509467 1907.1951510591 14544.0243542486 26.1104249456 Relatively High 24.7254344658 Relatively High 3.0000000000 3.0 0.0200386000 0.0200386 1094085980.3737592697 1094085980.3737593 7821.9998504835 59447198863.6745376587 59447198863.67453 60541284844.0483016968 60541284844.0483 0.0000000070 7e-09 0.0000040043 4.0043e-06 Very Low 0.1540742249 0.0006276471 4770.1179074570 4770.117907457 4770.2719816818 19.4448923018 Relatively Low 20.8934909442 Relatively Low Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000022210 2.221e-06 0.0001000049 0.0004101879
21 20 T15001021013 Hawaii HI 15 Hawaii County 1 15001 21013 15001021013 4970 472410000.0000000000 472410000.0 49059676.8905426562 49059676.890542656 51.0843274312 34.2704008127 Relatively High 97.6615020828 91.7177914110 91.717791411 31.7870290791 Relatively High 95.1456577627 92.3312883436 1616634.1715474543 1092599.9326310402 0.0687639329 522605.8900662626 1428.3488501515 1428.3488501514 34.0316312987 Relatively Moderate 73.4741334501 71.2250712251 1.3370000000 1.337 50.7751980000 50.775198 Relatively Low 9.3859370029 40.0000000000 40.0 2.5387599000 2.5387599 Not Applicable Not Applicable Not Applicable 0.0679710120 0.067971012 11575814.7500163969 11575814.750016397 121.7836186947 925555502.0800142288 925555502.0800141 937131316.8300304413 937131316.8300304 0.0000037564 3.7564e-06 0.0000000003 3e-10 Very Low 2.9556129381 0.0000000024 2.4e-09 0.0180424519 2.9736553900 2.97365539 0.4739909580 0.473990958 Very Low 0.5108866985 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000541 5.41e-08 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0099996439 472410000.0000000000 472410000.0 4970.0000000000 4970.0 37772000000.0000000000 37772000000.0 38244410000.0000000000 38244410000.0 0.0008505842 0.0000116917 1.16917e-05 Very Low 1091887.0999999999 0.0681696800 0.06816968 518089.5680000000 518089.568 1609976.6679999998 48.5342637441 Very High 59.0058028418 Very High 1.0000000000 1.0 0.0312500000 0.03125 472410000.0000000000 472410000.0 4970.0000000000 4970.0 37772000000.0000000000 37772000000.0 49059676.8905426711 49059676.89054267 38293469676.8905410767 38293469676.89054 0.0000180224 1.80224e-05 0.0000000760 7.6e-08 0.0002275779 Very Low 266.0605740053 0.0000118082 1.18082e-05 89.7425992630 89.742599263 348.9031445064 704.7063177748 5.7195849429 Very Low 6.5760993879 Relatively Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0130926272 472410000.0000000000 472410000.0 4970.0000000000 4970.0 37772000000.0000000000 37772000000.0 49059676.8905426711 49059676.89054267 38293469676.8905410767 38293469676.89054 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 143.4534201390 143.453420139 0.0000197510 1.9751e-05 150.1073280265 123.7327500539 417.2934982194 3.0346146773 Very Low 4.4457223006 Very Low 0.0000000000 0.0 0.0148900000 0.01489 472410000.0000000000 472410000.0 4970.0000000000 4970.0 37772000000.0000000000 37772000000.0 38244410000.0000000000 38244410000.0 0.0000058883 5.8883e-06 0.0000013610 1.361e-06 Very Low 41.4193861705 0.0001007185 765.4605338800 765.46053388 806.8799200505 12.6931230651 Relatively Low 11.2958860000 11.295886 Relatively Low Insufficient Data Insufficient Data Insufficient Data Insufficient Data Insufficient Data Insufficient Data 142.0000000000 142.0 5.9166666660 5.916666666 607.4849160695 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 607.4849160695 0.0006245044 0.0000038327 3.8327e-06 0.0003492485 Very Low 2.2446472091 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 2.2446472091 0.5912712527 Very Low 0.5987382758 Very Low 1.0000000000 1.0 0.0312500000 0.03125 472410000.0000000000 472410000.0 4970.0000000000 4970.0 37772000000.0000000000 37772000000.0 49059676.8905426711 49059676.89054267 38293469676.8905410767 38293469676.89054 0.0000083601 8.3601e-06 0.0000003102 3.102e-07 0.0006212585 Very Low 123.4182179437 0.0000481852 4.81852e-05 366.2073202052 952.4606012164 1442.0861393653 10.9018938929 Relatively Low 13.4320070560 13.432007056 Relatively Low 0.0000000000 0.0 0.0003763200 0.00037632 472410000.0000000000 472410000.0 4970.0000000000 4970.0 37772000000.0000000000 37772000000.0 49059676.8905426562 49059676.890542656 38293469676.8905410767 38293469676.89054 0.0007493188 0.0000004996 4.996e-07 0.0001761635 Very Low 133.2119011897 0.0000009344 9.344e-07 7.1017795182 3.2523543748 143.5660350827 3.7305067727 Very Low 4.7624656829 Very Low 0.0000000000 0.0 0.0000000000 0.0 6173149.8587964876 6173149.858796488 49.0000000000 49.0 372400000.0000000000 372400000.0 378573149.8587964773 378573149.8587965 0.0006654598 0.0000038734 3.8734e-06 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 4.0000000000 4.0 0.0207448000 0.0207448 472409670.7066273689 472409670.70662737 4969.9964727827 37771973193.1484375000 37771973193.14844 38244382863.8550567627 38244382863.85506 0.0000000070 7e-09 0.0000040043 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.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000000365 3.65e-08 0.0000291145 2.91145e-05 0.0000015088 1.5088e-06
22 21 T15001021702 Hawaii HI 15 Hawaii County 1 15001 21702 15001021702 9540 1290871000.0000000000 1290871000.0 1847307.1325365920 1847307.132536592 202.2053672226 41.6514079785 Very High 99.2906143884 97.5460122699 43.0017491363 Very High 99.3098612849 99.3865030675 4002398.2558925641 4002398.255892564 3010194.0544788949 3010194.054478895 0.1303958532 991008.4843458552 1195.7170678134 30.5742567924 Relatively Low 36.7056055591 37.8917378917 -0.8250000000 -0.825 50.7751980000 50.775198 Relatively Low 9.3859370029 40.0000000000 40.0 2.5387599000 2.5387599 Not Applicable Not Applicable Not Applicable 0.0020000000 0.002 2781293.4652375295 20.5547569497 156216152.8174247146 156216152.8174247 158997446.2826622427 158997446.28266224 0.0001485004 0.0000000132 1.32e-08 Very Low 0.8260461896 0.0000000005 5e-10 0.0041116194 0.8301578090 0.830157809 0.3097847707 Very Low 0.2999768522 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 1904.0000000000 1904.0 105.7777777770 105.777777777 0.0000000000 0.0 0.0000000000 0.0 0.0000000541 5.41e-08 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0099727839 1290871000.0000000000 1290871000.0 9540.0000000000 9540.0 72504000000.0000000000 72504000000.0 73794871000.0000000000 73794871000.0 0.0008505842 0.0000116917 1.16917e-05 Very Low 2069190.1000000001 2069190.1 0.0929550600 0.09295506 706458.4560000001 2775648.5559999999 2775648.556 58.1964835648 Very High 63.5647236624 Very High 1.0000000000 1.0 0.0312500000 0.03125 1290871000.0000000000 1290871000.0 9540.0000000000 9540.0 72504000000.0000000000 72504000000.0 1847307.1325365920 1847307.132536592 73796718307.1325225830 73796718307.13252 0.0000180224 1.80224e-05 0.0000000760 7.6e-08 0.0002275779 Very Low 727.0165306165 0.0000226661 2.26661e-05 172.2624541197 13.1376989875 912.4166837238 6.2338957004 Very Low 6.4392683964 Relatively Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0100000000 0.01 1290871000.0000000000 1290871000.0 9540.0000000000 9540.0 72504000000.0000000000 72504000000.0 1847307.1325365920 1847307.132536592 73796718307.1325225830 73796718307.13252 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 329.6207637766 0.0000312567 3.12567e-05 237.5510205776 4.5458477818 571.7176321361 3.3704162765 Very Low 4.4360400879 Very Low 0.0000000000 0.0 0.0148900000 0.01489 1290871000.0000000000 1290871000.0 9540.0000000000 9540.0 72504000000.0000000000 72504000000.0 73794871000.0000000000 73794871000.0 0.0000058883 5.8883e-06 0.0000013610 1.361e-06 Very Low 113.1794086604 0.0001933309 1469.3145861600 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.0000000000 142.0 5.9166666660 5.916666666 254174294.5316500664 254174294.53165004 1597.5991511029 12141753548.3820400238 12141753548.38204 552684.3798532827 12396480527.2935447693 12396480527.293545 0.0006245044 0.0000038327 3.8327e-06 0.0003492485 Very Low 939170.0201124339 939170.020112434 0.0362286352 275337.6278939629 1142.0596708920 1142.059670892 1215649.7076772891 48.1955436376 Very High 43.8460306298 Very High 1.0000000000 1.0 0.0312500000 0.03125 1290871000.0000000000 1290871000.0 9540.0000000000 9540.0 72504000000.0000000000 72504000000.0 1847307.1325365920 1847307.132536592 73796718307.1325225830 73796718307.13252 0.0000083601 8.3601e-06 0.0000003102 3.102e-07 0.0006212585 Very Low 337.2430694017 0.0000924923 9.24923e-05 702.9412142414 35.8642244223 1076.0485080654 9.8881603341 Very Low 10.9452982890 10.945298289 Very Low 0.0000000000 0.0 0.0012659477 1290871000.0000000000 1290871000.0 9540.0000000000 9540.0 72504000000.0000000000 72504000000.0 1847307.1325365920 1847307.132536592 73796718307.1325225830 73796718307.13252 0.0001993923 0.0000001329 1.329e-07 0.0000468768 4.68768e-05 Very Low 325.8419546829 0.0000016056 1.6056e-06 12.2027969479 0.1096257297 338.1543773606 4.9635103885 Very Low 5.6929552963 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0006654598 0.0000038734 3.8734e-06 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 5.0000000000 5.0 0.0209036275 1283193020.0345883369 1283193020.0345883 9471.8345321507 71985942444.3451843262 71985942444.34518 73269135464.3797760010 73269135464.37978 0.0000000070 7e-09 0.0000040043 4.0043e-06 Very Low 0.2065931336 0.0008708058 6618.1242682260 6618.124268226 6618.3308613596 21.6873915176 Relatively Low 20.9819644591 Relatively Low Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000038333 3.8333e-06 0.0006472757 0.0007289681
23 22 T15001021704 Hawaii HI 15 Hawaii County 1 15001 21704 15001021704 8087 1437523000.0000000000 1437523000.0 0.0000000000 0.0 141.2921284365 37.4934682651 Very High 98.6279712396 95.0920245399 40.5478070100 40.54780701 Very High 99.0060352768 97.2392638037 3355552.5856007547 2636098.9296592614 0.0946649547 719453.6559414929 0.0000000000 0.0 29.1877888475 Relatively Low 23.8708177167 28.2051282051 -1.6920000000 -1.692 50.7751980000 50.775198 Relatively Low 9.3859370029 40.0000000000 40.0 2.5387599000 2.5387599 Not Applicable Not Applicable Not Applicable 0.0699710120 0.069971012 136722744.0023373067 136722744.0023373 769.1541844874 5845571802.1043519974 5845571802.104352 5982294546.1066894531 5982294546.106689 0.0000000520 5.2e-08 0.0000000000 0.0 Very Low 0.4976182338 0.0000000001 1e-10 0.0008613326 0.4984795664 0.2613498758 Very Low 0.2415990737 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 1589.0000000000 1589.0 88.2777777770 88.277777777 0.0000000000 0.0 0.0000000000 0.0 0.0000000541 5.41e-08 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0099749521 1437523000.0000000000 1437523000.0 8087.0000000000 8087.0 61461200000.0000000000 61461200000.0 62898723000.0000000000 62898723000.0 0.0008505842 0.0000116917 1.16917e-05 Very Low 2606385.9000000004 0.0932795800 0.09327958 708924.8080000000 708924.808 3315310.7080000001 3315310.708 61.7471139969 Very High 64.3845063537 Very High 1.0000000000 1.0 0.0312500000 0.03125 1437523000.0000000000 1437523000.0 8087.0000000000 8087.0 61461200000.0000000000 61461200000.0 0.0000000000 0.0 62898723000.0000000000 62898723000.0 0.0000180224 1.80224e-05 0.0000000760 7.6e-08 0.0002275779 Very Low 809.6107079150 809.610707915 0.0000192139 1.92139e-05 146.0258350586 0.0000000000 0.0 955.6365429737 6.3308113948 Relatively Low 6.2428321439 Relatively Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0100000000 0.01 1437523000.0000000000 1437523000.0 8087.0000000000 8087.0 61461200000.0000000000 61461200000.0 0.0000000000 0.0 62898723000.0000000000 62898723000.0 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 367.0679945606 0.0000264961 2.64961e-05 201.3705559131 0.0000000000 0.0 568.4385504738 3.3639602531 Very Low 4.2267645992 Very Low 0.0000000000 0.0 0.0148900000 0.01489 1437523000.0000000000 1437523000.0 8087.0000000000 8087.0 61461200000.0000000000 61461200000.0 62898723000.0000000000 62898723000.0 0.0000058883 5.8883e-06 0.0000013610 1.361e-06 Very Low 126.0373833448 0.0001638854 1245.5290417480 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.0000000000 142.0 5.9166666660 5.916666666 4275225.0092844572 4275225.009284457 11.3075413498 85937314.2587604970 85937314.2587605 0.0000000000 0.0 90212539.2680449635 90212539.26804496 0.0006245044 0.0000038327 3.8327e-06 0.0003492485 Very Low 15796.8891596742 0.0002564203 1948.7939827883 0.0000000000 0.0 17745.6831424625 11.7788160915 Relatively Low 10.2298750080 10.229875008 Relatively Low 1.0000000000 1.0 0.0312500000 0.03125 1437523000.0000000000 1437523000.0 8087.0000000000 8087.0 61461200000.0000000000 61461200000.0 0.0000000000 0.0 62898723000.0000000000 62898723000.0 0.0000083601 8.3601e-06 0.0000003102 3.102e-07 0.0006212585 Very Low 375.5562475673 0.0000784051 7.84051e-05 595.8789936627 0.0000000000 0.0 971.4352412300 971.43524123 9.5567340721 Very Low 10.0987330053 Very Low 0.0000000000 0.0 0.0009691875 1437523000.0000000000 1437523000.0 8087.0000000000 8087.0 61461200000.0000000000 61461200000.0 0.0000000000 0.0 62898723000.0000000000 62898723000.0 0.0002586645 0.0000001725 1.725e-07 0.0314801129 Very Low 360.3789426695 0.0000013518 1.3518e-06 10.2735112261 0.0000000000 0.0 370.6524538956 5.1176772170 5.117677217 Very Low 5.6035862783 Very Low 35.0000000000 35.0 0.1598465470 0.159846547 111653589.9509336352 111653589.95093364 124.2335248173 944174788.6111233234 944174788.6111234 1055828378.5620572567 1055828378.5620573 0.0006654598 0.0000038734 3.8734e-06 Very Low 11876.7538770515 0.0000769195 7.69195e-05 584.5878715456 12461.3417485972 24.7993716910 24.799371691 Relatively High 20.1859557314 Relatively Moderate 4.0000000000 4.0 0.0223256980 0.022325698 1436641529.8863048553 1436641529.8863049 8083.2000133200 8083.20001332 61432320101.2316055298 61432320101.23161 62868961631.1179199219 62868961631.11791 0.0000000070 7e-09 0.0000040043 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.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000000675 6.75e-08 0.0000124075 1.24075e-05
24 23 T15001021902 Hawaii HI 15 Hawaii County 1 15001 21902 15001021902 3925 399581000.0000000000 399581000.0 2581801.8541268115 115.3501535902 27.0029295340 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.9059829060 82.905982906 2.1700000000 2.17 50.7751980000 50.775198 Relatively Low 9.3859370029 40.0000000000 40.0 2.5387599000 2.5387599 Not Applicable Not Applicable Not Applicable 0.0679710120 0.067971012 22856965.6399190053 22856965.639919005 224.5191591609 1706345609.6230399609 1706345609.62304 1729202575.2629590034 1729202575.262959 0.0000000088 8.8e-09 0.0000000000 0.0 Very Low 0.0136155178 0.0000000000 0.0 0.0000729943 7.29943e-05 0.0136885121 0.0788482259 Very Low 0.0883124103 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 224.0000000000 224.0 12.4444444440 12.444444444 0.0000000000 0.0 0.0000000000 0.0 0.0000000541 5.41e-08 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0098841270 0.009884127 399581000.0000000000 399581000.0 3925.0000000000 3925.0 29830000000.0000000000 29830000000.0 30229581000.0000000000 30229581000.0 0.0008505842 0.0000116917 1.16917e-05 Very Low 422346.0000000000 422346.0 0.0199002000 0.0199002 151241.5200000000 151241.52 573587.5200000000 573587.52 34.4066045743 Relatively High 43.4673703843 Very High 1.0000000000 1.0 0.0312500000 0.03125 399581000.0000000000 399581000.0 3925.0000000000 3925.0 29830000000.0000000000 29830000000.0 2581801.8541268120 2581801.854126812 30232162801.8541221619 30232162801.85412 0.0000180224 1.80224e-05 0.0000000760 7.6e-08 0.0002275779 Very Low 225.0433949783 0.0000093254 9.3254e-06 70.8731794986 18.3612865492 314.2778610261 4.3698485829 Very Low 5.2209017008 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0100000000 0.01 399581000.0000000000 399581000.0 3925.0000000000 3925.0 29830000000.0000000000 29830000000.0 2581801.8541268120 2581801.854126812 30232162801.8541221619 30232162801.85412 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 102.0320345028 0.0000128598 1.28598e-05 97.7345655940 97.734565594 6.3532901622 206.1198902590 206.119890259 2.3988125677 Very Low 3.6518284380 3.651828438 Very Low 0.0000000000 0.0 0.0148900000 0.01489 399581000.0000000000 399581000.0 3925.0000000000 3925.0 29830000000.0000000000 29830000000.0 30229581000.0000000000 30229581000.0 0.0000058883 5.8883e-06 0.0000013610 1.361e-06 Very Low 35.0339741864 0.0000795413 7.95413e-05 604.5136007000 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.0000000000 142.0 5.9166666660 5.916666666 24231739.6875672489 24231739.68756725 212.4539917618 1614650337.3899602890 1614650337.3899603 416363.7036091327 416363.7036091328 1639298440.7811367512 1639298440.7811368 0.0006245044 0.0000038327 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.0000000000 1.0 0.0312500000 0.03125 399581000.0000000000 399581000.0 3925.0000000000 3925.0 29830000000.0000000000 29830000000.0 2581801.8541268120 2581801.854126812 30232162801.8541221619 30232162801.85412 0.0000083601 8.3601e-06 0.0000003102 3.102e-07 0.0006212585 Very Low 104.3914712733 0.0000380537 3.80537e-05 289.2079943275 50.1239450006 443.7234106013 7.3599635589 Very Low 9.4230153392 Very Low 0.0000000000 0.0 0.0010265904 399581000.0000000000 399581000.0 3925.0000000000 3925.0 29830000000.0000000000 29830000000.0 2581801.8541268115 30232162801.8541221619 30232162801.85412 0.0003150456 0.0000002101 2.101e-07 0.0000740666 7.40666e-05 Very Low 129.2335939336 0.0000008464 8.464e-07 6.4327564020 6.432756402 0.1963101401 135.8626604756 3.6625534291 Very Low 4.8587514569 Very Low 4.0000000000 4.0 0.0182681760 0.018268176 1977759.7407743428 10.3807797710 10.380779771 78893926.2592408508 78893926.25924085 80871686.0000151992 80871686.0000152 0.0006654598 0.0000038734 3.8734e-06 Very Low 24.0431034706 0.0000007345 7.345e-07 5.5825535655 29.6256570361 3.3098507134 Very Low 3.2641784236 Relatively Low 4.0000000000 4.0 0.0218268636 398364800.9912430644 398364800.99124306 3913.1377072170 3913.137707217 29739846574.8488502502 29739846574.84885 30138211375.8400955200 30138211375.840096 0.0000000070 7e-09 0.0000040043 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.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000012633 1.2633e-06 0.0003623064 0.0002255654
25 24 T15003007502 Hawaii HI 15 Honolulu County 3 15003 7502 15003007502 1376 196711000.0000000000 196711000.0 0.0000000000 0.0 7.7618787766 7.9974839570 7.997483957 Very Low 5.4441221353 5.8282208589 13.4756112773 Relatively Low 29.9577943057 19.9386503067 123170.6861596142 117626.1358237950 117626.135823795 0.0007295461 5544.5503358193 0.0000000000 0.0 18.9659859594 Very Low 1.2256175964 10.5413105413 -8.0840000000 -8.084 51.4027980000 51.402798 Relatively Low 13.6493795737 60.0000000000 60.0 2.5701399000 2.5701399 Not Applicable Not Applicable Not Applicable 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000478451 4.78451e-05 0.0000000048 4.8e-09 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000004090 4.09e-07 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0028437331 196711000.0000000000 196711000.0 1376.0000000000 1376.0 10457600000.0000000000 10457600000.0 10654311000.0000000000 10654311000.0 0.0167507621 0.0001397988 Very Low 117052.4000000000 117052.4 0.0007125600 0.00071256 5415.4560000000 5415.456 122467.8560000000 122467.856 20.5643959253 Relatively Moderate 13.7632106877 Relatively Low 1.0000000000 1.0 0.0312500000 0.03125 196711000.0000000000 196711000.0 1376.0000000000 1376.0 10457600000.0000000000 10457600000.0 0.0000000000 0.0 10654311000.0000000000 10654311000.0 0.0000180224 1.80224e-05 0.0000000210 2.1e-08 0.0002275779 Very Low 110.7873278999 0.0000009033 9.033e-07 6.8648716832 0.0000000000 0.0 117.6521995832 3.1494047356 Very Low 1.9933788852 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0100000000 0.01 196711000.0000000000 196711000.0 1376.0000000000 1376.0 10457600000.0000000000 10457600000.0 0.0000000000 0.0 10654311000.0000000000 10654311000.0 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 50.2296744317 0.0000045083 4.5083e-06 34.2631241420 34.263124142 0.0000000000 0.0 84.4927985737 1.7819530051 Very Low 1.4371183905 Very Low 0.0000000000 0.0 0.0148900000 0.01489 196711000.0000000000 196711000.0 1376.0000000000 1376.0 10457600000.0000000000 10457600000.0 10654311000.0000000000 10654311000.0 0.0000058883 5.8883e-06 0.0000002640 2.64e-07 Very Low 17.2469864587 0.0000054090 5.409e-06 41.1084072960 41.108407296 58.3553937547 5.2884189904 Very Low 2.5908077620 2.590807762 Very Low Insufficient Data Insufficient Data Insufficient Data Insufficient Data Insufficient Data Insufficient Data 153.0000000000 153.0 6.3750000000 6.375 334545.9186602517 334545.9186602516 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 334545.9186602517 334545.9186602516 0.0000678921 6.78921e-05 0.0000000585 5.85e-08 0.0005670888 Very Low 144.7954863065 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 144.7954863065 2.3713140511 Very Low 1.3218946842 Very Low 1.0000000000 1.0 0.0312500000 0.03125 196711000.0000000000 196711000.0 1376.0000000000 1376.0 10457600000.0000000000 10457600000.0 0.0000000000 0.0 10654311000.0000000000 10654311000.0 0.0000002273 2.273e-07 0.0000001163 1.163e-07 0.0000219536 2.19536e-05 Very Low 1.3970006805 0.0000050029 5.0029e-06 38.0217855444 0.0000000000 0.0 39.4187862249 3.2840213033 Very Low 2.2274217169 Very Low 0.0000000000 0.0 0.0002439162 196711000.0000000000 196711000.0 1376.0000000000 1376.0 10457600000.0000000000 10457600000.0 0.0000000000 0.0 10654311000.0000000000 10654311000.0 0.0051953759 0.0000034641 3.4641e-06 0.0314801129 Very Low 249.2793480177 0.0000011627 1.1627e-06 8.8361471536 0.0000000000 0.0 258.1154951713 4.5361626976 Very Low 3.1876813425 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0015593140 0.001559314 0.0000000365 3.65e-08 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0477752648 0.0001095931 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000000123 1.23e-08 0.0000029166 2.9166e-06
26 25 T15001020202 Hawaii HI 15 Hawaii County 1 15001 20202 15001020202 2568 183300000.0000000000 183300000.0 19450471.0412919968 19450471.041291997 244.9265376883 26.8331711535 Relatively High 90.8054826159 87.7300613497 25.4228346534 Relatively Moderate 85.7586714142 88.3435582822 827053.9790743970 827053.979074397 517884.4786890347 0.0406058540 0.040605854 308604.4903297233 308604.4903297234 565.0100556387 33.3168087250 33.316808725 Relatively Moderate 66.7428118075 65.2421652422 0.8900000000 0.89 50.7751980000 50.775198 Relatively Low 9.3859370029 40.0000000000 40.0 2.5387599000 2.5387599 Not Applicable Not Applicable Not Applicable 0.0679710120 0.067971012 530773.6291478402 7.4360429877 56513926.7067788765 56513926.70677888 57044700.3359267265 57044700.33592673 0.0000291625 2.91625e-05 0.0000000018 1.8e-09 Very Low 1.0521023568 0.0000000009 9e-10 0.0068371040 0.006837104 1.0589394608 0.3359672067 Very Low 0.3545129100 0.35451291 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000541 5.41e-08 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0099986349 183300000.0000000000 183300000.0 2568.0000000000 2568.0 19516800000.0000000000 19516800000.0 19700100000.0000000000 19700100000.0 0.0008505842 0.0000116917 1.16917e-05 Very Low 510273.9000000000 510273.9 0.0397819300 0.03978193 302342.6680000000 302342.668 812616.5680000000 812616.568 38.6429680605 Very High 45.9935976887 Very High 1.0000000000 1.0 0.0312500000 0.03125 183300000.0000000000 183300000.0 2568.0000000000 2568.0 19516800000.0000000000 19516800000.0 19450471.0412919857 19450471.041291986 19719550471.0412864685 19719550471.041286 0.0000180224 1.80224e-05 0.0000000760 7.6e-08 0.0002275779 Very Low 103.2342736504 0.0000061013 6.1013e-06 46.3700190961 138.3280718214 287.9323645679 4.2441620115 Very Low 4.7772331358 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0085026261 183300000.0000000000 183300000.0 2568.0000000000 2568.0 19516800000.0000000000 19516800000.0 19450471.0412919857 19450471.041291986 19719550471.0412864685 19719550471.041286 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 47.5251579324 0.0000088161 8.8161e-06 67.0024084263 47.8636600709 162.3912264296 2.2155277901 Very Low 3.1775808335 Very Low 0.0000000000 0.0 0.0148900000 0.01489 183300000.0000000000 183300000.0 2568.0000000000 2568.0 19516800000.0000000000 19516800000.0 19700100000.0000000000 19700100000.0 0.0000058883 5.8883e-06 0.0000013610 1.361e-06 Very Low 16.0711532039 0.0000520413 5.20413e-05 395.5136118720 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.0000000000 142.0 5.9166666660 5.916666666 1988278.7391910965 22.8556851439 173703207.0934222341 173703207.09342223 0.0000000000 0.0 175691485.8326133490 175691485.83261335 0.0006245044 0.0000038327 3.8327e-06 0.0003492485 Very Low 7346.6586655273 0.0005182966 3939.0545037912 0.0000000000 0.0 11285.7131693184 10.1293226006 Relatively Low 10.0417935626 Relatively Low 1.0000000000 1.0 0.0312500000 0.03125 183300000.0000000000 183300000.0 2568.0000000000 2568.0 19516800000.0000000000 19516800000.0 19450471.0412919857 19450471.041291986 19719550471.0412864685 19719550471.041286 0.0000083601 8.3601e-06 0.0000003102 3.102e-07 0.0006212585 Very Low 47.8875539237 0.0000248973 2.48973e-05 189.2193960336 377.6178017498 614.7247517071 8.2047455424 Very Low 9.8965701001 Very Low 0.0000000000 0.0 0.0015977717 183300000.0000000000 183300000.0 2568.0000000000 2568.0 19516800000.0000000000 19516800000.0 19450471.0412919968 19450471.041291997 19719550471.0412864685 19719550471.041286 0.0001643146 0.0000001096 1.096e-07 0.0000386301 3.86301e-05 Very Low 48.1230596103 0.0000004495 4.495e-07 3.4164308742 1.2005219967 52.7400124812 2.6717593631 Very Low 3.3389626051 Very Low 3.0000000000 3.0 0.0137011320 0.013701132 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0006654598 0.0000038734 3.8734e-06 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 4.0000000000 4.0 0.0207448000 0.0207448 183299817.8147132099 183299817.8147132 2567.9933134509 19516749182.2267990112 19516749182.2268 19700049000.0415115356 19700049000.04151 0.0000000070 7e-09 0.0000040043 4.0043e-06 Very Low 0.0267228299 0.0002133209 1621.2391225260 1621.239122526 1621.2658453560 1621.265845356 13.5698768441 Relatively Low 14.3061317429 Relatively Low Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000002378 2.378e-07 0.0000290487 2.90487e-05 0.0000415197 4.15197e-05
27 26 T15001020300 Hawaii HI 15 Hawaii County 1 15001 20300 15001020300 3934 677850000.0000000000 677850000.0 103350.8998034280 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.0414873500 0.04148735 315303.8597053039 315303.8597053038 5.0236059534 35.5252426719 Relatively High 84.6483188794 84.0455840456 2.2710000000 2.271 50.7751980000 50.775198 Relatively Low 9.3859370029 40.0000000000 40.0 2.5387599000 2.5387599 Not Applicable Not Applicable Not Applicable 0.0679710120 0.067971012 38504874.7106034458 38504874.710603446 223.4685802338 1698361209.7772455215 1698361209.7772455 1736866084.4878492355 1736866084.4878492 0.0000161443 1.61443e-05 0.0000000010 1e-09 Very Low 42.2530795804 0.0000000150 1.5e-08 0.1140789343 42.3671585148 1.1490783013 Very Low 1.2928806869 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000541 5.41e-08 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0099965667 677850000.0000000000 677850000.0 3934.0000000000 3934.0 29898400000.0000000000 29898400000.0 30576250000.0000000000 30576250000.0 0.0008505842 0.0000116917 1.16917e-05 Very Low 1823510.7000000000 1823510.7 0.0372599000 0.0372599 283175.2400000000 283175.24 2106685.9399999999 2106685.94 53.0854109894 Very High 67.3714272457 Very High 1.0000000000 1.0 0.0312500000 0.03125 677850000.0000000000 677850000.0 3934.0000000000 3934.0 29898400000.0000000000 29898400000.0 103350.8998034280 103350.899803428 30576353350.8998031616 30576353350.8998 0.0000180224 1.80224e-05 0.0000000760 7.6e-08 0.0002275779 Very Low 381.7640610691 0.0000093468 9.3468e-06 71.0356912478 0.7350120550 0.735012055 453.5347643718 4.9381618494 Very Low 5.9268435024 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0100000000 0.01 677850000.0000000000 677850000.0 3934.0000000000 3934.0 29898400000.0000000000 29898400000.0 103350.8998034280 103350.899803428 30576353350.8998031616 30576353350.8998 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 173.0873454636 0.0000128893 1.28893e-05 97.9586703304 0.2543255804 271.3003413745 2.6288943199 Very Low 4.0203715510 4.020371551 Very Low 0.0000000000 0.0 0.0148900000 0.01489 677850000.0000000000 677850000.0 3934.0000000000 3934.0 29898400000.0000000000 29898400000.0 30576250000.0000000000 30576250000.0 0.0000058883 5.8883e-06 0.0000013610 1.361e-06 Very Low 59.4317032147 0.0000797237 7.97237e-05 605.8997465360 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.0000000000 142.0 5.9166666660 5.916666666 57842789.4465603307 57842789.44656033 165.7998817432 1260079101.2480535507 1260079101.2480536 978.1387811597 1317922868.8333954811 1317922868.8333955 0.0006245044 0.0000038327 3.8327e-06 0.0003492485 Very Low 213728.1971333290 213728.197133329 0.0037598314 28574.7185786544 2.0212130019 242304.9369249853 28.1530091221 Relatively High 29.7597559190 29.759755919 Relatively High 1.0000000000 1.0 0.0312500000 0.03125 677850000.0000000000 677850000.0 3934.0000000000 3934.0 29898400000.0000000000 29898400000.0 103350.8998034280 103350.899803428 30576353350.8998031616 30576353350.8998 0.0000083601 8.3601e-06 0.0000003102 3.102e-07 0.0006212585 Very Low 177.0898986754 0.0000381409 3.81409e-05 289.8711464164 2.0064881467 468.9675332385 7.4969706224 Very Low 9.6422648288 Very Low 0.0000000000 0.0 0.0000097837 9.7837e-06 677850000.0000000000 677850000.0 3934.0000000000 3934.0 29898400000.0000000000 29898400000.0 103350.8998034280 103350.899803428 30576353350.8998031616 30576353350.8998 0.0276254828 0.0000184197 1.84197e-05 0.0064947002 Very Low 183.2096424429 0.0000007090 7.09e-07 5.3881035599 0.0065671694 188.6043131722 4.0857125073 Very Low 5.4449646719 Very Low 0.0000000000 0.0 0.0000000000 0.0 199213148.0932354331 199213148.09323543 676.7842904604 5143560607.4987268448 5143560607.498727 5342773755.5919628143 5342773755.591963 0.0006654598 0.0000038734 3.8734e-06 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 4.0000000000 4.0 0.0207448000 0.0207448 677850000.0000000000 677850000.0 3934.0000000000 3934.0 29898400000.0000000000 29898400000.0 30576250000.0000000000 30576250000.0 0.0000000070 7e-09 0.0000040043 4.0043e-06 Very Low 0.0988220855 0.0003267939 2483.6336896246 2483.7325117101 15.6432181718 Relatively Low 17.5851498720 17.585149872 Relatively Low Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000009915 9.915e-07 0.0000486073 4.86073e-05 0.0003168032
28 27 T15003009507 Hawaii HI 15 Honolulu County 3 15003 9507 15003009507 2560 291260000.0000000000 291260000.0 0.0000000000 0.0 0.6777584315 10.3745217900 10.37452179 Very Low 17.9491057067 10.4294478528 13.7534872042 Relatively Low 31.7642530142 21.4723926380 21.472392638 130948.4674371914 125905.4006006140 125905.400600614 0.0006635614 5043.0668365775 0.0000000000 0.0 24.1056722051 Very Low 3.4429458594 12.8205128205 -4.8700000000 -4.87 51.4027980000 51.402798 Relatively Low 13.6493795737 60.0000000000 60.0 2.5701399000 2.5701399 Not Applicable Not Applicable Not Applicable 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000478451 4.78451e-05 0.0000000048 4.8e-09 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000004090 4.09e-07 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0038371924 291260000.0000000000 291260000.0 2560.0000000000 2560.0 19456000000.0000000000 19456000000.0 19747260000.0000000000 19747260000.0 0.0167507621 0.0001397988 Very Low 125352.3000000000 125352.3 0.0006324400 0.00063244 4806.5440000000 4806.544 130158.8440000000 130158.844 20.9861680407 Relatively Moderate 17.8517488934 Relatively Moderate 1.0000000000 1.0 0.0312500000 0.03125 291260000.0000000000 291260000.0 2560.0000000000 2560.0 19456000000.0000000000 19456000000.0 0.0000000000 0.0 19747260000.0000000000 19747260000.0 0.0000180224 1.80224e-05 0.0000000210 2.1e-08 0.0002275779 Very Low 164.0371769964 0.0000016805 1.6805e-06 12.7718542944 0.0000000000 0.0 176.8090312908 3.6074191585 Very Low 2.9020293931 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0100000000 0.01 291260000.0000000000 291260000.0 2560.0000000000 2560.0 19456000000.0000000000 19456000000.0 0.0000000000 0.0 19747260000.0000000000 19747260000.0 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 74.3725311496 0.0000083875 8.3875e-06 63.7453472410 63.745347241 0.0000000000 0.0 138.1178783905 2.0991315083 Very Low 2.1516903399 Very Low 0.0000000000 0.0 0.0148900000 0.01489 291260000.0000000000 291260000.0 2560.0000000000 2560.0 19456000000.0000000000 19456000000.0 19747260000.0000000000 19747260000.0 0.0000058883 5.8883e-06 0.0000002640 2.64e-07 Very Low 25.5367380369 0.0000100633 1.00633e-05 76.4807577600 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.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000678921 6.78921e-05 0.0000000585 5.85e-08 0.0005670888 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 1.0000000000 1.0 0.0312500000 0.03125 291260000.0000000000 291260000.0 2560.0000000000 2560.0 19456000000.0000000000 19456000000.0 0.0000000000 0.0 19747260000.0000000000 19747260000.0 0.0000002273 2.273e-07 0.0000001163 1.163e-07 0.0000219536 2.19536e-05 Very Low 2.0684680481 0.0000093077 9.3077e-06 70.7382056640 70.738205664 0.0000000000 0.0 72.8066737121 4.0292908096 Very Low 3.4735129238 Very Low 0.0000000000 0.0 0.0000165662 1.65662e-05 291260000.0000000000 291260000.0 2560.0000000000 2560.0 19456000000.0000000000 19456000000.0 0.0000000000 0.0 19747260000.0000000000 19747260000.0 0.0594988816 0.0000396718 3.96718e-05 0.0314801129 Very Low 287.0856863831 0.0000016825 1.6825e-06 12.7866716181 0.0000000000 0.0 299.8723580012 4.7686568890 4.768656889 Very Low 4.2594450047 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0015593140 0.001559314 0.0000000365 3.65e-08 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0477752648 0.0001095931 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000000122 1.22e-08 0.0000018990 1.899e-06
29 28 T15009031502 Hawaii HI 15 Maui County 9 15009 31502 15009031502 5036 709032000.0000000000 709032000.0 4590410.1368262004 4590410.1368262 33.4481475347 20.8852252798 Relatively Moderate 74.9817841873 77.9141104294 24.1981968780 24.198196878 Relatively Moderate 82.5403153741 86.8098159509 713199.3757334640 713199.375733464 567506.0158586083 0.0191292960 0.019129296 145382.6496820149 145382.649682015 310.7101928407 27.7949242800 27.79492428 Relatively Low 14.3120947665 19.3732193732 -2.5630000000 -2.563 51.8016000000 51.8016 Relatively Low 16.9583200764 80.0000000000 80.0 2.5900800000 2.59008 Not Applicable Not Applicable Not Applicable 0.0699710120 0.069971012 23099293.9524668790 23099293.95246688 164.0660003281 1246901602.4934508801 1246901602.4934509 1270000896.4459178448 1270000896.4459178 0.0000458100 4.581e-05 0.0000000022 2.2e-09 Very Low 74.0418791841 0.0000000248 2.48e-08 0.1886672111 74.2305463952 1.3852688343 Very Low 1.1953078769 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 392.0000000000 392.0 21.7777777770 21.777777777 0.0000000000 0.0 0.0000000000 0.0 0.0000001625 1.625e-07 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0058748695 709032000.0000000000 709032000.0 5036.0000000000 5036.0 38273600000.0000000000 38273600000.0 38982632000.0000000000 38982632000.0 0.0008599048 0.0000075108 7.5108e-06 Very Low 550446.2000000000 550446.2 0.0158187400 0.01581874 120222.4240000000 120222.424 670668.6240000001 36.2474880052 Very High 35.2789273681 Relatively High 1.0000000000 1.0 0.0312500000 0.03125 709032000.0000000000 709032000.0 5036.0000000000 5036.0 38273600000.0000000000 38273600000.0 4590410.1368262004 4590410.1368262 38987222410.1368255615 38987222410.136826 0.0000180224 1.80224e-05 0.0000000210 2.1e-08 0.0002275779 Very Low 399.3257147569 0.0000033097 3.3097e-06 25.1539543620 25.153954362 32.6461288135 457.1257979323 4.9511608580 4.951160858 Very Low 4.5572417759 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0100000000 0.01 709032000.0000000000 709032000.0 5036.0000000000 5036.0 38273600000.0000000000 38273600000.0 4590410.1368262004 4590410.1368262 38987222410.1368255615 38987222410.136826 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 181.0495931678 0.0000164999 1.64999e-05 125.3990502756 11.2960673245 317.7447107678 2.7710803876 Very Low 3.2499679737 Very Low 0.0000000000 0.0 0.0148900000 0.01489 709032000.0000000000 709032000.0 5036.0000000000 5036.0 38273600000.0000000000 38273600000.0 38982632000.0000000000 38982632000.0 0.0000058883 5.8883e-06 0.0000016270 1.627e-06 Relatively Low 62.1656404717 0.0001220023 927.2173818080 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.0000000000 107.0 4.4583333330 4.458333333 49165319.4555135295 49165319.45551353 253.3727385673 1925632813.1116755009 1925632813.1116757 13966.8999917194 1974812099.4671807289 1974812099.467181 0.0000305947 3.05947e-05 0.0000027267 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.0000000000 1.0 0.0312500000 0.03125 709032000.0000000000 709032000.0 5036.0000000000 5036.0 38273600000.0000000000 38273600000.0 4590410.1368262004 4590410.1368262 38987222410.1368255615 38987222410.136826 0.0000005132 5.132e-07 0.0000000835 8.35e-08 0.0000133875 1.33875e-05 Very Low 11.3703899242 0.0000131341 1.31341e-05 99.8194709720 99.819470972 1.9204476360 1.920447636 113.1103085322 4.6666541082 Very Low 4.6029446457 Very Low 0.0000000000 0.0 0.0003844310 0.000384431 709032000.0000000000 709032000.0 5036.0000000000 5036.0 38273600000.0000000000 38273600000.0 4590410.1368262004 4590410.1368262 38987222410.1368255615 38987222410.136826 0.0009982937 0.0000006656 6.656e-07 0.0002346970 0.000234697 Very Low 272.1088122904 0.0000012887 1.2887e-06 9.7937574448 0.4141689076 282.3167386428 4.6737212510 4.673721251 Very Low 4.7765928461 Very Low 5.0000000000 5.0 0.0228352210 0.022835221 529748701.1041623354 529748701.1041623 3369.4402347956 25607745784.4463996887 25607745784.4464 26137494485.5505599976 26137494485.55056 0.0007732141 0.0000000366 3.66e-08 Very Low 9353.5162751160 9353.516275116 0.0000028191 2.8191e-06 21.4250892171 9374.9413643331 22.5549531321 Relatively Moderate 17.1365470909 Relatively Moderate 1.0000000000 1.0 0.0035310000 0.003531 709031990.6309193373 709031990.6309193 5035.9999867482 38273599899.2860870361 38273599899.28609 38982631889.9169998169 38982631889.917 0.0000000070 7e-09 0.0000040104 4.0104e-06 Very Low 0.0175944103 0.0000713130 7.1313e-05 541.9785211903 541.9961156007 9.4179537409 Very Low 8.1192033408 Very Low Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000006427 6.427e-07 0.0000676868 6.76868e-05 0.0000108687 1.08687e-05
30 29 T15009031700 Hawaii HI 15 Maui County 9 15009 31700 15009031700 4503 555074000.0000000000 555074000.0 1276731.1537544020 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.7549857550 85.754985755 2.4810000000 2.481 51.8016000000 51.8016 Relatively Low 16.9583200764 80.0000000000 80.0 2.5900800000 2.59008 Not Applicable Not Applicable Not Applicable 0.0699710120 0.069971012 69959563.7247151732 69959563.72471517 567.5421933875 4313320669.7452640533 4313320669.745264 4383280233.4699792862 4383280233.469979 0.0000001491 1.491e-07 0.0000000000 0.0 Very Low 0.7298131267 0.0000000006 6e-10 0.0046429426 0.7344560692 0.2973914322 Very Low 0.3310791736 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 770.0000000000 770.0 42.7777777770 42.777777777 0.0000000000 0.0 0.0000000000 0.0 0.0000001625 1.625e-07 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0050032569 555074000.0000000000 555074000.0 4503.0000000000 4503.0 34222800000.0000000000 34222800000.0 34777874000.0000000000 34777874000.0 0.0008599048 0.0000075108 7.5108e-06 Very Low 300975.7000000000 300975.7 0.0068167600 0.00681676 51807.3760000000 51807.376 352783.0760000000 352783.076 29.2602365400 29.26023654 Relatively High 36.7428620471 Relatively High 1.0000000000 1.0 0.0312500000 0.03125 555074000.0000000000 555074000.0 4503.0000000000 4503.0 34222800000.0000000000 34222800000.0 1276731.1537544020 1276731.153754402 34779150731.1537551880 34779150731.153755 0.0000180224 1.80224e-05 0.0000000210 2.1e-08 0.0002275779 Very Low 312.6168096693 0.0000029594 2.9594e-06 22.4917109794 9.0798705263 344.1883911751 4.5042988642 Very Low 5.3490902368 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0100000000 0.01 555074000.0000000000 555074000.0 4503.0000000000 4503.0 34222800000.0000000000 34222800000.0 1276731.1537544020 1276731.153754402 34779150731.1537551880 34779150731.153755 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 141.7367930897 0.0000147536 1.47536e-05 112.1270697758 3.1417761460 3.141776146 257.0056390115 2.5818870076 Very Low 3.9068333014 Very Low 0.0000000000 0.0 0.0148900000 0.01489 555074000.0000000000 555074000.0 4503.0000000000 4503.0 34222800000.0000000000 34222800000.0 34777874000.0000000000 34777874000.0 0.0000058883 5.8883e-06 0.0000016270 1.627e-06 Relatively Low 48.6670992553 0.0001090898 829.0825794840 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.0000000000 107.0 4.4583333330 4.458333333 53882794.8115416467 53882794.81154165 393.4555693181 2990262326.8174185753 2990262326.8174186 330715.4008730415 3044475837.0298333168 3044475837.0298333 0.0000305947 3.05947e-05 0.0000027267 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.0000000000 1.0 0.0312500000 0.03125 555074000.0000000000 555074000.0 4503.0000000000 4503.0 34222800000.0000000000 34222800000.0 1276731.1537544020 1276731.153754402 34779150731.1537551880 34779150731.153755 0.0000005132 5.132e-07 0.0000000835 8.35e-08 0.0000133875 1.33875e-05 Very Low 8.9014428359 0.0000117441 1.17441e-05 89.2547811335 0.5341342610 0.534134261 98.6903582304 4.4592633895 Very Low 5.6748051881 Very Low 0.0000000000 0.0 0.0024062802 555074000.0000000000 555074000.0 4503.0000000000 4503.0 34222800000.0000000000 34222800000.0 1276731.1537544020 1276731.153754402 34779150731.1537551880 34779150731.153755 0.0002794641 0.0000001863 1.863e-07 0.0000657015 6.57015e-05 Very Low 373.2700670825 0.0000020191 2.0191e-06 15.3447945665 0.2018463811 388.8167080301 5.1999468378 Very Low 6.8569915193 Very Low 7.0000000000 7.0 0.0319693090 0.031969309 84493307.1627601832 84493307.16276018 678.6567944610 678.656794461 5157791637.9032754898 5157791637.9032755 5242284945.0660352707 5242284945.066035 0.0007732141 0.0000000366 3.66e-08 Very Low 2088.6003439168 0.0000007949 7.949e-07 6.0414768162 2094.6418207330 2094.641820733 13.6863927662 Relatively Moderate 13.4161554257 Relatively Moderate 1.0000000000 1.0 0.0035310000 0.003531 555073174.0393439531 555073174.039344 4502.9919424707 34222738762.7770843506 34222738762.77709 34777811936.8164215088 34777811936.81642 0.0000000070 7e-09 0.0000040104 4.0104e-06 Very Low 0.0137739698 0.0000637652 6.37652e-05 484.6157506621 484.6295246319 9.0732132399 Very Low 10.0919635959 Very Low Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000010934 1.0934e-06 0.0049143834 0.0000148370 1.4837e-05
31 30 T15001021202 Hawaii HI 15 Hawaii County 1 15001 21202 15001021202 8451 921317000.0000000000 921317000.0 67149035.7106963694 67149035.71069637 934.5492187546 57.9621366282 Very High 99.8872681780 99.887268178 100.0000000000 100.0 50.9009757018 Very High 99.7415416764 100.0000000000 100.0 6638046.0138780484 6638046.013878048 4824851.1298461528 4824851.129846153 0.2383117837 1811169.5564462843 2025.3275856100 2025.32758561 35.9442214511 Relatively High 86.9723415315 86.6096866097 2.5330000000 2.533 50.7751980000 50.775198 Relatively Low 9.3859370029 40.0000000000 40.0 2.5387599000 2.5387599 Not Applicable Not Applicable Not Applicable 0.0699710120 0.069971012 83809817.3656403869 83809817.36564039 768.7655460141 5842618149.7067823410 5842618149.706782 5926427967.0724239349 5926427967.072424 0.0000000015 1.5e-09 0.0000000000 0.0 Very Low 0.0089197982 0.0000000000 0.0 0.0000412276 4.12276e-05 0.0089610257 0.0684634982 Very Low 0.0779399169 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 812.0000000000 812.0 45.1111111110 45.111111111 0.0000000000 0.0 0.0000000000 0.0 0.0000000541 5.41e-08 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0099993129 921317000.0000000000 921317000.0 8451.0000000000 8451.0 64227600000.0000000000 64227600000.0 65148917000.0000000000 65148917000.00001 0.0008505842 0.0000116917 1.16917e-05 Very Low 4823252.0000000000 4823252.0 0.2372857400 0.23728574 1803371.6240000001 1803371.624 6626623.6239999998 6626623.624 77.7808503062 Very High 99.8769515712 Very High 1.0000000000 1.0 0.0312500000 0.03125 921317000.0000000000 921317000.0 8451.0000000000 8451.0 64227600000.0000000000 64227600000.0 67149035.7106963992 67149035.7106964 65216066035.7107009888 65216066035.7107 0.0000180224 1.80224e-05 0.0000000760 7.6e-08 0.0002275779 Very Low 518.8842951283 0.0000200788 2.00788e-05 152.5985324699 477.5512436032 1149.0340712014 6.7319274673 Relatively Low 8.1750345355 Relatively Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 1.0000000000 1.0 0.0145222912 916526100.2799532413 916526100.2799532 8404.8988265971 63877231082.1376800537 63877231082.13767 67149035.7106963992 67149035.7106964 64860906218.1283340454 64860906218.12833 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 339.1880815019 0.0000399097 3.99097e-05 303.3136289789 239.4784683418 881.9801788226 3.8944185305 Very Low 6.0259803913 Very Low 0.0000000000 0.0 0.0148900000 0.01489 921317000.0000000000 921317000.0 8451.0000000000 8451.0 64227600000.0000000000 64227600000.0 65148917000.0000000000 65148917000.00001 0.0000058883 5.8883e-06 0.0000013610 1.361e-06 Very Low 80.7781050537 0.0001712620 0.000171262 1301.5909400040 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.0000000000 142.0 5.9166666660 5.916666666 33595.8970324927 0.3104494424 2359415.7624847298 0.0000000000 0.0 2393011.6595172225 0.0006245044 0.0000038327 3.8327e-06 0.0003492485 Very Low 124.1363110689 0.0000070400 7.04e-06 53.5042929894 0.0000000000 0.0 177.6406040583 2.5385446927 Very Low 2.7150722173 Very Low 1.0000000000 1.0 0.0312500000 0.03125 921317000.0000000000 921317000.0 8451.0000000000 8451.0 64227600000.0000000000 64227600000.0 67149035.7106963992 67149035.7106964 65216066035.7107009888 65216066035.7107 0.0000083601 8.3601e-06 0.0000003102 3.102e-07 0.0006212585 Very Low 240.6962221409 0.0000819342 8.19342e-05 622.6998114826 1303.6533254449 2167.0493590684 12.4870873874 Relatively Low 16.2497403306 Relatively Low 2.0000000000 2.0 0.0070628791 921317000.0000000000 921317000.0 8451.0000000000 8451.0 64227600000.0000000000 64227600000.0 67149035.7106963694 67149035.71069637 65216066035.7107009888 65216066035.7107 0.0000416555 4.16555e-05 0.0000000278 2.78e-08 0.0000097931 9.7931e-06 Very Low 271.0588231698 0.0000016578 1.6578e-06 12.5993870449 4.6445482201 288.3027584348 4.7065231209 Very Low 6.3464133912 Very Low 21.0000000000 21.0 0.0959079280 0.095907928 379409.9916177188 1.3972932715 10619428.8636823799 10619428.86368238 10998838.8553000987 10998838.855300099 0.0006654598 0.0000038734 3.8734e-06 Very Low 24.2150337388 0.0000005191 5.191e-07 3.9450254625 28.1600592013 3.2543450395 Very Low 3.2621214124 Relatively Low 4.0000000000 4.0 0.0207448000 0.0207448 921315089.3788785934 921315089.3788786 8450.9785947338 64227437319.9771652222 64227437319.97716 65148752409.3560485840 65148752409.35605 0.0000000070 7e-09 0.0000040043 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.0000000000 53.0 1.2887045444 80084.4603006705 3.5257309566 26795555.2704130225 26795555.270413022 0.0000000000 0.0 26875639.7307136953 26875639.730713695 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 Very Low 0.0297382894 0.0000016269 1.6269e-06 12.3642771750 12.364277175 0.0000000000 0.0 12.3940154644 3.6838330638 Very Low 2.5516985128 Very Low November 2021 0.0000000383 3.83e-08 0.0000301617 3.01617e-05 0.0000017093 1.7093e-06
32 31 T15001021300 Hawaii HI 15 Hawaii County 1 15001 21300 15001021300 5972 691942000.0000000000 691942000.0 41505347.6819777489 41505347.68197775 314.4847400233 44.8648895425 Very High 99.5614457169 98.7730061350 98.773006135 40.9441045600 40.94410456 Very High 99.0610264095 97.8527607362 3454904.6788427671 3454904.678842767 2421751.9646799425 0.1357247505 1031508.1034963035 1644.6106665214 34.5881374634 Relatively Moderate 78.0811424507 75.4985754986 1.6850000000 1.685 50.7751980000 50.775198 Relatively Low 9.3859370029 40.0000000000 40.0 2.5387599000 2.5387599 Not Applicable Not Applicable Not Applicable 0.0699710120 0.069971012 59825905.4567175135 59825905.45671751 516.3442996487 3924216677.3300786018 3924216677.330079 3984042582.7867960930 3984042582.786796 0.0000003187 3.187e-07 0.0000000000 0.0 Very Low 1.3342353514 0.0000000008 8e-10 0.0059722724 1.3402076238 0.3634102780 0.363410278 Very Low 0.3981036443 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 532.0000000000 532.0 29.5555555550 29.555555555 0.0000000000 0.0 0.0000000000 0.0 0.0000000541 5.41e-08 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0099990732 691942000.0000000000 691942000.0 5972.0000000000 5972.0 45387200000.0000000000 45387200000.0 46079142000.0000000000 46079142000.0 0.0008505842 0.0000116917 1.16917e-05 Very Low 2014339.2000000000 2014339.2 0.1113426200 0.11134262 846203.9120000000 846203.912 2860543.1120000002 2860543.112 58.7838578297 Very High 72.6354733640 72.635473364 Very High 1.0000000000 1.0 0.0312500000 0.03125 691942000.0000000000 691942000.0 5972.0000000000 5972.0 45387200000.0000000000 45387200000.0 41505347.6819777414 41505347.68197774 46120647347.6819763184 46120647347.68198 0.0000180224 1.80224e-05 0.0000000760 7.6e-08 0.0002275779 Very Low 389.7006534547 0.0000141889 1.41889e-05 107.8355740040 107.835574004 295.1781837538 792.7144112124 5.9484074704 Very Low 6.9510269670 6.951026967 Relatively Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 1.0000000000 1.0 0.0144927536 683648413.1210414171 683648413.1210414 5903.0589820760 5903.058982076 44863248263.7773818970 44863248263.77738 41505347.6819777414 41505347.68197774 45588402024.5804061890 45588402024.58041 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 252.9970378585 0.0000280300 2.803e-05 213.0279351202 148.0235268574 614.0484998361 3.4516273867 Very Low 5.1393369516 Very Low 0.0000000000 0.0 0.0148900000 0.01489 691942000.0000000000 691942000.0 5972.0000000000 5972.0 45387200000.0000000000 45387200000.0 46079142000.0000000000 46079142000.0 0.0000058883 5.8883e-06 0.0000013610 1.361e-06 Very Low 60.6672443546 0.0001210243 919.7847702880 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.0000000000 142.0 5.9166666660 5.916666666 108451273.1736082137 108451273.17360821 1031.9646383704 7842931251.6148195267 7842931251.61482 190128.1686397818 7951572652.9570655823 7951572652.957066 0.0006245044 0.0000038327 3.8327e-06 0.0003492485 Very Low 400725.7484292681 400725.748429268 0.0234017841 177853.5594508763 177853.5594508764 392.8783255313 578972.1862056758 37.6377194155 Very High 38.7362849875 Very High 1.0000000000 1.0 0.0312500000 0.03125 691942000.0000000000 691942000.0 5972.0000000000 5972.0 45387200000.0000000000 45387200000.0 41505347.6819777414 41505347.68197774 46120647347.6819763184 46120647347.68198 0.0000083601 8.3601e-06 0.0000003102 3.102e-07 0.0006212585 Very Low 180.7714666508 0.0000578998 5.78998e-05 440.0382527704 805.7983849982 1426.6081044193 10.8627498557 Relatively Low 13.6026382415 Relatively Low 0.0000000000 0.0 0.0023371140 0.002337114 691942000.0000000000 691942000.0 5972.0000000000 5972.0 45387200000.0000000000 45387200000.0 41505347.6819777489 41505347.68197775 46120647347.6819763184 46120647347.68198 0.0001198082 0.0000000799 7.99e-08 0.0000281667 2.81667e-05 Very Low 193.7474988081 0.0000011150 1.115e-06 8.4736995875 2.7322453807 204.9534437764 4.2005130404 Very Low 5.4502921677 Very Low 19.0000000000 19.0 0.0867738390 0.086773839 97112232.8858421743 97112232.88584217 779.5012678000 779.5012678 5924209635.2800340652 5924209635.280034 6021321868.1658763885 6021321868.165876 0.0006654598 0.0000038734 3.8734e-06 Very Low 5607.6972377257 0.0002619991 1991.1930687700 1991.19306877 7598.8903064956 21.0298318769 Relatively Moderate 20.2847855136 Relatively Moderate 4.0000000000 4.0 0.0207448000 0.0207448 691941637.7987550497 691941637.798755 5971.9970579512 45387177640.4291381836 45387177640.42914 46079119278.2278976440 46079119278.2279 0.0000000070 7e-09 0.0000040043 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.0000000000 53.0 0.9643149741 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000039558 3.9558e-06 0.0000396241 3.96241e-05 0.0005806917
33 32 T15003010308 Hawaii HI 15 Honolulu County 3 15003 10308 15003010308 3319 402502000.0000000000 402502000.0 0.0000000000 0.0 3.2978566421 14.6608364994 Relatively Low 45.1697163832 34.0490797546 14.8377632042 Relatively Low 38.7288799681 32.5153374233 164424.7705555970 164424.770555597 141142.5125061344 0.0030634550 0.003063455 23282.2580494626 0.0000000000 0.0 31.5753282267 Relatively Moderate 47.4995212431 49.5726495726 -0.1990000000 -0.199 51.4027980000 51.402798 Relatively Low 13.6493795737 60.0000000000 60.0 2.5701399000 2.5701399 Not Applicable Not Applicable Not Applicable 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000478451 4.78451e-05 0.0000000048 4.8e-09 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 133.0000000000 133.0 7.3888888880 7.388888888 0.0000000000 0.0 0.0000000000 0.0 0.0000004090 4.09e-07 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0031566579 402502000.0000000000 402502000.0 3319.0000000000 3319.0 25224400000.0000000000 25224400000.0 25626902000.0000000000 25626902000.0 0.0167507621 0.0001397988 Very Low 140331.5000000000 140331.5 0.0030228500 0.00302285 22973.6600000000 22973.66 163305.1600000000 163305.16 22.6347249226 Relatively Moderate 25.2203710271 Relatively Moderate 1.0000000000 1.0 0.0312500000 0.03125 402502000.0000000000 402502000.0 3319.0000000000 3319.0 25224400000.0000000000 25224400000.0 0.0000000000 0.0 25626902000.0000000000 25626902000.0 0.0000180224 1.80224e-05 0.0000000210 2.1e-08 0.0002275779 Very Low 226.6884976151 0.0000021788 2.1788e-06 16.5585095325 0.0000000000 0.0 243.2470071476 4.0121543080 4.012154308 Very Low 4.2277709887 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0100000000 0.01 402502000.0000000000 402502000.0 3319.0000000000 3319.0 25224400000.0000000000 25224400000.0 0.0000000000 0.0 25626902000.0000000000 25626902000.0 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 102.7779047338 0.0000108743 1.08743e-05 82.6448466769 0.0000000000 0.0 185.4227514107 2.3156736562 Very Low 3.1091817133 Very Low 0.0000000000 0.0 0.0148900000 0.01489 402502000.0000000000 402502000.0 3319.0000000000 3319.0 25224400000.0000000000 25224400000.0 25626902000.0000000000 25626902000.0 0.0000058883 5.8883e-06 0.0000002640 2.64e-07 Very Low 35.2900780517 0.0000130469 1.30469e-05 99.1561074240 99.156107424 134.4461854757 6.9847095260 6.984709526 Very Low 5.6967889747 Very Low Insufficient Data Insufficient Data Insufficient Data Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000678921 6.78921e-05 0.0000000585 5.85e-08 0.0005670888 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 1.0000000000 1.0 0.0312500000 0.03125 402502000.0000000000 402502000.0 3319.0000000000 3319.0 25224400000.0000000000 25224400000.0 0.0000000000 0.0 25626902000.0000000000 25626902000.0 0.0000002273 2.273e-07 0.0000001163 1.163e-07 0.0000219536 2.19536e-05 Very Low 2.8584856358 0.0000120672 1.20672e-05 91.7109783589 0.0000000000 0.0 94.5694639947 4.3963121986 Very Low 4.9642935990 4.964293599 Very Low 0.0000000000 0.0 0.0000900893 9.00893e-05 402502000.0000000000 402502000.0 3319.0000000000 3319.0 25224400000.0000000000 25224400000.0 0.0000000000 0.0 25626902000.0000000000 25626902000.0 0.0122279031 0.0000081531 8.1531e-06 0.0314801129 Very Low 443.3975400980 443.397540098 0.0000024378 2.4378e-06 18.5276074704 0.0000000000 0.0 461.9251475684 5.5073304115 Very Low 6.4439737658 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0015593140 0.001559314 0.0000000365 3.65e-08 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0477752648 0.0001095931 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000000122 1.22e-08 0.0000020149 2.0149e-06
34 33 T15001021504 Hawaii HI 15 Hawaii County 1 15001 21504 15001021504 3965 567799000.0000000000 567799000.0 0.0000000000 0.0 11.9815794264 39.0504271072 Very High 98.9400459176 96.0122699387 38.7614777296 Very High 98.7090831603 96.3190184049 2931317.8565635281 2931317.856563528 2359248.5526345233 0.0752722768 572069.3039290046 0.0000000000 0.0 31.8008091728 Relatively Moderate 50.0218860285 52.9914529915 -0.0580000000 -0.058 50.7751980000 50.775198 Relatively Low 9.3859370029 40.0000000000 40.0 2.5387599000 2.5387599 Not Applicable Not Applicable Not Applicable 0.0679710120 0.067971012 84051061.9140487611 84051061.91404876 586.9373853938 4460724128.9927358627 4460724128.992736 4544775190.9067840576 4544775190.906784 0.0000006689 6.689e-07 0.0000000000 0.0 Very Low 3.8215319092 0.0000000005 5e-10 0.0041417707 3.8256736799 0.5155163995 Very Low 0.5192212128 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 119.0000000000 119.0 6.6111111110 6.611111111 0.0000000000 0.0 0.0000000000 0.0 0.0000000541 5.41e-08 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0099991023 567799000.0000000000 567799000.0 3965.0000000000 3965.0 30134000000.0000000000 30134000000.0 30701799000.0000000000 30701798999.999996 0.0008505842 0.0000116917 1.16917e-05 Very Low 2292113.7000000002 2292113.7 0.0742325100 0.07423251 564167.0760000001 2856280.7760000001 2856280.776 58.7546464651 Very High 66.7488670584 Very High 1.0000000000 1.0 0.0312500000 0.03125 567799000.0000000000 567799000.0 3965.0000000000 3965.0 30134000000.0000000000 30134000000.0 0.0000000000 0.0 30701799000.0000000000 30701798999.999996 0.0000180224 1.80224e-05 0.0000000760 7.6e-08 0.0002275779 Very Low 319.7835097897 0.0000094205 9.4205e-06 71.5954539393 0.0000000000 0.0 391.3789637291 4.7014045019 Very Low 5.0511105804 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0144927536 567799000.0000000000 567799000.0 3965.0000000000 3965.0 30134000000.0000000000 30134000000.0 0.0000000000 0.0 30701799000.0000000000 30701798999.999996 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 210.1247693141 0.0000188273 1.88273e-05 143.0878067314 0.0000000000 0.0 353.2125760456 2.8705717113 Very Low 3.9297288144 Very Low 0.0000000000 0.0 0.0148900000 0.01489 567799000.0000000000 567799000.0 3965.0000000000 3965.0 30134000000.0000000000 30134000000.0 30701799000.0000000000 30701798999.999996 0.0000058883 5.8883e-06 0.0000013610 1.361e-06 Very Low 49.7827862412 0.0000803519 8.03519e-05 610.6742488600 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.0000000000 142.0 5.9166666660 5.916666666 17678751.9168055244 17678751.916805524 25.0000000000 25.0 190000000.0000000000 190000000.0 0.0000000000 0.0 207678751.9168055058 207678751.9168055 0.0006245044 0.0000038327 3.8327e-06 0.0003492485 Very Low 65322.7102444127 0.0005669231 4308.6156452932 0.0000000000 0.0 69631.3258897059 69631.3258897058 18.5782850353 Relatively Moderate 17.5796928591 Relatively Moderate 1.0000000000 1.0 0.0312500000 0.03125 567799000.0000000000 567799000.0 3965.0000000000 3965.0 30134000000.0000000000 30134000000.0 0.0000000000 0.0 30701799000.0000000000 30701798999.999996 0.0000083601 8.3601e-06 0.0000003102 3.102e-07 0.0006212585 Very Low 148.3388174050 148.338817405 0.0000384415 3.84415e-05 292.1553369448 0.0000000000 0.0 440.4941543498 7.3420656985 Very Low 8.4530342805 Very Low 0.0000000000 0.0 0.0001412408 567799000.0000000000 567799000.0 3965.0000000000 3965.0 30134000000.0000000000 30134000000.0 0.0000000000 0.0 30701799000.0000000000 30701798999.999996 0.0027075331 0.0000018053 1.8053e-06 0.0314801129 Very Low 217.1343505456 0.0000010110 1.011e-06 7.6835859614 0.0000000000 0.0 224.8179365070 224.817936507 4.3320578719 Very Low 5.1679616475 Very Low 15.0000000000 15.0 0.0685056630 0.068505663 18932200.4766563512 18932200.47665635 25.0024907062 190018929.3672243655 190018929.36722437 208951129.8438806832 208951129.84388068 0.0006654598 0.0000038734 3.8734e-06 Very Low 863.0766648539 0.0000066344 6.6344e-06 50.4216998251 913.4983646790 913.498364679 10.3789877739 Relatively Low 9.2045087312 Relatively Low 3.0000000000 3.0 0.0200386000 0.0200386 567798879.6827729940 567798879.682773 3964.9999981359 30133999985.8324813843 30133999985.83248 30701798865.5152511597 30701798865.51525 0.0000000070 7e-09 0.0000040043 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.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000001803 1.803e-07 0.0001167168
35 34 T15001021604 Hawaii HI 15 Hawaii County 1 15001 21604 15001021604 7587 965922000.0000000000 965922000.0 0.0000000000 0.0 3.0342188606 39.5529446793 Very High 99.0376551781 96.3190184049 41.0047129501 Very High 99.0665255228 98.1595092025 3470269.9917778168 3470269.991777817 2636463.2241591662 2636463.224159166 0.1097114168 833806.7676186502 0.0000000000 0.0 30.4479234964 Relatively Low 35.4239050146 37.3219373219 -0.9040000000 -0.904 50.7751980000 50.775198 Relatively Low 9.3859370029 40.0000000000 40.0 2.5387599000 2.5387599 Not Applicable Not Applicable Not Applicable 0.0699710120 0.069971012 29819708.4730784819 29819708.47307848 234.2240141391 1780102507.4569923878 1780102507.4569924 1809922215.9300704002 1809922215.9300704 0.0000156136 1.56136e-05 0.0000000006 6e-10 Very Low 32.5779960448 0.0000000096 9.6e-09 0.0727345758 32.6507306206 1.0535071298 Very Low 1.0159373566 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 49.0000000000 49.0 2.7222222220 2.722222222 0.0000000000 0.0 0.0000000000 0.0 0.0000000541 5.41e-08 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0099990193 965922000.0000000000 965922000.0 7587.0000000000 7587.0 57661200000.0000000000 57661200000.0 58627122000.0000000000 58627122000.0 0.0008505842 0.0000116917 1.16917e-05 Very Low 2358086.4000000004 0.1017149700 0.10171497 773033.7720000000 773033.772 3131120.1719999998 3131120.172 60.5817522328 Very High 65.8966020412 Very High 1.0000000000 1.0 0.0312500000 0.03125 965922000.0000000000 965922000.0 7587.0000000000 7587.0 57661200000.0000000000 57661200000.0 0.0000000000 0.0 58627122000.0000000000 58627122000.0 0.0000180224 1.80224e-05 0.0000000760 7.6e-08 0.0002275779 Very Low 544.0057614457 0.0000180260 1.8026e-05 136.9974045493 0.0000000000 0.0 681.0031659950 681.003165995 5.6547251774 Very Low 5.8168822061 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0144927536 965922000.0000000000 965922000.0 7587.0000000000 7587.0 57661200000.0000000000 57661200000.0 0.0000000000 0.0 58627122000.0000000000 58627122000.0 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 357.4577225839 0.0000360260 3.6026e-05 273.7975257683 0.0000000000 0.0 631.2552483523 3.4835711241 Very Low 4.5660259096 Very Low 0.0000000000 0.0 0.0148900000 0.01489 965922000.0000000000 965922000.0 7587.0000000000 7587.0 57661200000.0000000000 57661200000.0 58627122000.0000000000 58627122000.0 0.0000058883 5.8883e-06 0.0000013610 1.361e-06 Very Low 84.6889276868 0.0001537528 1168.5209397480 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.0000000000 142.0 5.9166666660 5.916666666 72095984.5884209126 72095984.58842091 299.4473453306 2275799824.5124926567 2275799824.5124927 0.0000000000 0.0 2347895809.1009144783 2347895809.1009145 0.0006245044 0.0000038327 3.8327e-06 0.0003492485 Very Low 266393.5289786026 0.0067905448 51608.1406813159 0.0000000000 0.0 318001.6696599185 318001.6696599184 30.8233993797 Relatively High 27.9258051760 27.925805176 Relatively High 1.0000000000 1.0 0.0312500000 0.03125 965922000.0000000000 965922000.0 7587.0000000000 7587.0 57661200000.0000000000 57661200000.0 0.0000000000 0.0 58627122000.0000000000 58627122000.0 0.0000083601 8.3601e-06 0.0000003102 3.102e-07 0.0006212585 Very Low 252.3493827665 0.0000735575 7.35575e-05 559.0372109459 0.0000000000 0.0 811.3865937124 9.0001032650 9.000103265 Very Low 9.9211351379 Very Low 0.0000000000 0.0 0.0000396076 3.96076e-05 965922000.0000000000 965922000.0 7587.0000000000 7587.0 57661200000.0000000000 57661200000.0 0.0000000000 0.0 58627122000.0000000000 58627122000.0 0.0096550590 0.009655059 0.0000064377 6.4377e-06 0.0314801129 Very Low 369.3822041738 0.0000019345 1.9345e-06 14.7024884463 0.0000000000 0.0 384.0846926201 5.1787657086 Very Low 5.9153319159 Very Low 14.0000000000 14.0 0.0639386180 0.063938618 243079736.7117206454 243079736.71172065 1267.0762440467 9629779454.7548809052 9629779454.75488 9872859191.4666023254 9872859191.466602 0.0006654598 0.0000038734 3.8734e-06 Very Low 10342.6971602800 10342.69716028 0.0003138052 2384.9195180287 12727.6166783087 24.9747665844 Relatively High 21.2063810389 Relatively High 3.0000000000 3.0 0.0200386000 0.0200386 965922000.0000000000 965922000.0 7587.0000000000 7587.0 57661200000.0000000000 57661200000.0 58627122000.0000000000 58627122000.0 0.0000000070 7e-09 0.0000040043 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.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000009324 9.324e-07 0.0002774903
36 35 T15001022000 Hawaii HI 15 Hawaii County 1 15001 22000 15001022000 2588 255562000.0000000000 255562000.0 1087339.0101268515 464.1587560056 20.7476698713 Relatively Moderate 74.4689918751 77.3006134969 19.5680692358 Relatively Moderate 64.1512806060 64.151280606 75.1533742331 377142.8388196314 279582.4595634430 279582.459563443 0.0128327356 97528.7908128289 31.5884433596 33.4687285113 Relatively Moderate 68.2447405138 66.3817663818 0.9850000000 0.985 50.7751980000 50.775198 Relatively Low 9.3859370029 40.0000000000 40.0 2.5387599000 2.5387599 Not Applicable Not Applicable Not Applicable 0.0679710120 0.067971012 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000478451 4.78451e-05 0.0000000048 4.8e-09 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 1631.0000000000 1631.0 90.6111111110 90.611111111 0.0000000000 0.0 0.0000000000 0.0 0.0000000541 5.41e-08 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0099812096 255562000.0000000000 255562000.0 2588.0000000000 2588.0 19668800000.0000000000 19668800000.0 19924362000.0000000000 19924362000.0 0.0008505842 0.0000116917 1.16917e-05 Very Low 279213.3000000000 279213.3 0.0125324300 0.01253243 95246.4680000000 95246.468 374459.7680000000 374459.768 29.8476612003 Relatively High 35.6872456781 Relatively High 1.0000000000 1.0 0.0312500000 0.03125 255562000.0000000000 255562000.0 2588.0000000000 2588.0 19668800000.0000000000 19668800000.0 1087339.0101268515 19925449339.0101280212 19925449339.010128 0.0000180224 1.80224e-05 0.0000000760 7.6e-08 0.0002275779 Very Low 143.9321191635 0.0000061488 6.1488e-06 46.7311563165 7.7329494164 198.3962248964 3.7486330273 Very Low 4.2387053459 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0102889159 255562000.0000000000 255562000.0 2588.0000000000 2588.0 19668800000.0000000000 19668800000.0 1087339.0101268515 19925449339.0101280212 19925449339.010128 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 64.6707563155 0.0000084808 8.4808e-06 64.4537491694 2.6757205341 131.8002260189 2.0666252581 Very Low 2.9775355575 Very Low 0.0000000000 0.0 0.0148900000 0.01489 255562000.0000000000 255562000.0 2588.0000000000 2588.0 19668800000.0000000000 19668800000.0 19924362000.0000000000 19924362000.0 0.0000058883 5.8883e-06 0.0000013610 1.361e-06 Very Low 22.4068524555 0.0000524466 5.24466e-05 398.5939359520 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.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0006245044 0.0000038327 3.8327e-06 0.0003492485 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 1.0000000000 1.0 0.0312500000 0.03125 255562000.0000000000 255562000.0 2588.0000000000 2588.0 19668800000.0000000000 19668800000.0 1087339.0101268515 19925449339.0101280212 19925449339.010128 0.0000083601 8.3601e-06 0.0000003102 3.102e-07 0.0006212585 Very Low 66.7661705175 0.0000250912 2.50912e-05 190.6930673426 21.1099549152 278.5691927753 6.3020606503 Very Low 7.6362121452 Very Low 0.0000000000 0.0 0.0031985263 255562000.0000000000 255562000.0 2588.0000000000 2588.0 19668800000.0000000000 19668800000.0 1087339.0101268515 19925449339.0101280212 19925449339.010128 0.0000853899 8.53899e-05 0.0000000569 5.69e-08 0.0000200750 2.0075e-05 Very Low 69.7995388104 0.0000004713 4.713e-07 3.5818500352 0.0698184939 73.4512073395 2.9836662624 Very Low 3.7458582497 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0006654598 0.0000038734 3.8734e-06 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 4.0000000000 4.0 0.0203185325 254026689.5486555099 254026689.5486555 2587.9972855693 19668779370.3269805908 19668779370.32698 19922806059.8756408691 19922806059.87564 0.0000000070 7e-09 0.0000040043 4.0043e-06 Very Low 0.0357989244 0.0002076670 0.000207667 1578.2690540132 1578.3048529376 13.4489421521 Relatively Low 14.2432880593 Relatively Low Insufficient Data Insufficient Data Insufficient Data 53.0000000000 53.0 1.2047797578 4169606.0993384407 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 4169606.0993384407 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 Very Low 1.5483272564 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 1.5483272564 1.8415500075 Very Low 1.1877446094 Very Low November 2021 0.0000000358 3.58e-08 0.0000290511 2.90511e-05 0.0000014444 1.4444e-06
37 36 T15001022102 Hawaii HI 15 Hawaii County 1 15001 22102 15001022102 2041 231676000.0000000000 231676000.0 20509139.4740214944 20509139.474021494 318.2069134970 318.206913497 28.2978366690 28.297836669 Relatively High 93.0133765930 93.013376593 89.5705521472 26.8749889144 Relatively High 88.8835425288 89.5705521472 977027.5682842253 977027.5682842254 707863.2039671029 0.0353379791 268568.6410903669 268568.6410903668 595.7232267555 33.2368509427 Relatively Moderate 65.9453396438 64.3874643875 0.8400000000 0.84 50.7751980000 50.775198 Relatively Low 9.3859370029 40.0000000000 40.0 2.5387599000 2.5387599 Not Applicable Not Applicable Not Applicable 0.0579710120 0.057971012 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000478451 4.78451e-05 0.0000000048 4.8e-09 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 238.0000000000 238.0 13.2222222220 13.222222222 0.0000000000 0.0 0.0000000000 0.0 0.0000000541 5.41e-08 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0099869850 0.009986985 231676000.0000000000 231676000.0 2041.0000000000 2041.0 15511600000.0000000000 15511600000.0 15743276000.0000000000 15743276000.0 0.0008505842 0.0000116917 1.16917e-05 Very Low 707499.2999999999 0.0350988900 0.03509889 266751.5640000000 266751.564 974250.8639999999 974250.864 41.0517981635 Very High 48.7433714577 Very High 1.0000000000 1.0 0.0312500000 0.03125 231676000.0000000000 231676000.0 2041.0000000000 2041.0 15511600000.0000000000 15511600000.0 20509139.4740215018 20509139.4740215 15763785139.4740200043 15763785139.47402 0.0000180224 1.80224e-05 0.0000000760 7.6e-08 0.0002275779 Very Low 130.4795612794 0.0000048492 4.8492e-06 36.8540533395 145.8571215132 313.1907361321 4.3648041515 Very Low 4.9012371629 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0117516502 231676000.0000000000 231676000.0 2041.0000000000 2041.0 15511600000.0000000000 15511600000.0 20509139.4740215018 20509139.4740215 15763785139.4740200043 15763785139.47402 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 59.1840584381 0.0000066871 6.6871e-06 50.8219741089 50.4688281351 160.4748606821 2.2067781933 Very Low 3.1574360485 Very Low 0.0000000000 0.0 0.0148900000 0.01489 231676000.0000000000 231676000.0 2041.0000000000 2041.0 15511600000.0000000000 15511600000.0 15743276000.0000000000 15743276000.0 0.0000058883 5.8883e-06 0.0000013610 1.361e-06 Very Low 20.3126049627 0.0000413615 4.13615e-05 314.3470723640 314.347072364 334.6596773267 9.4660032840 9.466003284 Very Low 8.2272664527 Very Low Insufficient Data Insufficient Data Insufficient Data Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0006245044 0.0000038327 3.8327e-06 0.0003492485 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 1.0000000000 1.0 0.0312500000 0.03125 231676000.0000000000 231676000.0 2041.0000000000 2041.0 15511600000.0000000000 15511600000.0 20509139.4740215018 20509139.4740215 15763785139.4740200043 15763785139.47402 0.0000083601 8.3601e-06 0.0000003102 3.102e-07 0.0006212585 Very Low 60.5258971247 0.0000197879 1.97879e-05 150.3881570511 398.1711367054 609.0851908812 8.1795779715 Very Low 9.8425348042 Very Low 0.0000000000 0.0 0.0020489727 231676000.0000000000 231676000.0 2041.0000000000 2041.0 15511600000.0000000000 15511600000.0 20509139.4740214944 20509139.474021494 15763785139.4740200043 15763785139.47402 0.0001241102 0.0000000828 8.28e-08 0.0000291781 2.91781e-05 Very Low 58.9148231709 0.0000003461 3.461e-07 2.6301068292 1.2261404018 62.7710704018 2.8314166101 Very Low 3.5300428471 Very Low 5.0000000000 5.0 0.0228352210 0.022835221 2267345.0026022545 25.8386654596 196373857.4926019609 196373857.49260196 198641202.4952042103 198641202.4952042 0.0006654598 0.0000038734 3.8734e-06 Very Low 34.4543953978 0.0000022854 2.2854e-06 17.3693286400 17.36932864 51.8237240378 3.9880624307 Relatively Low 3.6964876590 3.696487659 Relatively Low 4.0000000000 4.0 0.0204629272 231675410.1738269627 231675410.17382696 2040.9936542881 15511551772.5892314911 15511551772.589231 15743227182.7630596161 15743227182.76306 0.0000000070 7e-09 0.0000040043 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.0000000000 53.0 0.9612593147 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000000358 3.58e-08 0.0000290467 2.90467e-05 0.0000014219 1.4219e-06
38 37 T15001021509 Hawaii HI 15 Hawaii County 1 15001 21509 15001021509 5154 799747000.0000000000 799747000.0 979196.9503299170 979196.950329917 10.1295724573 43.6441792428 Very High 99.4844581311 98.4662576687 39.6085028569 Very High 98.8685574451 96.6257668712 3127715.3237965079 3127715.323796508 2488986.8228898174 0.0840386976 638694.1016106104 34.3992960803 34.7816352966 Relatively Moderate 79.5680245124 77.4928774929 1.8060000000 1.806 50.7751980000 50.775198 Relatively Low 9.3859370029 40.0000000000 40.0 2.5387599000 2.5387599 Not Applicable Not Applicable Not Applicable 0.0699710120 0.069971012 34544698.0026134551 34544698.002613455 222.6246219185 1691947126.5807435513 1691947126.5807436 1726491824.5833570957 1726491824.583357 0.0000109139 1.09139e-05 0.0000000005 5e-10 Very Low 26.3802562625 0.0000000075 7.5e-09 0.0567194769 26.4369757394 0.9819222520 0.981922252 Very Low 1.0816801748 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 28.0000000000 28.0 1.5555555550 1.555555555 0.0000000000 0.0 0.0000000000 0.0 0.0000000541 5.41e-08 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0099990082 799747000.0000000000 799747000.0 5154.0000000000 5154.0 39170400000.0000000000 39170400000.0 39970147000.0000000000 39970147000.0 0.0008505842 0.0000116917 1.16917e-05 Very Low 2391862.2000000002 2391862.2 0.0814548200 0.08145482 619056.6319999999 3010918.8319999999 3010918.832 59.7963856883 Very High 74.2999363956 Very High 1.0000000000 1.0 0.0312500000 0.03125 799747000.0000000000 799747000.0 5154.0000000000 5154.0 39170400000.0000000000 39170400000.0 979196.9503299171 979196.9503299173 39971126196.9503250122 39971126196.950325 0.0000180224 1.80224e-05 0.0000000760 7.6e-08 0.0002275779 Very Low 450.4162610427 0.0000122454 1.22454e-05 93.0650616906 6.9638635375 550.4451862709 5.2674426826 Very Low 6.1897185553 Relatively Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0144927536 799747000.0000000000 799747000.0 5154.0000000000 5154.0 39170400000.0000000000 39170400000.0 979196.9503299171 979196.9503299173 39971126196.9503250122 39971126196.950325 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 295.9615178693 0.0000244732 2.44732e-05 185.9961048913 3.4921809880 3.492180988 485.4498037485 3.1915706156 Very Low 4.7787076778 Very Low 0.0000000000 0.0 0.0148900000 0.01489 799747000.0000000000 799747000.0 5154.0000000000 5154.0 39170400000.0000000000 39170400000.0 39970147000.0000000000 39970147000.0 0.0000058883 5.8883e-06 0.0000013610 1.361e-06 Very Low 70.1192392872 0.0001044473 793.7995154160 793.799515416 863.9187547032 12.9854345870 12.985434587 Relatively Low 11.8106970135 Relatively Low Insufficient Data Insufficient Data Insufficient Data Insufficient Data Insufficient Data Insufficient Data 142.0000000000 142.0 5.9166666660 5.916666666 23918829.4109991714 23918829.41099917 78.8266354636 599082429.5234788656 599082429.5234789 2344.7633025502 623003603.6977806091 623003603.6977806 0.0006245044 0.0000038327 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.0000000000 1.0 0.0312500000 0.03125 799747000.0000000000 799747000.0 5154.0000000000 5154.0 39170400000.0000000000 39170400000.0 979196.9503299171 979196.9503299173 39971126196.9503250122 39971126196.950325 0.0000083601 8.3601e-06 0.0000003102 3.102e-07 0.0006212585 Very Low 208.9357751655 0.0000499691 4.99691e-05 379.7650962455 19.0104496225 607.7113210335 8.1734233122 Very Low 10.2922465761 Very Low 0.0000000000 0.0 0.0001332481 799747000.0000000000 799747000.0 5154.0000000000 5154.0 39170400000.0000000000 39170400000.0 979196.9503299170 979196.950329917 39971126196.9503250122 39971126196.950325 0.0028562355 0.0000019044 1.9044e-06 0.0006714957 Very Low 304.3740193640 304.374019364 0.0000013079 1.3079e-06 9.9399963725 0.0876141484 314.4016298849 4.8444617015 Very Low 6.3211251574 Very Low 11.0000000000 11.0 0.0502374860 0.050237486 221010989.9433892369 221010989.94338924 956.0722553606 7266149140.7407073975 7266149140.740707 7487160130.6840963364 7487160130.684095 0.0006654598 0.0000038734 3.8734e-06 Very Low 7388.6241355279 0.0001860428 1413.9249167873 8802.5490523153 22.0862454143 Relatively Moderate 21.4229529236 Relatively High 4.0000000000 4.0 0.0202783018 799720520.0699262619 799720520.0699263 5153.6368864899 39167640337.3234024048 39167640337.3234 39967360857.3933258057 39967360857.393326 0.0000000070 7e-09 0.0000040043 4.0043e-06 Very Low 0.1132567587 0.0004178388 3175.5752067561 3175.6884635148 16.9786748734 Relatively Low 18.6868761580 18.686876158 Relatively Low Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000003842 3.842e-07 0.0000351301 3.51301e-05 0.0001122053
39 38 T15003010100 Hawaii HI 15 Honolulu County 3 15003 10100 15003010100 7881 844170000.0000000000 844170000.0 6510793.1749418816 6510793.174941882 30.2068351444 17.9023593434 Relatively Low 62.2967046564 62.5766871166 20.1899418692 Relatively Moderate 67.0658106380 67.065810638 79.1411042945 414254.4118402397 414254.4118402396 357290.3980572544 0.0066572447 50595.0595105788 6368.9542724065 28.3354388883 Relatively Low 17.4965119142 21.0826210826 -2.2250000000 -2.225 51.4027980000 51.402798 Relatively Low 13.6493795737 60.0000000000 60.0 2.5701399000 2.5701399 Not Applicable Not Applicable Not Applicable 0.0699710120 0.069971012 108722387.3965868801 108722387.39658688 1015.0101698384 7714077290.7720127106 7714077290.772013 7822799678.1686000824 7822799678.1686 0.0000217970 2.1797e-05 0.0000000016 1.6e-09 Very Low 165.8185422659 0.0000001136 1.136e-07 0.8633732204 166.6819154863 1.8139946646 Very Low 1.6080612486 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000004090 4.09e-07 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0031021867 844170000.0000000000 844170000.0 7881.0000000000 7881.0 59895600000.0000000000 59895600000.0 60739770000.0000000000 60739770000.0 0.0167507621 0.0001397988 Very Low 271131.7000000000 271131.7 0.0061413700 0.00614137 46674.4120000000 46674.412 317806.1120000000 317806.112 28.2593824392 Relatively High 28.2566705000 28.2566705 Relatively Moderate 1.0000000000 1.0 0.0312500000 0.03125 844170000.0000000000 844170000.0 7881.0000000000 7881.0 59895600000.0000000000 59895600000.0 6510793.1749418788 6510793.174941879 60746280793.1749420166 60746280793.17494 0.0000180224 1.80224e-05 0.0000000210 2.1e-08 0.0002275779 Very Low 475.4352252455 0.0000051735 5.1735e-06 39.3183530055 46.3035298223 561.0571080733 5.3010774425 Very Low 5.0127961668 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0144927536 844170000.0000000000 844170000.0 7881.0000000000 7881.0 59895600000.0000000000 59895600000.0 6510793.1749418788 6510793.174941879 60746280793.1749420166 60746280793.17494 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 312.4010900194 0.0000374220 3.7422e-05 284.4073152208 23.2199131490 23.219913149 620.0283183891 3.4627955954 Very Low 4.1723206395 Very Low 0.0000000000 0.0 0.0148900000 0.01489 844170000.0000000000 844170000.0 7881.0000000000 7881.0 59895600000.0000000000 59895600000.0 60739770000.0000000000 60739770000.0 0.0000058883 5.8883e-06 0.0000002640 2.64e-07 Very Low 74.0141047470 74.014104747 0.0000309799 3.09799e-05 235.4472077760 235.447207776 309.4613125230 309.461312523 9.2221951746 Very Low 6.7499127907 Very Low Insufficient Data Insufficient Data Insufficient Data Insufficient Data Insufficient Data Insufficient Data 153.0000000000 153.0 6.3750000000 6.375 144063515.1865202785 144063515.18652028 1085.2615309044 8247987634.8732604980 8247987634.8732605 1740883.8763676984 8393792033.9361505508 8393792033.9361515 0.0000678921 6.78921e-05 0.0000000585 5.85e-08 0.0005670888 Very Low 62352.4173422581 62352.4173422582 0.0004047596 3076.1731167997 6293.6278904878 71722.2183495456 18.7624106894 Relatively Moderate 15.6261122070 15.626112207 Relatively Moderate 1.0000000000 1.0 0.0312500000 0.03125 844170000.0000000000 844170000.0 7881.0000000000 7881.0 59895600000.0000000000 59895600000.0 6510793.1749418788 6510793.174941879 60746280793.1749420166 60746280793.17494 0.0000002273 2.273e-07 0.0000001163 1.163e-07 0.0000219536 2.19536e-05 Very Low 5.9951200718 0.0000286538 2.86538e-05 217.7686714211 4.4667327311 228.2305242240 228.230524224 5.8969773428 Very Low 5.9755854646 Very Low 0.0000000000 0.0 0.0008089954 844170000.0000000000 844170000.0 7881.0000000000 7881.0 59895600000.0000000000 59895600000.0 6510793.1749418816 6510793.174941882 60746280793.1749420166 60746280793.17494 0.0010790568 0.0000007195 7.195e-07 0.0002536843 Very Low 736.9198762201 0.0000045872 4.5872e-06 34.8625006827 1.3362062164 773.1185831192 6.5388187819 Very Low 6.8658963899 Very Low 6.0000000000 6.0 0.0274022650 0.027402265 515711432.1667201519 515711432.1667201 4182.4213727807 31786402433.1335411072 31786402433.133545 32302113865.3002624512 32302113865.30026 0.0015593140 0.001559314 0.0000000365 3.65e-08 Very Low 22035.6967564264 0.0000041851 4.1851e-06 31.8069724526 22067.5037288791 30.0033774230 30.003377423 Relatively High 23.4192184699 Relatively High 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0477752648 0.0001095931 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000000649 6.49e-08 0.0009782148 0.0000759598 7.59598e-05
40 39 T15003010202 Hawaii HI 15 Honolulu County 3 15003 10202 15003010202 7643 654554000.0000000000 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.0104045950 0.010404595 79074.9221952323 2671.0665233012 28.8791518078 Relatively Low 21.4100073865 26.2108262108 -1.8850000000 -1.885 51.4027980000 51.402798 Relatively Low 13.6493795737 60.0000000000 60.0 2.5701399000 2.5701399 Not Applicable Not Applicable Not Applicable 0.0699710120 0.069971012 149406920.2225816846 149406920.22258168 1744.5727797266 13258753125.9224720001 13258753125.922472 13408160046.1450557709 13408160046.145056 0.0000463641 4.63641e-05 0.0000000057 5.7e-09 Very Low 484.6969048295 0.0000006988 6.988e-07 5.3105325914 490.0074374209 2.5986077845 Very Low 2.3478038255 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000004090 4.09e-07 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0034127689 654554000.0000000000 654554000.0 7643.0000000000 7643.0 58086800000.0000000000 58086800000.0 58741354000.0000000000 58741354000.0 0.0167507621 0.0001397988 Very Low 247080.5000000000 247080.5 0.0083154600 0.00831546 63197.4960000000 63197.496 310277.9960000000 310277.996 28.0344631782 Relatively High 28.5696588646 Relatively High 1.0000000000 1.0 0.0312500000 0.03125 654554000.0000000000 654554000.0 7643.0000000000 7643.0 58086800000.0000000000 58086800000.0 1559566.8001234487 58742913566.8001251221 58742913566.800125 0.0000180224 1.80224e-05 0.0000000210 2.1e-08 0.0002275779 Very Low 368.6437902619 0.0000050172 5.0172e-06 38.1309696766 11.0913441572 417.8661040956 4.8051561720 4.805156172 Very Low 4.6310331917 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0144927536 654554000.0000000000 654554000.0 7643.0000000000 7643.0 58086800000.0000000000 58086800000.0 1559566.8001234487 58742913566.8001251221 58742913566.800125 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 242.2300994782 0.0000362919 3.62919e-05 275.8184380450 275.818438045 5.5619960081 523.6105335314 3.2730989859 Very Low 4.0194298107 Very Low 0.0000000000 0.0 0.0148900000 0.01489 654554000.0000000000 654554000.0 7643.0000000000 7643.0 58086800000.0000000000 58086800000.0 58741354000.0000000000 58741354000.0 0.0000058883 5.8883e-06 0.0000002640 2.64e-07 Very Low 57.3891850203 0.0000300443 3.00443e-05 228.3368873280 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.0000000000 153.0 6.3750000000 6.375 435262433.1492907405 435262433.14929074 5305.6996876866 40323317626.4183044434 40323317626.418304 733854.2006652680 733854.200665268 40759313913.7682723999 40759313913.76827 0.0000678921 6.78921e-05 0.0000000585 5.85e-08 0.0005670888 Very Low 188386.8018213588 0.0019788161 15039.0023789685 2653.0231726283 206078.8273729557 26.6736137620 26.673613762 Relatively High 22.6411586896 Relatively High 1.0000000000 1.0 0.0312500000 0.03125 654554000.0000000000 654554000.0 7643.0000000000 7643.0 58086800000.0000000000 58086800000.0 1559566.8001234487 58742913566.8001251221 58742913566.800125 0.0000002273 2.273e-07 0.0000001163 1.163e-07 0.0000219536 2.19536e-05 Very Low 4.6485066083 0.0000277885 2.77885e-05 211.1922288633 1.0699415394 216.9106770110 216.910677011 5.7978262092 Very Low 5.9878468792 Very Low 0.0000000000 0.0 0.0003346294 654554000.0000000000 654554000.0 7643.0000000000 7643.0 58086800000.0000000000 58086800000.0 1559566.8001234492 58742913566.8001251221 58742913566.800125 0.0026087124 0.0000017394 1.7394e-06 0.0006133035 Very Low 571.3942128474 0.0000044486 4.4486e-06 33.8096805884 0.3200689681 605.5239624040 605.523962404 6.0273680086 Very Low 6.4502559937 Very Low 6.0000000000 6.0 0.0274022650 0.027402265 509853307.4954975247 509853307.4954975 6025.7162425590 6025.716242559 45795443443.4484024048 45795443443.4484 46305296750.9438858032 46305296750.943886 0.0015593140 0.001559314 0.0000000365 3.65e-08 Very Low 21785.3865039000 21785.3865039 0.0000060296 6.0296e-06 45.8250791711 21831.2115830711 29.8959038814 Relatively High 23.7830983180 23.783098318 Relatively High 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0477752648 0.0001095931 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000002726 2.726e-07 0.0017126977 0.0002904509
41 40 T15003000114 Hawaii HI 15 Honolulu County 3 15003 114 15003000114 1594 256337000.0000000000 256337000.0 0.0000000000 0.0 0.4733660713 11.5700314407 Very Low 25.5750010311 13.4969325153 13.0024416326 Very Low 27.0776337316 15.3374233129 110646.2439046590 110646.243904659 96129.4471325930 96129.447132593 0.0019101048 14516.7967720660 14516.796772066 0.0000000000 0.0 28.4361856940 28.436185694 Relatively Low 18.1695072908 21.3675213675 -2.1620000000 -2.162 51.4027980000 51.402798 Relatively Low 13.6493795737 60.0000000000 60.0 2.5701399000 2.5701399 Not Applicable Not Applicable Not Applicable 0.0679710120 0.067971012 45060581.7616326436 45060581.76163264 280.2036667670 280.203666767 2129547867.4289019108 2129547867.4289021 2174608449.1905345917 2174608449.1905346 0.0000223874 2.23874e-05 0.0000000023 2.3e-09 Very Low 68.5682860676 0.0000000436 4.36e-08 0.3316687560 0.331668756 68.8999548236 1.3512825139 Very Low 1.2021374741 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 287.0000000000 287.0 15.9444444440 15.944444444 0.0000000000 0.0 0.0000000000 0.0 0.0000004090 4.09e-07 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0035448826 256337000.0000000000 256337000.0 1594.0000000000 1594.0 12114400000.0000000000 12114400000.0 12370737000.0000000000 12370737000.0 0.0167507621 0.0001397988 Very Low 78176.6000000000 78176.6 0.0018149900 0.00181499 13793.9240000000 13793.924 91970.5240000000 91970.524 18.6921018488 Relatively Moderate 18.7567615341 Relatively Moderate 1.0000000000 1.0 0.0312500000 0.03125 256337000.0000000000 256337000.0 1594.0000000000 1594.0 12114400000.0000000000 12114400000.0 0.0000000000 0.0 12370737000.0000000000 12370737000.0 0.0000180224 1.80224e-05 0.0000000210 2.1e-08 0.0002275779 Very Low 144.3685979527 0.0000010464 1.0464e-06 7.9524749005 0.0000000000 0.0 152.3210728532 3.4325361718 Very Low 3.2574099371 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0100000000 0.01 256337000.0000000000 256337000.0 1594.0000000000 1594.0 12114400000.0000000000 12114400000.0 0.0000000000 0.0 12370737000.0000000000 12370737000.0 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 65.4550282129 0.0000052226 5.2226e-06 39.6914388680 39.691438868 0.0000000000 0.0 105.1464670809 1.9167019130 1.916701913 Very Low 2.3176443554 Very Low 0.0000000000 0.0 0.0148900000 0.01489 256337000.0000000000 256337000.0 1594.0000000000 1594.0 12114400000.0000000000 12114400000.0 12370737000.0000000000 12370737000.0 0.0000058883 5.8883e-06 0.0000002640 2.64e-07 Very Low 22.4748019576 0.0000062660 6.266e-06 47.6212218240 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.0000000000 153.0 6.3750000000 6.375 31810533.4518781751 31810533.451878175 201.1940620543 1529074871.6130447388 1529074871.6130447 0.0000000000 0.0 1560885405.0649232864 1560885405.0649233 0.0000678921 6.78921e-05 0.0000000585 5.85e-08 0.0005670888 Very Low 13767.9804293500 13767.98042935 0.0000750374 7.50374e-05 570.2844405031 0.0000000000 0.0 14338.2648698530 14338.264869853 10.9707486819 Relatively Low 9.1693798611 Relatively Low 1.0000000000 1.0 0.0312500000 0.03125 256337000.0000000000 256337000.0 1594.0000000000 1594.0 12114400000.0000000000 12114400000.0 0.0000000000 0.0 12370737000.0000000000 12370737000.0 0.0000002273 2.273e-07 0.0000001163 1.163e-07 0.0000219536 2.19536e-05 Very Low 1.8204521528 0.0000057955 5.7955e-06 44.0455858705 0.0000000000 0.0 45.8660380233 3.4541030654 Very Low 3.5125918792 Very Low 0.0000000000 0.0 0.0000203690 2.0369e-05 256337000.0000000000 256337000.0 1594.0000000000 1594.0 12114400000.0000000000 12114400000.0 0.0000000000 0.0 12370737000.0000000000 12370737000.0 0.0540823568 0.0000360603 3.60603e-05 0.0314801129 Very Low 282.3816906154 0.0000011708 1.1708e-06 8.8981639975 0.0000000000 0.0 291.2798546130 291.279854613 4.7226679739 Very Low 4.9763159800 4.97631598 Very Low 5.0000000000 5.0 0.0228352210 0.022835221 101097246.5153407156 101097246.51534072 638.7094045184 4854191474.3399534225 4854191474.339953 4955288720.8552951813 4955288720.855295 0.0015593140 0.001559314 0.0000000365 3.65e-08 Very Low 3599.7978462840 3599.797846284 0.0000005326 5.326e-07 4.0477773464 3603.8456236304 16.3998975605 Relatively Moderate 12.8464989548 Relatively Moderate 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0477752648 0.0001095931 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000000593 5.93e-08 0.0000559929 5.59929e-05
42 41 T15003000301 Hawaii HI 15 Honolulu County 3 15003 301 15003000301 3307 448705000.0000000000 448705000.0 0.0000000000 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.0000000000 0.0 30.8301216957 Relatively Low 39.3975870654 39.8860398860 39.886039886 -0.6650000000 -0.665 51.4027980000 51.402798 Relatively Low 13.6493795737 60.0000000000 60.0 2.5701399000 2.5701399 Not Applicable Not Applicable Not Applicable 0.0454782590 0.045478259 25555924.5562681481 25555924.556268148 188.3496785362 1431457556.8750038147 1431457556.8750038 1457013481.4312715530 1457013481.4312716 0.0000127441 1.27441e-05 0.0000000012 1.2e-09 Very Low 14.8116874350 14.811687435 0.0000000104 1.04e-08 0.0793339445 14.8910213795 0.8109262150 0.810926215 Very Low 0.7821557032 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 287.0000000000 287.0 15.9444444440 15.944444444 0.0000000000 0.0 0.0000000000 0.0 0.0000004090 4.09e-07 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0032518991 448705000.0000000000 448705000.0 3307.0000000000 3307.0 25133200000.0000000000 25133200000.0 25581905000.0000000000 25581905000.0 0.0167507621 0.0001397988 Very Low 137822.2000000000 137822.2 0.0035576500 0.00355765 27038.1400000000 27038.14 164860.3400000000 164860.34 22.7063493531 Relatively Moderate 24.7030701239 Relatively Moderate 1.0000000000 1.0 0.0312500000 0.03125 448705000.0000000000 448705000.0 3307.0000000000 3307.0 25133200000.0000000000 25133200000.0 0.0000000000 0.0 25581905000.0000000000 25581905000.0 0.0000180224 1.80224e-05 0.0000000210 2.1e-08 0.0002275779 Very Low 252.7099550373 0.0000021709 2.1709e-06 16.4986414655 0.0000000000 0.0 269.2085965027 4.1500955944 Very Low 4.2699156153 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0100000000 0.01 448705000.0000000000 448705000.0 3307.0000000000 3307.0 25133200000.0000000000 25133200000.0 0.0000000000 0.0 25581905000.0000000000 25581905000.0 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 114.5757281792 0.0000108350 1.0835e-05 82.3460403617 0.0000000000 0.0 196.9217685408 2.3625858060 2.362585806 Very Low 3.0973030875 Very Low 0.0000000000 0.0 0.0148900000 0.01489 448705000.0000000000 448705000.0 3307.0000000000 3307.0 25133200000.0000000000 25133200000.0 25581905000.0000000000 25581905000.0 0.0000058883 5.8883e-06 0.0000002640 2.64e-07 Very Low 39.3410081743 0.0000129997 1.29997e-05 98.7976038720 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.0000000000 153.0 6.3750000000 6.375 43472034.2885192484 43472034.28851925 372.9604933622 2834499749.5526738167 2834499749.552674 0.0000000000 0.0 2877971783.8411927223 2877971783.8411927 0.0000678921 6.78921e-05 0.0000000585 5.85e-08 0.0005670888 Very Low 18815.2178652957 0.0001390995 1057.1562804341 0.0000000000 0.0 19872.3741457298 12.2317140159 Relatively Low 11.0839590918 Relatively Low 1.0000000000 1.0 0.0312500000 0.03125 448705000.0000000000 448705000.0 3307.0000000000 3307.0 25133200000.0000000000 25133200000.0 0.0000000000 0.0 25581905000.0000000000 25581905000.0 0.0000002273 2.273e-07 0.0000001163 1.163e-07 0.0000219536 2.19536e-05 Very Low 3.1866097490 3.186609749 0.0000120236 1.20236e-05 91.3793930199 0.0000000000 0.0 94.5660027689 4.3962585632 Very Low 4.8470726091 Very Low 0.0000000000 0.0 0.0000891993 8.91993e-05 448705000.0000000000 448705000.0 3307.0000000000 3307.0 25133200000.0000000000 25133200000.0 0.0000000000 0.0 25581905000.0000000000 25581905000.0 0.0123499135 0.0000082345 8.2345e-06 0.0314801129 Very Low 494.2949183598 0.0000024290 2.429e-06 18.4606200375 0.0000000000 0.0 512.7555383974 5.7023523714 Very Low 6.5147029765 Very Low 5.0000000000 5.0 0.0228352210 0.022835221 44498932.4144714028 44498932.4144714 322.9626620121 2454516231.2922034264 2454516231.2922034 2499015163.7066750526 2499015163.706675 0.0015593140 0.001559314 0.0000000365 3.65e-08 Very Low 1584.4858944130 1584.485894413 0.0000002693 2.693e-07 2.0467538724 1586.5326482854 12.4758098497 Relatively Moderate 10.5953740883 Relatively Moderate 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0477752648 0.0001095931 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000000543 5.43e-08 0.0000439802 4.39802e-05
43 42 T15003000401 Hawaii HI 15 Honolulu County 3 15003 401 15003000401 2893 351046000.0000000000 351046000.0 0.0000000000 0.0 2.3849752201 14.1817633164 Relatively Low 42.3115522622 28.5276073620 28.527607362 14.3094432099 Relatively Low 35.2974332889 26.3803680982 147478.9860232134 127735.0410334750 127735.041033475 0.0025978875 19743.9449897384 0.0000000000 0.0 31.6712775654 Relatively Moderate 48.6047656827 51.2820512821 -0.1390000000 -0.139 51.4027980000 51.402798 Relatively Low 13.6493795737 60.0000000000 60.0 2.5701399000 2.5701399 Not Applicable Not Applicable Not Applicable 0.0020000000 0.002 6908402.0026214793 6908402.002621479 56.9327295955 432688744.9258443117 432688744.9258443 439597146.9284657836 439597146.9284658 0.0000711351 7.11351e-05 0.0000000050 5e-09 Very Low 0.9828593662 0.0000000006 6e-10 0.0043249758 0.9871843420 0.987184342 0.3282005193 Very Low 0.3251932208 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 287.0000000000 287.0 15.9444444440 15.944444444 0.0000000000 0.0 0.0000000000 0.0 0.0000004090 4.09e-07 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0030079196 351046000.0000000000 351046000.0 2893.0000000000 2893.0 21986800000.0000000000 21986800000.0 22337846000.0000000000 22337846000.0 0.0167507621 0.0001397988 Very Low 124594.1000000000 124594.1 0.0025472200 0.00254722 19358.8720000000 19358.872 143952.9720000000 143952.972 21.7027847784 Relatively Moderate 24.2554548276 Relatively Moderate 1.0000000000 1.0 0.0312500000 0.03125 351046000.0000000000 351046000.0 2893.0000000000 2893.0 21986800000.0000000000 21986800000.0 0.0000000000 0.0 22337846000.0000000000 22337846000.0 0.0000180224 1.80224e-05 0.0000000210 2.1e-08 0.0002275779 Very Low 197.7085588006 0.0000018991 1.8991e-06 14.4331931539 0.0000000000 0.0 212.1417519545 3.8332797027 Very Low 4.0515578542 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0100000000 0.01 351046000.0000000000 351046000.0 2893.0000000000 2893.0 21986800000.0000000000 21986800000.0 0.0000000000 0.0 22337846000.0000000000 22337846000.0 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 89.6387405409 0.0000094786 9.4786e-06 72.0372224875 0.0000000000 0.0 161.6759630284 2.2122701874 Very Low 2.9793712675 Very Low 0.0000000000 0.0 0.0148900000 0.01489 351046000.0000000000 351046000.0 2893.0000000000 2893.0 21986800000.0000000000 21986800000.0 22337846000.0000000000 22337846000.0 0.0000058883 5.8883e-06 0.0000002640 2.64e-07 Very Low 30.7785818200 30.77858182 0.0000113723 1.13723e-05 86.4292313280 86.429231328 117.2078131480 117.207813148 6.6724353693 Very Low 5.4586326301 Very Low Insufficient Data Insufficient Data Insufficient Data Insufficient Data Insufficient Data Insufficient Data 153.0000000000 153.0 6.3750000000 6.375 5598483.8728212211 5598483.872821221 40.8697676930 40.869767693 310610234.4665992260 310610234.4665992 0.0000000000 0.0 316208718.3394203782 316208718.3394204 0.0000678921 6.78921e-05 0.0000000585 5.85e-08 0.0005670888 Very Low 2423.0909711602 0.0000152428 1.52428e-05 115.8453304451 0.0000000000 0.0 2538.9363016053 6.1605762200 6.16057622 Relatively Low 5.7348131748 Relatively Low 1.0000000000 1.0 0.0312500000 0.03125 351046000.0000000000 351046000.0 2893.0000000000 2893.0 21986800000.0000000000 21986800000.0 0.0000000000 0.0 22337846000.0000000000 22337846000.0 0.0000002273 2.273e-07 0.0000001163 1.163e-07 0.0000219536 2.19536e-05 Very Low 2.4930558072 0.0000105184 1.05184e-05 79.9396988232 0.0000000000 0.0 82.4327546304 4.1995699630 4.199569963 Very Low 4.7565433860 4.756543386 Very Low 0.0000000000 0.0 0.0000660707 6.60707e-05 351046000.0000000000 351046000.0 2893.0000000000 2893.0 21986800000.0000000000 21986800000.0 0.0000000000 0.0 22337846000.0000000000 22337846000.0 0.0169083019 0.0000112739 1.12739e-05 0.0314801129 Very Low 392.1684715683 0.0000021549 2.1549e-06 16.3773613872 0.0000000000 0.0 408.5458329555 5.2864507718 Very Low 6.2042957720 6.204295772 Very Low 0.0000000000 0.0 0.0045870000 0.004587 570395.3445181100 570395.34451811 5.2058202244 39564233.7054760307 39564233.70547603 40134629.0499941409 40134629.04999414 0.0015593140 0.001559314 0.0000000365 3.65e-08 Very Low 4.0797944117 0.0000000009 9e-10 0.0066271377 4.0864215494 1.7101470841 Very Low 1.4920087004 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0477752648 0.0001095931 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000000175 1.75e-08 0.0000089358 8.9358e-06
44 43 T15003000500 Hawaii HI 15 Honolulu County 3 15003 500 15003000500 3807 768658000.0000000000 768658000.0 0.0000000000 0.0 1.1120328336 20.3323526080 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.0000000000 0.0 29.8930164873 Relatively Low 30.0289989878 33.6182336182 -1.2510000000 -1.251 51.4027980000 51.402798 Relatively Low 13.6493795737 60.0000000000 60.0 2.5701399000 2.5701399 Not Applicable Not Applicable Not Applicable 0.0699710120 0.069971012 360125556.2738288641 360125556.27382886 1783.6254780858 13555553633.4519920349 13555553633.451992 13915679189.7258243561 13915679189.725824 0.0000304590 3.0459e-05 0.0000000035 3.5e-09 Very Low 767.5160208618 0.0000004430 4.43e-07 3.3664820289 770.8825028907 3.0222884210 3.022288421 Very Low 2.8264563707 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 287.0000000000 287.0 15.9444444440 15.944444444 0.0000000000 0.0 0.0000000000 0.0 0.0000004090 4.09e-07 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0029710230 0.002971023 768658000.0000000000 768658000.0 3807.0000000000 3807.0 28933200000.0000000000 28933200000.0 29701858000.0000000000 29701858000.0 0.0167507621 0.0001397988 Very Low 330555.3000000000 330555.3 0.0046237000 0.0046237 35140.1200000000 35140.12 365695.4200000000 365695.42 29.6129558301 Relatively High 31.2377595174 Relatively High 1.0000000000 1.0 0.0312500000 0.03125 768658000.0000000000 768658000.0 3807.0000000000 3807.0 28933200000.0000000000 28933200000.0 0.0000000000 0.0 29701858000.0000000000 29701858000.0 0.0000180224 1.80224e-05 0.0000000210 2.1e-08 0.0002275779 Very Low 432.9069848209 0.0000024991 2.4991e-06 18.9931442583 0.0000000000 0.0 451.9001290792 4.9322219806 Very Low 4.9203761960 4.920376196 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0100000000 0.01 768658000.0000000000 768658000.0 3807.0000000000 3807.0 28933200000.0000000000 28933200000.0 0.0000000000 0.0 29701858000.0000000000 29701858000.0 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 196.2749469490 196.274946949 0.0000124732 1.24732e-05 94.7963034947 0.0000000000 0.0 291.0712504437 2.6912628627 Very Low 3.4209500746 Very Low 0.0000000000 0.0 0.0148900000 0.01489 768658000.0000000000 768658000.0 3807.0000000000 3807.0 28933200000.0000000000 28933200000.0 29701858000.0000000000 29701858000.0 0.0000058883 5.8883e-06 0.0000002640 2.64e-07 Very Low 67.3934559705 0.0000149652 1.49652e-05 113.7352518720 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.0000000000 153.0 6.3750000000 6.375 310362683.7705971003 310362683.7705971 1505.3407549263 11440589737.4396343231 11440589737.439634 0.0000000000 0.0 11750952421.2102317810 11750952421.210232 0.0000678921 6.78921e-05 0.0000000585 5.85e-08 0.0005670888 Very Low 134328.6921804771 134328.692180477 0.0005614326 4266.8874092204 0.0000000000 0.0 138595.5795896974 23.3697388730 23.369738873 Relatively High 20.5331678871 Relatively High 1.0000000000 1.0 0.0312500000 0.03125 768658000.0000000000 768658000.0 3807.0000000000 3807.0 28933200000.0000000000 28933200000.0 0.0000000000 0.0 29701858000.0000000000 29701858000.0 0.0000002273 2.273e-07 0.0000001163 1.163e-07 0.0000219536 2.19536e-05 Very Low 5.4588495259 0.0000138415 1.38415e-05 105.1954488188 0.0000000000 0.0 110.6542983447 4.6326303292 Very Low 4.9524311546 Very Low 0.0000000000 0.0 0.0000506726 5.06726e-05 768658000.0000000000 768658000.0 3807.0000000000 3807.0 28933200000.0000000000 28933200000.0 0.0000000000 0.0 29701858000.0000000000 29701858000.0 0.0267087035 0.0000178084 1.78084e-05 0.0314801129 Very Low 1040.3016804499 0.0000034354 3.4354e-06 26.1093390095 0.0000000000 0.0 1066.4110194594 7.2787835569 Very Low 8.0631344480 8.063134448 Very Low 3.0000000000 3.0 0.0137011320 0.013701132 453479536.5391238332 453479536.53912383 3008.6510313156 22865747837.9989280701 22865747837.998928 23319227374.5380477905 23319227374.538048 0.0015593140 0.001559314 0.0000000365 3.65e-08 Very Low 9688.3029582735 0.0000015053 1.5053e-06 11.4402720877 9699.7432303613 22.8124793275 Relatively Moderate 18.7851444478 Relatively Moderate 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0477752648 0.0001095931 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000001600 1.6e-07 0.0001780227
45 44 T15003001100 Hawaii HI 15 Honolulu County 3 15003 1100 15003001100 3862 219684000.0000000000 219684000.0 0.0000000000 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.0000000000 0.0 36.5503014408 Relatively High 89.7682816732 89.7435897436 2.9120000000 2.912 51.4027980000 51.402798 Relatively Low 13.6493795737 60.0000000000 60.0 2.5701399000 2.5701399 Not Applicable Not Applicable Not Applicable 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000478451 4.78451e-05 0.0000000048 4.8e-09 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 287.0000000000 287.0 15.9444444440 15.944444444 0.0000000000 0.0 0.0000000000 0.0 0.0000004090 4.09e-07 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0029807350 0.002980735 219684000.0000000000 219684000.0 3862.0000000000 3862.0 29351200000.0000000000 29351200000.0 29570884000.0000000000 29570883999.999996 0.0167507621 0.0001397988 Very Low 78161.0000000000 78161.0 0.0041124200 0.00411242 31254.3920000000 31254.392 109415.3920000000 109415.392 19.8062105715 Relatively Moderate 25.5458719969 Relatively Moderate 1.0000000000 1.0 0.0312500000 0.03125 219684000.0000000000 219684000.0 3862.0000000000 3862.0 29351200000.0000000000 29351200000.0 0.0000000000 0.0 29570884000.0000000000 29570883999.999996 0.0000180224 1.80224e-05 0.0000000210 2.1e-08 0.0002275779 Very Low 123.7256856200 123.72568562 0.0000025352 2.5352e-06 19.2675395659 0.0000000000 0.0 142.9932251859 3.3609878804 Very Low 4.0996224460 4.099622446 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0100000000 0.01 219684000.0000000000 219684000.0 3862.0000000000 3862.0 29351200000.0000000000 29351200000.0 0.0000000000 0.0 29570884000.0000000000 29570883999.999996 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 56.0957739925 0.0000126534 1.26534e-05 96.1658324393 0.0000000000 0.0 152.2616064318 2.1684686631 Very Low 3.3702722886 Very Low 0.0000000000 0.0 0.0148900000 0.01489 219684000.0000000000 219684000.0 3862.0000000000 3862.0 29351200000.0000000000 29351200000.0 29570884000.0000000000 29570883999.999996 0.0000058883 5.8883e-06 0.0000002640 2.64e-07 Very Low 19.2611850542 0.0000151814 1.51814e-05 115.3783931520 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.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000678921 6.78921e-05 0.0000000585 5.85e-08 0.0005670888 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 1.0000000000 1.0 0.0312500000 0.03125 219684000.0000000000 219684000.0 3862.0000000000 3862.0 29351200000.0000000000 29351200000.0 0.0000000000 0.0 29570884000.0000000000 29570883999.999996 0.0000002273 2.273e-07 0.0000001163 1.163e-07 0.0000219536 2.19536e-05 Very Low 1.5601501569 0.0000140415 1.40415e-05 106.7152149592 0.0000000000 0.0 108.2753651161 4.5991908913 Very Low 6.0116468147 Very Low 0.0000000000 0.0 0.0000095105 9.5105e-06 219684000.0000000000 219684000.0 3862.0000000000 3862.0 29351200000.0000000000 29351200000.0 0.0000000000 0.0 29570884000.0000000000 29570883999.999996 0.1262836527 0.0000842016 8.42016e-05 0.0314801129 Very Low 263.8454713676 0.0000030927 3.0927e-06 23.5044632585 0.0000000000 0.0 287.3499346261 4.7013324703 Very Low 6.3676040782 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0015593140 0.001559314 0.0000000365 3.65e-08 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0477752648 0.0001095931 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000000123 1.23e-08 0.0000021143 2.1143e-06
46 45 T15003001400 Hawaii HI 15 Honolulu County 3 15003 1400 15003001400 2550 280795000.0000000000 280795000.0 0.0000000000 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.0000000000 0.0 33.8173444421 Relatively Moderate 71.5385878040 71.538587804 69.8005698006 1.2030000000 1.203 51.4027980000 51.402798 Relatively Low 13.6493795737 60.0000000000 60.0 2.5701399000 2.5701399 Not Applicable Not Applicable Not Applicable 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000478451 4.78451e-05 0.0000000048 4.8e-09 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 287.0000000000 287.0 15.9444444440 15.944444444 0.0000000000 0.0 0.0000000000 0.0 0.0000004090 4.09e-07 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0029408590 0.002940859 280795000.0000000000 280795000.0 2550.0000000000 2550.0 19380000000.0000000000 19380000000.0 19660795000.0000000000 19660795000.0 0.0167507621 0.0001397988 Very Low 77555.8000000000 77555.8 0.0021786600 0.00217866 16557.8160000000 16557.816 94113.6160000000 94113.616 18.8361759451 Relatively Moderate 22.4781526450 22.478152645 Relatively Moderate 1.0000000000 1.0 0.0312500000 0.03125 280795000.0000000000 280795000.0 2550.0000000000 2550.0 19380000000.0000000000 19380000000.0 0.0000000000 0.0 19660795000.0000000000 19660795000.0 0.0000180224 1.80224e-05 0.0000000210 2.1e-08 0.0002275779 Very Low 158.1433053447 0.0000016739 1.6739e-06 12.7219642386 0.0000000000 0.0 170.8652695832 3.5665341864 Very Low 4.0250552399 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0100000000 0.01 280795000.0000000000 280795000.0 2550.0000000000 2550.0 19380000000.0000000000 19380000000.0 0.0000000000 0.0 19660795000.0000000000 19660795000.0 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 71.7003189046 0.0000083548 8.3548e-06 63.4963419783 0.0000000000 0.0 135.1966608829 2.0842269303 Very Low 2.9971286146 Very Low 0.0000000000 0.0 0.0148900000 0.01489 280795000.0000000000 280795000.0 2550.0000000000 2550.0 19380000000.0000000000 19380000000.0 19660795000.0000000000 19660795000.0 0.0000058883 5.8883e-06 0.0000002640 2.64e-07 Very Low 24.6192005667 0.0000100239 1.00239e-05 76.1820048000 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.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000678921 6.78921e-05 0.0000000585 5.85e-08 0.0005670888 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 1.0000000000 1.0 0.0312500000 0.03125 280795000.0000000000 280795000.0 2550.0000000000 2550.0 19380000000.0000000000 19380000000.0 0.0000000000 0.0 19660795000.0000000000 19660795000.0 0.0000002273 2.273e-07 0.0000001163 1.163e-07 0.0000219536 2.19536e-05 Very Low 1.9941477908 0.0000092713 9.2713e-06 70.4618845481 0.0000000000 0.0 72.4560323389 4.0228119610 4.022811961 Very Low 4.8650834374 Very Low 0.0000000000 0.0 0.0000105528 1.05528e-05 280795000.0000000000 280795000.0 2550.0000000000 2550.0 19380000000.0000000000 19380000000.0 0.0000000000 0.0 19660795000.0000000000 19660795000.0 0.1339019955 0.0000892813 8.92813e-05 0.0314801129 Very Low 396.7732396591 0.0000024025 2.4025e-06 18.2591281087 0.0000000000 0.0 415.0323677677 5.3142818813 Very Low 6.6596369426 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0015593140 0.001559314 0.0000000365 3.65e-08 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0477752648 0.0001095931 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000000124 1.24e-08 0.0000023264 2.3264e-06
47 46 T15003001901 Hawaii HI 15 Honolulu County 3 15003 1901 15003001901 837 1117472000.0000000000 1117472000.0 0.0000000000 0.0 0.3282774340 0.328277434 30.7033480191 Relatively High 95.5127235733 89.8773006135 27.1286782082 Relatively High 89.3399689300 89.33996893 89.8773006135 1004957.8320852902 995747.3951398877 995747.3951398876 0.0012118996 9210.4369454027 0.0000000000 0.0 36.1665040858 Relatively High 88.0789538478 88.3190883191 2.6720000000 2.672 51.4027980000 51.402798 Relatively Low 13.6493795737 60.0000000000 60.0 2.5701399000 2.5701399 Not Applicable Not Applicable Not Applicable 0.0699710120 0.069971012 905020382.2971718311 905020382.2971718 677.8711770700 677.87117707 5151820945.7317676544 5151820945.731768 6056841328.0289392471 6056841328.028939 0.0000366518 3.66518e-05 0.0000000046 4.6e-09 Very Low 2320.9822630745 0.0000002186 2.186e-07 1.6615278346 2322.6437909091 4.3651655035 Relatively Low 4.9390552318 Relatively Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 154.0000000000 154.0 8.5555555550 8.555555555 0.0000000000 0.0 0.0000000000 0.0 0.0000004090 4.09e-07 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0065640198 1117472000.0000000000 1117472000.0 837.0000000000 837.0 6361200000.0000000000 6361200000.0 7478672000.0000000000 7478672000.0 0.0167507621 0.0001397988 Very Low 577071.7000000000 577071.7 0.0009401100 0.00094011 7144.8360000000 7144.836 584216.5360000000 584216.536 34.6178320726 Relatively High 44.1809219918 Very High 1.0000000000 1.0 0.0312500000 0.03125 1117472000.0000000000 1117472000.0 837.0000000000 837.0 6361200000.0000000000 6361200000.0 0.0000000000 0.0 7478672000.0000000000 7478672000.0 0.0000180224 1.80224e-05 0.0000000210 2.1e-08 0.0002275779 Very Low 629.3584846957 0.0000005494 5.494e-07 4.1757976736 0.0000000000 0.0 633.5342823693 5.5201621225 Very Low 6.6626088408 Relatively Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0100000000 0.01 1117472000.0000000000 1117472000.0 837.0000000000 837.0 6361200000.0000000000 6361200000.0 0.0000000000 0.0 7478672000.0000000000 7478672000.0 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 285.3437517296 0.0000027423 2.7423e-06 20.8417404846 0.0000000000 0.0 306.1854922143 2.7370614693 Very Low 4.2093201478 Very Low 0.0000000000 0.0 0.0148900000 0.01489 1117472000.0000000000 1117472000.0 837.0000000000 837.0 6361200000.0000000000 6361200000.0 7478672000.0000000000 7478672000.0 0.0000058883 5.8883e-06 0.0000002640 2.64e-07 Very Low 97.9763432245 0.0000032902 3.2902e-06 25.0056227520 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.0000000000 153.0 6.3750000000 6.375 870614950.6549522877 870614950.6549523 698.4187222552 5307982289.1392316818 5307982289.139232 0.0000000000 0.0 6178597239.7941837311 6178597239.794184 0.0000678921 6.78921e-05 0.0000000585 5.85e-08 0.0005670888 Very Low 376812.5932326717 376812.5932326716 0.0002604826 1979.6674225433 0.0000000000 0.0 378792.2606552151 378792.260655215 32.6741600789 Relatively High 34.7330818955 Very High 1.0000000000 1.0 0.0312500000 0.03125 1117472000.0000000000 1117472000.0 837.0000000000 837.0 6361200000.0000000000 6361200000.0 0.0000000000 0.0 7478672000.0000000000 7478672000.0 0.0000002273 2.273e-07 0.0000001163 1.163e-07 0.0000219536 2.19536e-05 Very Low 7.9360541324 0.0000030432 3.0432e-06 23.1280773987 0.0000000000 0.0 31.0641315311 3.0333646550 3.033364655 Very Low 3.9233062707 Very Low 0.0000000000 0.0 0.0000235593 2.35593e-05 1117472000.0000000000 1117472000.0 837.0000000000 837.0 6361200000.0000000000 6361200000.0 0.0000000000 0.0 7478672000.0000000000 7478672000.0 0.0599777062 0.0000399911 3.99911e-05 0.0314801129 Relatively Low 1579.0273532943 0.0000007886 7.886e-07 5.9932902851 0.0000000000 0.0 1585.0206435794 8.3067072474 Very Low 11.1332617875 Very Low 5.0000000000 5.0 0.0228352210 0.022835221 1037497917.9564591646 1037497917.9564592 809.0763770808 6148980465.8138828278 6148980465.813883 7186478383.7703418732 7186478383.770342 0.0015593140 0.001559314 0.0000000365 3.65e-08 Relatively Low 36942.4776570648 0.0000006747 6.747e-07 5.1274664307 36947.6051234956 35.6271574790 35.627157479 Relatively High 35.4944142526 Relatively High 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0477752648 0.0001095931 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000003239 3.239e-07 0.0003416043
48 47 T15003001904 Hawaii HI 15 Honolulu County 3 15003 1904 15003001904 3912 544584000.0000000000 544584000.0 0.0000000000 0.0 0.0445511515 20.5232328900 20.52323289 Relatively Moderate 73.6152545402 76.3803680982 21.1782783212 Relatively Moderate 71.5035950453 80.9815950920 80.981595092 478116.6755402327 435047.8831005651 0.0056669464 43068.7924396676 0.0000000000 0.0 30.9676490813 Relatively Low 40.8133395344 42.1652421652 -0.5790000000 -0.579 51.4027980000 51.402798 Relatively Low 13.6493795737 60.0000000000 60.0 2.5701399000 2.5701399 Not Applicable Not Applicable Not Applicable 0.0579710120 0.057971012 538132301.3557038307 538132301.3557038 3865.6544498250 3865.654449825 29378973818.6702117920 29378973818.67021 29917106120.0259208679 29917106120.025917 0.0000464411 4.64411e-05 0.0000000047 4.7e-09 Very Low 1448.7797772610 1448.779777261 0.0000010507 1.0507e-06 7.9856652236 1456.7654424846 3.7365407360 3.736540736 Relatively Low 3.6200502203 Relatively Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 154.0000000000 154.0 8.5555555550 8.555555555 0.0000000000 0.0 0.0000000000 0.0 0.0000004090 4.09e-07 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0075987240 0.007598724 544584000.0000000000 544584000.0 3912.0000000000 3912.0 29731200000.0000000000 29731200000.0 30275784000.0000000000 30275784000.0 0.0167507621 0.0001397988 Very Low 200288.1000000000 200288.1 0.0042067200 0.00420672 31971.0720000000 31971.072 232259.1720000000 232259.172 25.4545960597 Relatively High 27.8165217199 Relatively Moderate 1.0000000000 1.0 0.0312500000 0.03125 544584000.0000000000 544584000.0 3912.0000000000 3912.0 29731200000.0000000000 29731200000.0 0.0000000000 0.0 30275784000.0000000000 30275784000.0 0.0000180224 1.80224e-05 0.0000000210 2.1e-08 0.0002275779 Very Low 306.7088580560 306.708858056 0.0000025680 2.568e-06 19.5169898436 0.0000000000 0.0 326.2258478996 4.4245378574 Very Low 4.5725883466 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0100000000 0.01 544584000.0000000000 544584000.0 3912.0000000000 3912.0 29731200000.0000000000 29731200000.0 0.0000000000 0.0 30275784000.0000000000 30275784000.0 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 139.0581971557 0.0000128172 1.28172e-05 97.4108587526 0.0000000000 0.0 236.4690559083 2.5111989463 Very Low 3.3068175468 Very Low 0.0000000000 0.0 0.0148900000 0.01489 544584000.0000000000 544584000.0 3912.0000000000 3912.0 29731200000.0000000000 29731200000.0 30275784000.0000000000 30275784000.0 0.0000058883 5.8883e-06 0.0000002640 2.64e-07 Very Low 47.7473698657 0.0000153779 1.53779e-05 116.8721579520 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.0000000000 153.0 6.3750000000 6.375 527170866.7436609864 527170866.7436609 3780.1623928368 28729234185.5599555969 28729234185.559956 0.0000000000 0.0 29256405052.3036117554 29256405052.30361 0.0000678921 6.78921e-05 0.0000000585 5.85e-08 0.0005670888 Very Low 228165.8742765172 0.0014098510 0.001409851 10714.8678902232 0.0000000000 0.0 238880.7421667403 238880.7421667404 28.0197622945 Relatively High 25.5038085954 Relatively High 1.0000000000 1.0 0.0312500000 0.03125 544584000.0000000000 544584000.0 3912.0000000000 3912.0 29731200000.0000000000 29731200000.0 0.0000000000 0.0 30275784000.0000000000 30275784000.0 0.0000002273 2.273e-07 0.0000001163 1.163e-07 0.0000219536 2.19536e-05 Very Low 3.8675225004 0.0000142233 1.42233e-05 108.0968205303 0.0000000000 0.0 111.9643430307 4.6508406739 Very Low 5.1506348041 Very Low 0.0000000000 0.0 0.0000105528 1.05528e-05 544584000.0000000000 544584000.0 3912.0000000000 3912.0 29731200000.0000000000 29731200000.0 0.0000000000 0.0 30275784000.0000000000 30275784000.0 0.1339019955 0.0000892813 8.92813e-05 0.0314801129 Very Low 769.5164014548 0.0000036857 3.6857e-06 28.0116506514 0.0000000000 0.0 797.5280521062 6.6069231193 Very Low 7.5819369394 Very Low 1.0000000000 1.0 0.0045670440 0.004567044 544584000.0000000000 544584000.0 3912.0000000000 3912.0 29731200000.0000000000 29731200000.0 30275784000.0000000000 30275784000.0 0.0015593140 0.001559314 0.0000000365 3.65e-08 Very Low 3878.2306977544 0.0000006524 6.524e-07 4.9584064909 3883.1891042453 16.8131307015 Relatively Moderate 14.3426412330 14.342641233 Relatively Moderate 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0477752648 0.0001095931 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000003731 3.731e-07 0.0004239595
49 48 T15003002202 Hawaii HI 15 Honolulu County 3 15003 2202 15003002202 3400 291464000.0000000000 291464000.0 0.0000000000 0.0 0.0920274117 17.0347962319 Relatively Low 58.0362666520 58.036266652 54.2944785276 16.8452811998 Relatively Low 50.3182611804 55.8282208589 240600.6144384057 240600.6144384058 206514.8289788663 206514.8289788662 0.0044849718 34085.7854595395 0.0000000000 0.0 32.3157372907 Relatively Moderate 55.9680463984 58.4045584046 0.2640000000 0.264 51.4027980000 51.402798 Relatively Low 13.6493795737 60.0000000000 60.0 2.5701399000 2.5701399 Not Applicable Not Applicable Not Applicable 0.0579710120 0.057971012 172542690.3860186636 172542690.38601866 2012.7533668393 15296925587.9790382385 15296925587.97904 15469468278.3650550842 15469468278.365055 0.0000700448 7.00448e-05 0.0000000071 7.1e-09 Very Low 700.6213058816 0.0000008330 8.33e-07 6.3310746600 6.33107466 706.9523805416 2.9363189746 Very Low 2.9686154104 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 154.0000000000 154.0 8.5555555550 8.555555555 0.0000000000 0.0 0.0000000000 0.0 0.0000004090 4.09e-07 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0039757619 291464000.0000000000 291464000.0 3400.0000000000 3400.0 25840000000.0000000000 25840000000.0 26131464000.0000000000 26131464000.0 0.0167507621 0.0001397988 Very Low 103980.9000000000 103980.9 0.0034610900 0.00346109 26304.2840000000 26304.284 130285.1840000000 130285.184 20.9929559904 Relatively Moderate 23.9395532155 Relatively Moderate 1.0000000000 1.0 0.0312500000 0.03125 291464000.0000000000 291464000.0 3400.0000000000 3400.0 25840000000.0000000000 25840000000.0 0.0000000000 0.0 26131464000.0000000000 26131464000.0 0.0000180224 1.80224e-05 0.0000000210 2.1e-08 0.0002275779 Very Low 164.1520694777 0.0000022319 2.2319e-06 16.9626189847 0.0000000000 0.0 181.1146884624 3.6364672743 Very Low 3.9217481945 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0100000000 0.01 291464000.0000000000 291464000.0 3400.0000000000 3400.0 25840000000.0000000000 25840000000.0 0.0000000000 0.0 26131464000.0000000000 26131464000.0 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 74.4246220524 0.0000111397 1.11397e-05 84.6617893044 0.0000000000 0.0 159.0864113568 2.2003953055 Very Low 3.0236787973 Very Low 0.0000000000 0.0 0.0148900000 0.01489 291464000.0000000000 291464000.0 3400.0000000000 3400.0 25840000000.0000000000 25840000000.0 26131464000.0000000000 26131464000.0 0.0000058883 5.8883e-06 0.0000002640 2.64e-07 Very Low 25.5546240994 0.0000133653 1.33653e-05 101.5760064000 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.0000000000 153.0 6.3750000000 6.375 219965392.4481385648 219965392.44813856 2625.4678449644 19953555621.7294769287 19953555621.729477 0.0000000000 0.0 20173521014.1776084900 20173521014.17761 0.0000678921 6.78921e-05 0.0000000585 5.85e-08 0.0005670888 Very Low 95203.6602259949 0.0009791956 7441.8869311356 0.0000000000 0.0 102645.5471571305 21.1438517348 Relatively Moderate 20.0830898102 Relatively High 1.0000000000 1.0 0.0312500000 0.03125 291464000.0000000000 291464000.0 3400.0000000000 3400.0 25840000000.0000000000 25840000000.0 0.0000000000 0.0 26131464000.0000000000 26131464000.0 0.0000002273 2.273e-07 0.0000001163 1.163e-07 0.0000219536 2.19536e-05 Very Low 2.0699168137 0.0000123617 1.23617e-05 93.9491793975 0.0000000000 0.0 96.0190962112 4.4186617199 Very Low 5.1065299405 Very Low 0.0000000000 0.0 0.0000105528 1.05528e-05 291464000.0000000000 291464000.0 3400.0000000000 3400.0 25840000000.0000000000 25840000000.0 0.0000000000 0.0 26131464000.0000000000 26131464000.0 0.1339019955 0.0000892813 8.92813e-05 0.0314801129 Very Low 411.8489129934 0.0000032034 3.2034e-06 24.3455041449 0.0000000000 0.0 436.1944171383 5.4031119357 Very Low 6.4702789640 6.470278964 Very Low 3.0000000000 3.0 0.0137011320 0.013701132 278575886.5716552138 278575886.5716552 3100.1926962857 23561464491.7714042664 23561464491.771404 23840040378.3430557251 23840040378.343056 0.0015593140 0.001559314 0.0000000365 3.65e-08 Very Low 5951.5973015532 0.0000015511 1.5511e-06 11.7883555124 5963.3856570656 19.3976911898 Relatively Moderate 17.2677765053 Relatively Moderate 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0477752648 0.0001095931 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000003007 3.007e-07 0.0003313697
50 49 T15003002600 Hawaii HI 15 Honolulu County 3 15003 2600 15003002600 4249 791449000.0000000000 791449000.0 0.0000000000 0.0 0.2563620755 0.2563620754 25.6530656656 Relatively High 88.7048213476 87.1165644172 21.1208678596 Relatively Moderate 71.2740070664 80.6748466258 474238.9442787840 474238.944278784 431102.8780618620 431102.878061862 0.0056757982 43136.0662169221 0.0000000000 0.0 38.8131066797 Relatively High 95.9291986978 94.5868945869 4.3270000000 4.327 51.4027980000 51.402798 Relatively Low 13.6493795737 60.0000000000 60.0 2.5701399000 2.5701399 Not Applicable Not Applicable Not Applicable 0.0434782590 0.043478259 206319525.3344310820 206319525.33443108 1107.6540157938 8418170520.0329809189 8418170520.03298 8624490045.3674087524 8624490045.367409 0.0000135471 1.35471e-05 0.0000000017 1.7e-09 Very Low 121.5227170250 121.522717025 0.0000000820 8.2e-08 0.6229487767 122.1456658017 1.6354321518 Very Low 1.9858551825 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 154.0000000000 154.0 8.5555555550 8.555555555 0.0000000000 0.0 0.0000000000 0.0 0.0000004090 4.09e-07 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0035502375 791449000.0000000000 791449000.0 4249.0000000000 4249.0 32292400000.0000000000 32292400000.0 33083849000.0000000000 33083849000.000004 0.0167507621 0.0001397988 Very Low 427356.7000000000 427356.7 0.0056226000 0.0056226 42731.7600000000 42731.76 470088.4600000000 470088.46 32.1984610759 Relatively High 44.1003359351 Very High 1.0000000000 1.0 0.0312500000 0.03125 791449000.0000000000 791449000.0 4249.0000000000 4249.0 32292400000.0000000000 32292400000.0 0.0000000000 0.0 33083849000.0000000000 33083849000.000004 0.0000180224 1.80224e-05 0.0000000210 2.1e-08 0.0002275779 Very Low 445.7428404058 0.0000027892 2.7892e-06 21.1982847254 0.0000000000 0.0 466.9411251311 4.9863470369 Very Low 6.4587259850 6.458725985 Relatively Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0100000000 0.01 791449000.0000000000 791449000.0 4249.0000000000 4249.0 32292400000.0000000000 32292400000.0 0.0000000000 0.0 33083849000.0000000000 33083849000.000004 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 202.0945732534 0.0000139214 1.39214e-05 105.8023361042 0.0000000000 0.0 307.8969093577 2.7421515792 Very Low 4.5257518719 Very Low 0.0000000000 0.0 0.0148900000 0.01489 791449000.0000000000 791449000.0 4249.0000000000 4249.0 32292400000.0000000000 32292400000.0 33083849000.0000000000 33083849000.000004 0.0000058883 5.8883e-06 0.0000002640 2.64e-07 Very Low 69.3916973926 0.0000167026 1.67026e-05 126.9401327040 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.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000678921 6.78921e-05 0.0000000585 5.85e-08 0.0005670888 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 1.0000000000 1.0 0.0312500000 0.03125 791449000.0000000000 791449000.0 4249.0000000000 4249.0 32292400000.0000000000 32292400000.0 0.0000000000 0.0 33083849000.0000000000 33083849000.000004 0.0000002273 2.273e-07 0.0000001163 1.163e-07 0.0000219536 2.19536e-05 Very Low 5.6207064759 0.0000154485 1.54485e-05 117.4088421353 0.0000000000 0.0 123.0295486112 4.7992645854 Very Low 6.6615326154 Very Low 0.0000000000 0.0 0.0000105528 1.05528e-05 791449000.0000000000 791449000.0 4249.0000000000 4249.0 32292400000.0000000000 32292400000.0 0.0000000000 0.0 33083849000.0000000000 33083849000.000004 0.1339019955 0.0000892813 8.92813e-05 0.0314801129 Relatively Low 1118.3453542795 0.0000040033 4.0033e-06 30.4247197387 0.0000000000 0.0 1148.7700740183 7.4615370840 7.461537084 Very Low 10.7322937623 Very Low 0.0000000000 0.0 0.0045870000 0.004587 249345255.4642154872 249345255.4642155 1499.5410201852 11396511753.4072074890 11396511753.407207 11645857008.8714237213 11645857008.871424 0.0015593140 0.001559314 0.0000000365 3.65e-08 Very Low 1783.4601730298 0.0000002512 2.512e-07 1.9089527377 1785.3691257675 12.9766248366 Relatively Moderate 13.8743441858 Relatively Moderate 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0477752648 0.0001095931 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000000125 1.25e-08 0.0000024799 2.4799e-06
51 50 T15003002800 Hawaii HI 15 Honolulu County 3 15003 2800 15003002800 3678 390551000.0000000000 390551000.0 0.0000000000 0.0 0.8899299747 13.2762476830 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.0000000000 0.0 30.1664721027 Relatively Low 32.6375400104 35.8974358974 -1.0800000000 -1.08 51.4027980000 51.402798 Relatively Low 13.6493795737 60.0000000000 60.0 2.5701399000 2.5701399 Not Applicable Not Applicable Not Applicable 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000478451 4.78451e-05 0.0000000048 4.8e-09 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 287.0000000000 287.0 15.9444444440 15.944444444 0.0000000000 0.0 0.0000000000 0.0 0.0000004090 4.09e-07 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0029738504 390551000.0000000000 390551000.0 3678.0000000000 3678.0 27952800000.0000000000 27952800000.0 28343351000.0000000000 28343351000.0 0.0167507621 0.0001397988 Very Low 110889.3000000000 110889.3 0.0035064400 0.00350644 26648.9440000000 26648.944 137538.2440000000 137538.244 21.3755062984 Relatively Moderate 22.7546054907 Relatively Moderate 1.0000000000 1.0 0.0312500000 0.03125 390551000.0000000000 390551000.0 3678.0000000000 3678.0 27952800000.0000000000 27952800000.0 0.0000000000 0.0 28343351000.0000000000 28343351000.0 0.0000180224 1.80224e-05 0.0000000210 2.1e-08 0.0002275779 Very Low 219.9577130893 0.0000024144 2.4144e-06 18.3495625376 0.0000000000 0.0 238.3072756269 3.9848094602 Very Low 4.0116038184 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0100000000 0.01 390551000.0000000000 390551000.0 3678.0000000000 3678.0 27952800000.0000000000 27952800000.0 0.0000000000 0.0 28343351000.0000000000 28343351000.0 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 99.7262460104 0.0000120505 1.20505e-05 91.5841356063 0.0000000000 0.0 191.3103816168 2.3399281779 Very Low 3.0015662033 Very Low 0.0000000000 0.0 0.0148900000 0.01489 390551000.0000000000 390551000.0 3678.0000000000 3678.0 27952800000.0000000000 27952800000.0 28343351000.0000000000 28343351000.0 0.0000058883 5.8883e-06 0.0000002640 2.64e-07 Very Low 34.2422528910 34.242252891 0.0000144581 1.44581e-05 109.8813386880 109.881338688 144.1235915790 144.123591579 7.1484279941 Very Low 5.5701767866 Very Low Insufficient Data Insufficient Data Insufficient Data Insufficient Data Insufficient Data Insufficient Data 153.0000000000 153.0 6.3750000000 6.375 2748002.7474915790 2748002.747491579 22.2384646731 169012331.5158708692 169012331.51587087 0.0000000000 0.0 171760334.2633624673 171760334.26336247 0.0000678921 6.78921e-05 0.0000000585 5.85e-08 0.0005670888 Very Low 1189.3685500276 0.0000082941 8.2941e-06 63.0349139248 0.0000000000 0.0 1252.4034639523 4.8676441341 Very Low 4.3159429990 4.315942999 Very Low 1.0000000000 1.0 0.0312500000 0.03125 390551000.0000000000 390551000.0 3678.0000000000 3678.0 27952800000.0000000000 27952800000.0 0.0000000000 0.0 28343351000.0000000000 28343351000.0 0.0000002273 2.273e-07 0.0000001163 1.163e-07 0.0000219536 2.19536e-05 Very Low 2.7736121151 0.0000133725 1.33725e-05 101.6309064222 0.0000000000 0.0 104.4045185373 4.5437174273 Very Low 4.9018147862 Very Low 0.0000000000 0.0 0.0000297603 2.97603e-05 390551000.0000000000 390551000.0 3678.0000000000 3678.0 27952800000.0000000000 27952800000.0 0.0000000000 0.0 28343351000.0000000000 28343351000.0 0.0453136570 0.045313657 0.0000302136 3.02136e-05 0.0314801129 Very Low 526.6776022834 0.0000033071 3.3071e-06 25.1342350676 0.0000000000 0.0 551.8118373510 551.811837351 5.8436061145 Very Low 6.5323723162 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0015593140 0.001559314 0.0000000365 3.65e-08 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0477752648 0.0001095931 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000000147 1.47e-08 0.0000053072 5.3072e-06
52 51 T15003003000 Hawaii HI 15 Honolulu County 3 15003 3000 15003003000 4321 523641000.0000000000 523641000.0 0.0000000000 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.0000000000 0.0 28.7304303328 Relatively Low 20.3526386343 23.6467236467 -1.9780000000 -1.978 51.4027980000 51.402798 Relatively Low 13.6493795737 60.0000000000 60.0 2.5701399000 2.5701399 Not Applicable Not Applicable Not Applicable 0.0020000000 0.002 251966.9345973358 2.0791899878 15801843.9071857799 15801843.90718578 16053810.8417831156 16053810.841783118 0.0000615999 6.15999e-05 0.0000000062 6.2e-09 Very Low 0.0310422895 0.0000000000 0.0 0.0001956324 0.0312379219 0.1038087327 Very Low 0.0933066629 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 154.0000000000 154.0 8.5555555550 8.555555555 0.0000000000 0.0 0.0000000000 0.0 0.0000004090 4.09e-07 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0029729141 523641000.0000000000 523641000.0 4321.0000000000 4321.0 32839600000.0000000000 32839600000.0 33363241000.0000000000 33363241000.000004 0.0167507621 0.0001397988 Very Low 166244.1000000000 166244.1 0.0041246100 0.00412461 31347.0360000000 31347.036 197591.1360000000 197591.136 24.1192836215 Relatively Moderate 24.4531556460 24.453155646 Relatively Moderate 1.0000000000 1.0 0.0312500000 0.03125 523641000.0000000000 523641000.0 4321.0000000000 4321.0 32839600000.0000000000 32839600000.0 0.0000000000 0.0 33363241000.0000000000 33363241000.000004 0.0000180224 1.80224e-05 0.0000000210 2.1e-08 0.0002275779 Very Low 294.9137931729 0.0000028365 2.8365e-06 21.5574931274 0.0000000000 0.0 316.4712863003 4.3799911192 Very Low 4.1995360505 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0100000000 0.01 523641000.0000000000 523641000.0 4321.0000000000 4321.0 32839600000.0000000000 32839600000.0 0.0000000000 0.0 33363241000.0000000000 33363241000.000004 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 133.7104531473 0.0000141573 1.41573e-05 107.5951739954 0.0000000000 0.0 241.3056271427 2.5282042934 Very Low 3.0886960415 Very Low 0.0000000000 0.0 0.0148900000 0.01489 523641000.0000000000 523641000.0 4321.0000000000 4321.0 32839600000.0000000000 32839600000.0 33363241000.0000000000 33363241000.000004 0.0000058883 5.8883e-06 0.0000002640 2.64e-07 Very Low 45.9111551273 0.0000169857 1.69857e-05 129.0911540160 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.0000000000 153.0 6.3750000000 6.375 7892777.5263804989 7892777.526380499 56.2731231073 427675735.6151204705 427675735.6151205 0.0000000000 0.0 435568513.1415009499 435568513.14150095 0.0000678921 6.78921e-05 0.0000000585 5.85e-08 0.0005670888 Very Low 3416.0887833210 3416.088783321 0.0000209876 2.09876e-05 159.5061315374 0.0000000000 0.0 3575.5949148584 6.9053681457 Relatively Low 5.8312454850 5.831245485 Relatively Low 1.0000000000 1.0 0.0312500000 0.03125 523641000.0000000000 523641000.0 4321.0000000000 4321.0 32839600000.0000000000 32839600000.0 0.0000000000 0.0 33363241000.0000000000 33363241000.000004 0.0000002273 2.273e-07 0.0000001163 1.163e-07 0.0000219536 2.19536e-05 Very Low 3.7187896627 0.0000157103 1.57103e-05 119.3983541696 0.0000000000 0.0 123.1171438323 4.8004033170 4.800403317 Very Low 4.9322027091 Very Low 0.0000000000 0.0 0.0000201545 2.01545e-05 523641000.0000000000 523641000.0 4321.0000000000 4321.0 32839600000.0000000000 32839600000.0 0.0000000000 0.0 33363241000.0000000000 33363241000.000004 0.0701101201 0.0000467470 4.6747e-05 0.0314801129 Very Low 739.9232037191 0.0000040711 4.0711e-06 30.9402715912 0.0000000000 0.0 770.8634753103 6.5324549018 Very Low 6.9548406651 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0015593140 0.001559314 0.0000000365 3.65e-08 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0477752648 0.0001095931 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000000173 1.73e-08 0.0000088501 8.8501e-06
53 52 T15003003101 Hawaii HI 15 Honolulu County 3 15003 3101 15003003101 3687 492314000.0000000000 492314000.0 0.0000000000 0.0 2.0789056010 2.078905601 16.6138274719 Relatively Low 55.9534775018 51.8404907975 16.7794100011 Relatively Low 49.9511953697 55.2147239264 237789.1283950369 237789.1283950368 204090.5852518204 0.0044340188 33698.5431432164 0.0000000000 0.0 31.6408936082 Relatively Moderate 48.2340710749 50.1424501425 -0.1580000000 -0.158 51.4027980000 51.402798 Relatively Low 13.6493795737 60.0000000000 60.0 2.5701399000 2.5701399 Not Applicable Not Applicable Not Applicable 0.0020000000 0.002 4891339.6375649422 4891339.637564942 36.6318431808 278402008.1739190221 278402008.173919 283293347.8114840388 283293347.81148404 0.0000981502 9.81502e-05 0.0000000102 1.02e-08 Very Low 0.9601719971 0.0000000007 7e-10 0.0056849324 0.9658569295 0.3258197788 Very Low 0.3225245827 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 287.0000000000 287.0 15.9444444440 15.944444444 0.0000000000 0.0 0.0000000000 0.0 0.0000004090 4.09e-07 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0029680742 492314000.0000000000 492314000.0 3687.0000000000 3687.0 28021200000.0000000000 28021200000.0 28513514000.0000000000 28513514000.0 0.0167507621 0.0001397988 Very Low 190812.3000000000 190812.3 0.0042947900 0.00429479 32640.4040000000 32640.404 223452.7040000000 223452.704 25.1287251725 Relatively High 28.0574096887 Relatively Moderate 1.0000000000 1.0 0.0312500000 0.03125 492314000.0000000000 492314000.0 3687.0000000000 3687.0 28021200000.0000000000 28021200000.0 0.0000000000 0.0 28513514000.0000000000 28513514000.0 0.0000180224 1.80224e-05 0.0000000210 2.1e-08 0.0002275779 Very Low 277.2704757248 0.0000024203 2.4203e-06 18.3944635877 0.0000000000 0.0 295.6649393125 4.2818199548 Very Low 4.5212976106 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0100000000 0.01 492314000.0000000000 492314000.0 3687.0000000000 3687.0 28021200000.0000000000 28021200000.0 0.0000000000 0.0 28513514000.0000000000 28513514000.0 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 125.7111800466 0.0000120800 1.208e-05 91.8082403427 0.0000000000 0.0 217.5194203893 2.4422438638 Very Low 3.2859325425 Very Low 0.0000000000 0.0 0.0148900000 0.01489 492314000.0000000000 492314000.0 3687.0000000000 3687.0 28021200000.0000000000 28021200000.0 28513514000.0000000000 28513514000.0 0.0000058883 5.8883e-06 0.0000002640 2.64e-07 Very Low 43.1645047377 0.0000144934 1.44934e-05 110.1502163520 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.0000000000 153.0 6.3750000000 6.375 28382955.0204525515 28382955.02045255 252.3501170301 1917860889.4284636974 1917860889.4284637 0.0000000000 0.0 1946243844.4489159584 1946243844.448916 0.0000678921 6.78921e-05 0.0000000585 5.85e-08 0.0005670888 Very Low 12284.4833721466 0.0000941166 9.41166e-05 715.2862456870 715.286245687 0.0000000000 0.0 12999.7696178336 10.6181604917 Relatively Low 9.8748471608 Relatively Low 1.0000000000 1.0 0.0312500000 0.03125 492314000.0000000000 492314000.0 3687.0000000000 3687.0 28021200000.0000000000 28021200000.0 0.0000000000 0.0 28513514000.0000000000 28513514000.0 0.0000002273 2.273e-07 0.0000001163 1.163e-07 0.0000219536 2.19536e-05 Very Low 3.4963118130 3.496311813 0.0000134052 1.34052e-05 101.8795954253 0.0000000000 0.0 105.3759072384 4.5577656620 4.557765662 Very Low 5.1572928361 Very Low 0.0000000000 0.0 0.0000568811 5.68811e-05 492314000.0000000000 492314000.0 3687.0000000000 3687.0 28021200000.0000000000 28021200000.0 0.0000000000 0.0 28513514000.0000000000 28513514000.0 0.0193976418 0.0000129337 1.29337e-05 0.0314801129 Very Low 543.1992353547 0.0000027125 2.7125e-06 20.6146968892 0.0000000000 0.0 563.8139322439 5.8856694150 5.885669415 Very Low 6.9010131938 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0015593140 0.001559314 0.0000000365 3.65e-08 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0477752648 0.0001095931 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000000378 3.78e-08 0.0000269712 2.69712e-05
54 53 T15003003407 Hawaii HI 15 Honolulu County 3 15003 3407 15003003407 913 159228000.0000000000 159228000.0 0.0000000000 0.0 0.0477917056 18.3386697912 Relatively Moderate 64.3052557775 65.3374233129 12.1430194003 Very Low 21.8534761270 21.853476127 12.2699386503 90124.3205147800 90124.32051478 80912.8216251666 0.0012120393 9211.4988896134 0.0000000000 0.0 48.2609182352 Very High 99.6593986814 100.0000000000 100.0 10.2350000000 10.235 51.4027980000 51.402798 Relatively Low 13.6493795737 60.0000000000 60.0 2.5701399000 2.5701399 Not Applicable Not Applicable Not Applicable 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000478451 4.78451e-05 0.0000000048 4.8e-09 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 154.0000000000 154.0 8.5555555550 8.555555555 0.0000000000 0.0 0.0000000000 0.0 0.0000004090 4.09e-07 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0046333130 0.004633313 159228000.0000000000 159228000.0 913.0000000000 913.0 6938800000.0000000000 6938800000.0 7098028000.0000000000 7098028000.0 0.0167507621 0.0001397988 Very Low 80542.4000000000 80542.4 0.0012006800 0.00120068 9125.1680000000 9125.168 89667.5680000000 89667.568 18.5347634922 Relatively Moderate 31.5653788500 31.56537885 Relatively High 1.0000000000 1.0 0.0312500000 0.03125 159228000.0000000000 159228000.0 913.0000000000 913.0 6938800000.0000000000 6938800000.0 0.0000000000 0.0 7098028000.0000000000 7098028000.0 0.0000180224 1.80224e-05 0.0000000210 2.1e-08 0.0002275779 Very Low 89.6769608555 0.0000005993 5.993e-07 4.5549620980 4.554962098 0.0000000000 0.0 94.2319229535 2.9247885716 Very Low 4.7105976451 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0100000000 0.01 159228000.0000000000 159228000.0 913.0000000000 913.0 6938800000.0000000000 6938800000.0 0.0000000000 0.0 7098028000.0000000000 7098028000.0 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 40.6584817341 0.0000029913 2.9913e-06 22.7341804809 0.0000000000 0.0 63.3926622150 63.392662215 1.6192081391 Very Low 3.3229142555 Very Low 0.0000000000 0.0 0.0148900000 0.01489 159228000.0000000000 159228000.0 913.0000000000 913.0 6938800000.0000000000 6938800000.0 7098028000.0000000000 7098028000.0 0.0000058883 5.8883e-06 0.0000002640 2.64e-07 Very Low 13.9605978306 0.0000035890 3.589e-06 27.2761452480 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.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000678921 6.78921e-05 0.0000000585 5.85e-08 0.0005670888 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 1.0000000000 1.0 0.0312500000 0.03125 159228000.0000000000 159228000.0 913.0000000000 913.0 6938800000.0000000000 6938800000.0 0.0000000000 0.0 7098028000.0000000000 7098028000.0 0.0000002273 2.273e-07 0.0000001163 1.163e-07 0.0000219536 2.19536e-05 Very Low 1.1308041968 0.0000033195 3.3195e-06 25.2281178794 0.0000000000 0.0 26.3589220762 2.8717553046 Very Low 4.9563740207 Very Low 0.0000000000 0.0 0.0000105528 1.05528e-05 159228000.0000000000 159228000.0 913.0000000000 913.0 6938800000.0000000000 6938800000.0 0.0000000000 0.0 7098028000.0000000000 7098028000.0 0.1339019955 0.0000892813 8.92813e-05 0.0314801129 Relatively Low 224.9947805496 0.0000008602 8.602e-07 6.5374839071 0.0000000000 0.0 231.5322644568 4.3747620601 Very Low 7.8239142645 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0015593140 0.001559314 0.0000000365 3.65e-08 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0477752648 0.0001095931 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000000124 1.24e-08 0.0000023264 2.3264e-06
55 54 T15003003501 Hawaii HI 15 Honolulu County 3 15003 3501 15003003501 2282 361961000.0000000000 361961000.0 0.0000000000 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.0000000000 0.0 39.7422161099 Relatively High 97.1001012229 95.4415954416 4.9080000000 4.908 51.4027980000 51.402798 Relatively Low 13.6493795737 60.0000000000 60.0 2.5701399000 2.5701399 Not Applicable Not Applicable Not Applicable 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000478451 4.78451e-05 0.0000000048 4.8e-09 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 154.0000000000 154.0 8.5555555550 8.555555555 0.0000000000 0.0 0.0000000000 0.0 0.0000004090 4.09e-07 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0046333130 0.004633313 361961000.0000000000 361961000.0 2282.0000000000 2282.0 17343200000.0000000000 17343200000.0 17705161000.0000000000 17705161000.0 0.0167507621 0.0001397988 Very Low 183464.6000000000 183464.6 0.0024805400 0.00248054 18852.1040000000 18852.104 202316.7040000000 202316.704 24.3100488847 Relatively Moderate 34.0930840747 Relatively High 1.0000000000 1.0 0.0312500000 0.03125 361961000.0000000000 361961000.0 2282.0000000000 2282.0 17343200000.0000000000 17343200000.0 0.0000000000 0.0 17705161000.0000000000 17705161000.0 0.0000180224 1.80224e-05 0.0000000210 2.1e-08 0.0002275779 Very Low 203.8558697479 0.0000014980 1.498e-06 11.3849107421 0.0000000000 0.0 215.2407804900 215.24078049 3.8518554300 3.85185543 Very Low 5.1086719073 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0100000000 0.01 361961000.0000000000 361961000.0 2282.0000000000 2282.0 17343200000.0000000000 17343200000.0 0.0000000000 0.0 17705161000.0000000000 17705161000.0 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 92.4258591891 0.0000074767 7.4767e-06 56.8230009390 56.823000939 0.0000000000 0.0 149.2488601282 2.1540710416 Very Low 3.6402648222 Very Low 0.0000000000 0.0 0.0148900000 0.01489 361961000.0000000000 361961000.0 2282.0000000000 2282.0 17343200000.0000000000 17343200000.0 17705161000.0000000000 17705161000.0 0.0000058883 5.8883e-06 0.0000002640 2.64e-07 Very Low 31.7355738398 0.0000089705 8.9705e-06 68.1754254720 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.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000678921 6.78921e-05 0.0000000585 5.85e-08 0.0005670888 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 1.0000000000 1.0 0.0312500000 0.03125 361961000.0000000000 361961000.0 2282.0000000000 2282.0 17343200000.0000000000 17343200000.0 0.0000000000 0.0 17705161000.0000000000 17705161000.0 0.0000002273 2.273e-07 0.0000001163 1.163e-07 0.0000219536 2.19536e-05 Very Low 2.5705718710 2.570571871 0.0000082969 8.2969e-06 63.0564786427 0.0000000000 0.0 65.6270505137 3.8922361200 3.89223612 Very Low 5.5318744949 Very Low 0.0000000000 0.0 0.0000105528 1.05528e-05 361961000.0000000000 361961000.0 2282.0000000000 2282.0 17343200000.0000000000 17343200000.0 0.0000000000 0.0 17705161000.0000000000 17705161000.0 0.1339019955 0.0000892813 8.92813e-05 0.0314801129 Relatively Low 511.4636606785 0.0000021500 2.15e-06 16.3401295467 0.0000000000 0.0 527.8037902252 5.7575992375 Very Low 8.4795135456 Very Low 0.0000000000 0.0 0.0045870000 0.004587 55964729.5375511646 55964729.537551165 188.8993255307 1435634874.0330631733 1435634874.0330632 1491599603.5706143379 1491599603.5706143 0.0015593140 0.001559314 0.0000000365 3.65e-08 Very Low 400.2918204270 400.291820427 0.0000000316 3.16e-08 0.2404735047 400.5322939317 7.8849374944 Relatively Low 8.6322228692 Relatively Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0477752648 0.0001095931 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating November 2021 0.0000000124 1.24e-08 0.0000023264 2.3264e-06
56 55 T15003004600 Hawaii HI 15 Honolulu County 3 15003 4600 15003004600 3735 483204000.0000000000 483204000.0 17799.9354685802 2.6391245450 2.639124545 16.4638912986 Relatively Low 55.1767277526 50.0000000000 50.0 15.6406606485 Relatively Low 43.4856129449 41.1042944785 192587.1103315401 163440.9148912363 163440.9148912364 0.0038350010 0.003835001 29146.0077957004 0.1876446033 33.6382390098 Relatively Moderate 69.8861926518 68.0911680912 1.0910000000 1.091 51.4027980000 51.402798 Relatively Low 13.6493795737 60.0000000000 60.0 2.5701399000 2.5701399 Not Applicable Not Applicable Not Applicable 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000478451 4.78451e-05 0.0000000048 4.8e-09 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000021774 2.1774e-06 0.0000022062 2.2062e-06 0.0080465986 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000004090 4.09e-07 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0029215956 483204000.0000000000 483204000.0 3735.0000000000 3735.0 28386000000.0000000000 28386000000.0 28869204000.0000000000 28869204000.0 0.0167507621 0.0001397988 Very Low 162417.5000000000 162417.5 0.0037890500 0.00378905 28796.7800000000 28796.78 191214.2800000000 191214.28 23.8569741112 Relatively Moderate 28.3189396515 Relatively Moderate 1.0000000000 1.0 0.0312500000 0.03125 483204000.0000000000 483204000.0 3735.0000000000 3735.0 28386000000.0000000000 28386000000.0 17799.9354685802 28869221799.9354629517 28869221799.935463 0.0000180224 1.80224e-05 0.0000000210 2.1e-08 0.0002275779 Very Low 272.1397379210 272.139737921 0.0000024518 2.4518e-06 18.6339358542 0.1265897750 0.126589775 290.9002635501 4.2586946040 4.258694604 Very Low 4.7807463515 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000016 1.6e-09 0.0000001005 1.005e-07 0.0000761839 7.61839e-05 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0100000000 0.01 483204000.0000000000 483204000.0 3735.0000000000 3735.0 28386000000.0000000000 28386000000.0 17799.9354685802 28869221799.9354629517 28869221799.935463 0.0000255348 2.55348e-05 0.0000003276 3.276e-07 0.0002460797 Very Low 123.3849637492 0.0000122373 1.22373e-05 93.0034656035 0.0438020271 216.4322313799 2.4381681868 Very Low 3.4875286844 Very Low 0.0000000000 0.0 0.0148900000 0.01489 483204000.0000000000 483204000.0 3735.0000000000 3735.0 28386000000.0000000000 28386000000.0 28869204000.0000000000 28869204000.0 0.0000058883 5.8883e-06 0.0000002640 2.64e-07 Very Low 42.3657693002 0.0000146821 1.46821e-05 111.5842305600 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.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000678921 6.78921e-05 0.0000000585 5.85e-08 0.0005670888 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 1.0000000000 1.0 0.0312500000 0.03125 483204000.0000000000 483204000.0 3735.0000000000 3735.0 28386000000.0000000000 28386000000.0 17799.9354685802 28869221799.9354629517 28869221799.935463 0.0000002273 2.273e-07 0.0000001163 1.163e-07 0.0000219536 2.19536e-05 Very Low 3.4316144840 3.431614484 0.0000135797 1.35797e-05 103.2059367729 0.0122116541 106.6497629110 106.649762911 4.5760579400 4.57605794 Very Low 5.5048542640 5.504854264 Very Low 0.0000000000 0.0 0.0000790165 7.90165e-05 483204000.0000000000 483204000.0 3735.0000000000 3735.0 28386000000.0000000000 28386000000.0 17799.9354685802 28869221799.9354629517 28869221799.935463 0.0152455823 0.0000101652 1.01652e-05 0.0035842084 Very Low 582.0928057819 0.0000030000 3e-06 22.8002269098 0.0050411471 604.8980738388 6.0252906004 Very Low 7.5107533908 Very Low 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0015593140 0.001559314 0.0000000365 3.65e-08 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0477752648 0.0001095931 No Rating 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 No Expected Annual Losses 0.0000000000 0.0 No Rating Insufficient Data Insufficient Data Insufficient Data 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000000 0.0 0.0000000851 8.51e-08 0.0000001057 1.057e-07 0.0000000000 0.0 No No 0.0000000123 1.23e-08 0.0000105419 1.05419e-05 0.0000021180 2.118e-06

View file

@ -1,17 +1,90 @@
import pandas as pd
# pylint: disable=protected-access
from unittest import mock
from data_pipeline.config import settings
import filecmp
import requests
from data_pipeline.etl.base import ValidGeoLevel
from data_pipeline.tests.conftest import copy_data_files
from data_pipeline.etl.sources.national_risk_index.etl import (
NationalRiskIndexETL,
)
from data_pipeline.tests.sources.example.test_etl import TestETL
from data_pipeline.utils import get_module_logger
DATA_DIR = (
settings.APP_ROOT / "tests" / "sources" / "national_risk_index" / "data"
)
logger = get_module_logger(__name__)
class TestNationalRiskIndexETL:
class TestNationalRiskIndexETL(TestETL):
_ETL_CLASS = NationalRiskIndexETL
def setup_method(self, _method, filename=__file__):
"""Invoke `setup_method` from Parent, but using the current file name.
This code can be copied identically between all child classes.
"""
super().setup_method(_method=_method, filename=filename)
def _setup_etl_instance_and_run_extract(self, mock_etl, mock_paths):
with mock.patch("data_pipeline.utils.requests") as requests_mock:
zip_file_fixture_src = (
self._DATA_DIRECTORY_FOR_TEST / "NRI_Table_CensusTracts.zip"
)
tmp_path = mock_paths[1]
# Create mock response.
with open(zip_file_fixture_src, mode="rb") as file:
file_contents = file.read()
response_mock = requests.Response()
response_mock.status_code = 200
# pylint: disable=protected-access
response_mock._content = file_contents
# Return text fixture:
requests_mock.get = mock.MagicMock(return_value=response_mock)
# Instantiate the ETL class.
etl = NationalRiskIndexETL()
# Monkey-patch the temporary directory to the one used in the test
etl.TMP_PATH = tmp_path
# Run the extract method.
etl.extract()
return etl
# TODO: Add a flag to make this run only when pytest is run with an argument.
def test_update_test_fixtures(self, mock_etl, mock_paths):
etl = self._setup_etl_instance_and_run_extract(
mock_etl=mock_etl, mock_paths=mock_paths
)
# After running extract, write the results as the "input.csv" in the test
# directory.
copy_data_files(
src=etl.INPUT_CSV,
dst=self._DATA_DIRECTORY_FOR_TEST / self._INPUT_CSV_FILE_NAME,
)
# After running transform, write the results as the "transform.csv" in the test
# directory.
etl.transform()
etl.output_df.to_csv(
path_or_buf=self._DATA_DIRECTORY_FOR_TEST
/ self._TRANSFORM_CSV_FILE_NAME,
index=False,
)
# After running load, write the results as the "output.csv" in the test
# directory.
etl.load()
copy_data_files(
src=etl._get_output_file_path(),
dst=self._DATA_DIRECTORY_FOR_TEST / self._OUTPUT_CSV_FILE_NAME,
)
def test_init(self, mock_etl, mock_paths):
"""Tests that the mock NationalRiskIndexETL class instance was
initiliazed correctly.
@ -26,73 +99,56 @@ class TestNationalRiskIndexETL:
etl = NationalRiskIndexETL()
data_path, tmp_path = mock_paths
input_csv = tmp_path / "NRI_Table_CensusTracts.csv"
output_dir = data_path / "dataset" / "national_risk_index_2020"
print(input_csv)
# validation
assert etl.DATA_PATH == data_path
assert etl.TMP_PATH == tmp_path
assert etl.INPUT_CSV == input_csv
assert etl.OUTPUT_DIR == output_dir
assert etl.GEOID_FIELD_NAME == "GEOID10"
assert etl.GEOID_TRACT_FIELD_NAME == "GEOID10_TRACT"
assert etl.NAME == "national_risk_index"
assert etl.LAST_UPDATED_YEAR == 2020
assert (
etl.SOURCE_URL
== "https://hazards.fema.gov/nri/Content/StaticDocuments/DataDownload//NRI_Table_CensusTracts/NRI_Table_CensusTracts.zip"
)
assert etl.GEO_LEVEL == ValidGeoLevel.CENSUS_TRACT
assert etl.COLUMNS_TO_KEEP == [
etl.GEOID_TRACT_FIELD_NAME,
etl.RISK_INDEX_EXPECTED_ANNUAL_LOSS_SCORE_FIELD_NAME,
etl.EXPECTED_POPULATION_LOSS_RATE_FIELD_NAME,
etl.EXPECTED_AGRICULTURE_LOSS_RATE_FIELD_NAME,
etl.EXPECTED_BUILDING_LOSS_RATE_FIELD_NAME,
]
def test_transform(self, mock_etl):
"""Tests the transform() method for NationalRiskIndexETL
Validates the following conditions:
- The columns have been renamed correctly
- The values for each tract has been applied to each of the block
groups in that tract
"""
# setup - copy sample data into tmp_dir
def test_get_output_file_path(self, mock_etl, mock_paths):
"""Tests the right file name is returned."""
etl = NationalRiskIndexETL()
input_src = DATA_DIR / "input.csv"
input_dst = etl.INPUT_CSV
for src, dst in [(input_src, input_dst)]:
copy_data_files(src, dst)
data_path, tmp_path = mock_paths
# setup - read in sample output as dataframe
TRACT_COL = etl.GEOID_TRACT_FIELD_NAME
output_file_path = etl._get_output_file_path()
expected_output_file_path = (
data_path / "dataset" / "national_risk_index_2020" / "usa.csv"
)
assert output_file_path == expected_output_file_path
expected = pd.read_csv(
DATA_DIR / "transform.csv",
dtype={TRACT_COL: "string"},
def test_extract(self, mock_etl, mock_paths):
"""Ensure the extract results are working as appropriate."""
tmp_path = mock_paths[1]
# ETL instance returned by this method is never used, so we assign it to `_`.
_ = self._setup_etl_instance_and_run_extract(
mock_etl=mock_etl,
mock_paths=mock_paths,
)
# execution
etl.transform()
# Assert that the extracted file exists
extracted_file_path = tmp_path / "NRI_Table_CensusTracts.csv"
assert extracted_file_path.is_file()
# validation
assert etl.df.shape == (55, 370)
pd.testing.assert_frame_equal(etl.df, expected, rtol=1e-10, atol=1e-10)
def test_load(self, mock_etl):
"""Tests the load() method for NationalRiskIndexETL
Validates the following conditions:
- The transformed dataframe is written to the directory specified by
self.OUTPUT_DIR
- The content of the file that's written matches the data in self.df
"""
# setup - input variables
etl = NationalRiskIndexETL()
TRACT_COL = etl.GEOID_TRACT_FIELD_NAME
output_path = etl.OUTPUT_DIR / "usa.csv"
# setup - mock transform step
df_transform = pd.read_csv(
DATA_DIR / "transform.csv",
dtype={TRACT_COL: "string"},
input_csv_path = (
self._DATA_DIRECTORY_FOR_TEST / self._INPUT_CSV_FILE_NAME
)
etl.df = df_transform
# setup - load expected output
expected = pd.read_csv(DATA_DIR / "output.csv", dtype={TRACT_COL: str})
# execution
etl.load()
output = pd.read_csv(output_path, dtype={TRACT_COL: str})
# validation
assert output_path.exists()
assert output.shape == (55, 5)
pd.testing.assert_frame_equal(output, expected, rtol=1e-10, atol=1e-10)
# Make sure extracted file is equal to the input fixture:
assert filecmp.cmp(
f1=extracted_file_path, f2=input_csv_path, shallow=False
)

View file

@ -62,7 +62,7 @@ def remove_files_from_dir(
"""
for file in os.listdir(files_path):
# don't rempove __init__ files as they conserve dir structure
# don't remove __init__ files as they conserve dir structure
if file == "__init__.py":
continue
@ -86,15 +86,18 @@ def remove_all_from_dir(files_path: Path) -> None:
None
"""
for file in os.listdir(files_path):
# don't rempove __init__ files as they conserve dir structure
if file == "__init__.py":
continue
if os.path.isfile(files_path / file):
os.remove(files_path / file)
else:
shutil.rmtree(files_path / file)
logger.info(f"Removing {file}")
if os.path.exists(files_path):
for file in os.listdir(files_path):
# don't rempove __init__ files as they conserve dir structure
if file == "__init__.py":
continue
if os.path.isfile(files_path / file):
os.remove(files_path / file)
else:
shutil.rmtree(files_path / file)
logger.info(f"Removing {file}")
else:
logger.info(f"The following path does not exist: `{files_path}`.")
def remove_all_dirs_from_dir(dir_path: Path) -> None:
@ -218,7 +221,7 @@ def temp_folder_cleanup() -> None:
data_path = settings.APP_ROOT / "data"
logger.info("Initializing all temp directoriees")
logger.info("Initializing all temp directories")
remove_all_from_dir(data_path / "tmp")

View file

@ -6,6 +6,7 @@ envlist = py38, py39, lint, checkdeps, pytest
skip_missing_interpreters = true
[testenv:lint]
deps = pytest
# lints python code in src and tests
commands = black data_pipeline
flake8 data_pipeline