From fdba1eb171a2fb124fa899aad55c297a2d13f0b9 Mon Sep 17 00:00:00 2001 From: Saran Ahluwalia Date: Fri, 3 Dec 2021 12:42:07 -0500 Subject: [PATCH 1/2] Revisions to FEMA measure and new link for FEMA data (#952) * per tract collect all diaster total annual expected loss - numerator * add updated numerators * EALP columns are missing on tox check - this will ensure only EALP columns that exist are subet on * EALB columns are missing on tox check - this will ensure only EALP columns that exist are subet on * reverted to incorporate megatracts * updated unit tests * fix tests * add transform * remove print statement * input reflects input from FEMA risks for tracts * revise tests and update fixtures - clean up tests and main transform function * added more records * remove references to Blocks in keyword args in tests * linting * addressed latest PR feedback * remove imports and update arguments to be compatible for 1.1.0 * remove block reference in test * change precision to 10 digits - refactor tests to accomdate this Co-authored-by: Saran Ahluwalia --- .../etl/sources/national_risk_index/etl.py | 59 +++++++++++++++--- .../national_risk_index/data/input.csv | 62 +++++++++++++++++-- .../national_risk_index/data/output.csv | 60 ++++++++++++++++-- .../national_risk_index/data/transform.csv | 62 +++++++++++++++++-- .../sources/national_risk_index/test_etl.py | 25 ++++---- 5 files changed, 231 insertions(+), 37 deletions(-) diff --git a/data/data-pipeline/data_pipeline/etl/sources/national_risk_index/etl.py b/data/data-pipeline/data_pipeline/etl/sources/national_risk_index/etl.py index a5340ed4..29b8377a 100644 --- a/data/data-pipeline/data_pipeline/etl/sources/national_risk_index/etl.py +++ b/data/data-pipeline/data_pipeline/etl/sources/national_risk_index/etl.py @@ -15,7 +15,7 @@ class NationalRiskIndexETL(ExtractTransformLoad): """ETL class for the FEMA National Risk Index dataset""" def __init__(self): - self.NRI_FTP_URL = "https://nri-data-downloads.s3.amazonaws.com/NRI_Table_CensusTracts.zip" + 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" @@ -32,10 +32,12 @@ class NationalRiskIndexETL(ExtractTransformLoad): ) self.EXPECTED_ANNUAL_LOSS_BUILDING_VALUE_INPUT_FIELD_NAME = "EAL_VALB" + self.EXPECTED_ANNUAL_LOSS_AGRICULTURAL_VALUE_INPUT_FIELD_NAME = ( "EAL_VALA" ) self.EXPECTED_ANNUAL_LOSS_POPULATION_VALUE_INPUT_FIELD_NAME = "EAL_VALP" + self.AGRICULTURAL_VALUE_INPUT_FIELD_NAME = "AGRIVALUE" self.POPULATION_INPUT_FIELD_NAME = "POPULATION" self.BUILDING_VALUE_INPUT_FIELD_NAME = "BUILDVALUE" @@ -99,23 +101,66 @@ class NationalRiskIndexETL(ExtractTransformLoad): inplace=True, ) + # Only use disasters linked to climate change + disaster_categories = [ + "AVLN", # Avalanche + "CFLD", # Coastal Flooding + "CWAV", # Cold Wave + "DRGT", # Drought + "HAIL", # Hail + "HWAV", # Heat Wave + "HRCN", # Hurricane + "ISTM", # Ice Storm + "LNDS", # Landslide + "RFLD", # Riverine Flooding + "SWND", # Strong Wind + "TRND", # Tornado + "WFIR", # Wildfire + "WNTW", # Winter Weather + ] + + # Some disaster categories do not have agriculture value column + agriculture_columns = [ + f"{x}_EALA" + for x in disaster_categories + if f"{x}_EALA" in list(df_nri.columns) + ] + + population_columns = [ + f"{x}_EALP" + for x in disaster_categories + if f"{x}_EALP" in list(df_nri.columns) + ] + + buildings_columns = [ + f"{x}_EALB" + for x in disaster_categories + if f"{x}_EALB" in list(df_nri.columns) + ] + + disaster_population_sum_series = df_nri[population_columns].sum(axis=1) + + disaster_agriculture_sum_series = df_nri[agriculture_columns].sum( + axis=1 + ) + + disaster_buildings_sum_series = df_nri[buildings_columns].sum(axis=1) + # Population EAL Rate = Eal Valp / Population df_nri[self.EXPECTED_POPULATION_LOSS_RATE_FIELD_NAME] = ( - df_nri[self.EXPECTED_ANNUAL_LOSS_POPULATION_VALUE_INPUT_FIELD_NAME] + disaster_population_sum_series / df_nri[self.POPULATION_INPUT_FIELD_NAME] ) # Agriculture EAL Rate = Eal Vala / Agrivalue df_nri[self.EXPECTED_AGRICULTURE_LOSS_RATE_FIELD_NAME] = ( - df_nri[ - self.EXPECTED_ANNUAL_LOSS_AGRICULTURAL_VALUE_INPUT_FIELD_NAME - ] + disaster_agriculture_sum_series / df_nri[self.AGRICULTURAL_VALUE_INPUT_FIELD_NAME] ) # divide EAL_VALB (Expected Annual Loss - Building Value) by BUILDVALUE (Building Value ($)). df_nri[self.EXPECTED_BUILDING_LOSS_RATE_FIELD_NAME] = ( - df_nri[self.EXPECTED_ANNUAL_LOSS_BUILDING_VALUE_INPUT_FIELD_NAME] + disaster_buildings_sum_series / df_nri[self.BUILDING_VALUE_INPUT_FIELD_NAME] ) @@ -128,5 +173,5 @@ class NationalRiskIndexETL(ExtractTransformLoad): # 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 + self.OUTPUT_DIR / "usa.csv", index=False, float_format="%.10f" ) diff --git a/data/data-pipeline/data_pipeline/tests/sources/national_risk_index/data/input.csv b/data/data-pipeline/data_pipeline/tests/sources/national_risk_index/data/input.csv index e04ae7c1..0e8b313d 100644 --- a/data/data-pipeline/data_pipeline/tests/sources/national_risk_index/data/input.csv +++ b/data/data-pipeline/data_pipeline/tests/sources/national_risk_index/data/input.csv @@ -1,6 +1,56 @@ -TRACT,TRACTFIPS,RISK_SCORE,RISK_RATNG,RISK_NPCTL,EAL_SCORE,AVLN_EALT,CFLD_EALT,CWAV_EALT,DRGT_EALT,ERQK_EALT,HAIL_EALT,HWAV_EALT,HRCN_EALT,ISTM_EALT,LNDS_EALT,LTNG_EALT,RFLD_EALT,SWND_EALT,TRND_EALT,TSUN_EALT,VLCN_EALT,WFIR_EALT,WNTW_EALT,AVLN_EXPT,CFLD_EXPT,CWAV_EXPT,DRGT_EXPT,ERQK_EXPT,HAIL_EXPT,HWAV_EXPT,HRCN_EXPT,ISTM_EXPT,LNDS_EXPT,LTNG_EXPT,RFLD_EXPT,SWND_EXPT,TRND_EXPT,TSUN_EXPT,VLCN_EXPT,WFIR_EXPT,WNTW_EXPT,EAL_VALA,EAL_VALP,EAL_VALB,AGRIVALUE,POPULATION,BUILDVALUE -40300,05007040300,10.492015,Very Low,15.3494,11.5,12.5,13.5,14.5,15.5,16.5,17.5,18.5,19.5,20.5,21.5,22.5,23.5,24.5,25.5,26.5,27.5,28.5,29.5,30.5,31.5,32.5,33.5,34.5,35.5,36.5,37.5,38.5,39.5,40.5,41.5,42.5,43.5,44.5,45.5,46.5,47.5,48.5,49.5,50.5,234.7446176,204.8883901,126.4079101 -20100,05001020100,14.705854,Relatively Low,36.725828,12.5,13.5,14.5,15.5,16.5,17.5,18.5,19.5,20.5,21.5,22.5,23.5,24.5,25.5,26.5,27.5,28.5,29.5,30.5,31.5,32.5,33.5,34.5,35.5,36.5,37.5,38.5,39.5,40.5,41.5,42.5,43.5,44.5,45.5,46.5,47.5,48.5,49.5,50.5,51.5,238.9921867,179.4960371,96.24552261 -40500,15007040500,10.234981,Very Low,13.997993,13.5,14.5,15.5,16.5,17.5,18.5,19.5,20.5,21.5,22.5,23.5,24.5,25.5,26.5,27.5,28.5,29.5,30.5,31.5,32.5,33.5,34.5,35.5,36.5,37.5,38.5,39.5,40.5,41.5,42.5,43.5,44.5,45.5,46.5,47.5,48.5,49.5,50.5,51.5,52.5,187.5793934,183.4527834,106.4706219 -21010,15001021010,21.537231,Relatively Moderate,59.488033,14.5,15.5,16.5,17.5,18.5,19.5,20.5,21.5,22.5,23.5,24.5,25.5,26.5,27.5,28.5,29.5,30.5,31.5,32.5,33.5,34.5,35.5,36.5,37.5,38.5,39.5,40.5,41.5,42.5,43.5,44.5,45.5,46.5,47.5,48.5,49.5,50.5,51.5,52.5,53.5,142.7041082,236.9465219,175.3803106 -21101,15001021101,19.434585,Relatively Low,53.392265,15.5,16.5,17.5,18.5,19.5,20.5,21.5,22.5,23.5,24.5,25.5,26.5,27.5,28.5,29.5,30.5,31.5,32.5,33.5,34.5,35.5,36.5,37.5,38.5,39.5,40.5,41.5,42.5,43.5,44.5,45.5,46.5,47.5,48.5,49.5,50.5,51.5,52.5,53.5,54.5,257.1497377,66.41934096,177.9963115 +OID_,NRI_ID,STATE,STATEABBRV,STATEFIPS,COUNTY,COUNTYTYPE,COUNTYFIPS,STCOFIPS,TRACT,TRACTFIPS,POPULATION,BUILDVALUE,AGRIVALUE,AREA,RISK_SCORE,RISK_RATNG,RISK_NPCTL,RISK_SPCTL,EAL_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 +1,T15007040300,Hawaii,HI,15,Kauai,County,007,15007,040300,15007040300,8385,912658000.000000000000000,147860.564720087801106,3.610852158936000,18.070583080265969,Relatively Low,63.077578740428109,63.496932515337420,18.619940187472693,Relatively Low,59.642007726254143,70.552147239263803,324935.215571426844690,98076.524868236796465,0.029679044196817,225560.735895809746580,1297.954807380313696,31.680872499320355,Relatively Moderate,48.727874593056661,51.851851851851848,-0.133000000000000,52.509198000000005,Relatively Low,23.512567610563156,100.000000000000000,2.625459900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012000000,202742385.580054253339767,1862.685587688657506,14156410466.433797836303711,14359152852.013851165771484,0.000035757915783,0.000000001999201,Very Low,507.265007730539708,0.000000260563828,1.980285090493629,509.245292821033274,2.632179599990412,Very Low,2.553881041028066,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.003058960415350,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.000534585527820,912658000.000000000000000,8385.000000000000000,63726000000.000000000000000,64638658000.000000000000000,0.016750762052542,0.000139798843457,Very Low,22512.200000000000728,0.000154120000000,1171.311999999999898,23683.511999999998807,11.892065330323444,Relatively Low,13.014700281967832,Relatively Low,0.000000000000000,0.000000000000000,912658000.000000000000000,8385.000000000000000,63726000000.000000000000000,147860.564720087801106,64638805860.564720153808594,0.000018022350010,0.000000076028889,0.000227577948569,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,2.000000000000000,0.034360591348646,912658000.000000000000000,8385.000000000000000,63726000000.000000000000000,147860.564720087801106,64638805860.564720153808594,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,788.930559275780638,0.000096873700712,736.240125412995894,1.322667162413767,1526.493351851189573,4.675786295341241,Very Low,6.166291306573290,Very Low,0.000000000000000,0.014890000000000,912658000.000000000000000,8385.000000000000000,63726000000.000000000000000,64638658000.000000000000000,0.000005888299321,0.000002894427808,Relatively Low,80.018911842590683,0.000361376982050,2746.465063580044443,2826.483975422635012,19.277366194551124,Relatively Low,15.442944623193897,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.000000000000000,5.916666666000000,59632790.058585114777088,418.926659915589426,3183842615.358479976654053,51591.312510378811567,3243526996.729575634002686,0.000180437019067,0.000011483083913,0.004246623092835,Very Low,63663.113680533271690,0.028462539099828,216315.297158695466351,1296.275749506644388,281274.686588735377882,29.587909606205649,Relatively High,26.970881940916119,Relatively High,1.000000000000000,0.031250000000020,912658000.000000000000000,8385.000000000000000,63726000000.000000000000000,147860.564720087801106,64638805860.564720153808594,0.000003238688884,0.000001829685538,0.000072723262261,Very Low,92.369228725832357,0.000479434788604,3643.704393392752536,0.336028207064017,3736.409650325650091,14.973490276784354,Relatively Low,16.607054548516683,Relatively Low,0.000000000000000,0.000065330996904,912658000.000000000000000,8385.000000000000000,63726000000.000000000000000,147860.564720087801106,64638805860.564720153808594,0.008966238954864,0.000005978380718,0.002107946289716,Very Low,534.610715263847283,0.000003274959403,24.889691462507123,0.020362504191456,559.520769230545852,5.870692520235838,Very Low,6.746910814468500,Very Low,7.000000000000000,0.031969309000000,198555247.532617419958115,978.467889623433734,7436355961.138096809387207,7634911208.670714378356934,0.001559313957881,0.000003873415999,Very Low,9898.016764864929428,0.000121164102392,920.847178175504837,10818.863943040432787,23.658087226460832,Relatively High,20.211588413559333,Relatively Moderate,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000541106984497,0.000003737122925,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +2,T15001020100,Hawaii,HI,15,Hawaii,County,001,15001,020100,15001020100,5213,409283000.000000000000000,30161527.914254255592823,97.064289124715998,26.047455783509985,Relatively High,89.481571096660659,87.423312883435571,24.657127539084048,Relatively Moderate,83.810610539050572,87.423312883435571,754552.359507773537189,510222.116738112992607,0.032033425788507,243454.035992655757582,876.206777004724927,33.345593526617947,Relatively Moderate,67.051951960167429,65.527065527065531,0.908000000000000,50.775198000000003,Relatively Low,9.385937002863507,40.000000000000000,2.538759900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.057971012000000,1082842.592053657397628,13.792066693157830,104819706.867999508976936,105902549.460053160786629,0.000031371292631,0.000000002491783,Very Low,1.969285238747636,0.000000001992281,0.015141332240108,1.984426570987744,0.414207719970816,Very Low,0.437449991011060,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000054093342,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.009987437324854,409283000.000000000000000,5213.000000000000000,39618800000.000000000000000,40028083000.000000000000000,0.000850584189555,0.000011691657432,Very Low,509627.799999999988358,0.031423360000000,238817.535999999992782,748445.336000000010245,37.597757916819745,Very High,44.788231028767299,Very High,1.000000000000000,0.031250000000000,409283000.000000000000000,5213.000000000000000,39618800000.000000000000000,30161527.914254240691662,40058244527.914253234863281,0.000018022350010,0.000000076028889,0.000227577948569,Very Low,230.507546221934746,0.000012385581117,94.130416490743656,214.503082763801871,539.141045476480144,5.231134959711277,Very Low,5.893258120681169,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010000000000000,409283000.000000000000000,5213.000000000000000,39618800000.000000000000000,30161527.914254240691662,40058244527.914253234863281,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,104.509416557341467,0.000017079795187,129.806443424658113,74.221396296295836,308.537256278295331,2.744051254460297,Very Low,3.939006349018273,Very Low,0.000000000000000,0.014890000000000,409283000.000000000000000,5213.000000000000000,39618800000.000000000000000,40028083000.000000000000000,0.000005888299321,0.000001361000000,Very Low,35.884614275743019,0.000105642956770,802.886471451998659,838.771085727743412,12.858194922920008,Relatively Low,11.212113867172516,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000624504383719,0.000003832719626,0.000349248462208,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,1.000000000000000,0.031250000000000,409283000.000000000000000,5213.000000000000000,39618800000.000000000000000,30161527.914254240691662,40058244527.914253234863281,0.000008360074880,0.000000310246591,0.000621258458489,Very Low,106.926141476057097,0.000050541108764,384.112426606139309,585.565760552296751,1076.604328634492731,9.889862579794682,Very Low,11.939465972410222,Relatively Low,0.000000000000000,0.000678146785973,409283000.000000000000000,5213.000000000000000,39618800000.000000000000000,30161527.914254255592823,40058244527.914253234863281,0.000398557530215,0.000000265744496,0.000093700142421,Very Low,110.621217213187236,0.000000939454414,7.139853547989648,1.916537392330449,119.677608153507350,3.510925097376685,Very Low,4.391726113028614,Very Low,4.000000000000000,0.018268176000000,315888.858762023271993,2.211792828645750,16809625.497707698494196,17125514.356469720602036,0.000665459771009,0.000003873415999,Very Low,3.840177530082879,0.000000156507003,1.189453221632264,5.029630751715144,1.832726993792976,Very Low,1.704290689043051,Very Low,4.000000000000000,0.020402139076609,407903840.584515810012817,5201.979993783983446,39535047952.758277893066406,39942951793.342788696289062,0.000000007027667,0.000004004334439,Very Low,0.058339599851715,0.000423318392971,3217.219786580352775,3217.278126180204708,17.052472730135587,Relatively Low,17.993213537117740,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +3,T15007040500,Hawaii,HI,15,Kauai,County,007,15007,040500,15007040500,5943,1030806000.000000000000000,459516.673183084814809,6.150033815141999,19.046719861759392,Relatively Moderate,67.453498123427607,69.325153374233125,18.771977430406171,Relatively Low,60.411883583772116,72.085889570552141,332959.957144957443234,167792.773432268761098,0.021730193546166,165149.470950861606980,17.712761827072324,33.121711736203288,Relatively Moderate,64.782644379394299,63.532763532763539,0.768000000000000,52.509198000000005,Relatively Low,23.512567610563156,100.000000000000000,2.625459900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012000000,66594737.284852802753448,383.944722560676041,2917979891.461137771606445,2984574628.745990276336670,0.000006316943585,0.000000000307790,Very Low,29.435069363085365,0.000000008268791,0.062842810646074,29.497912173731432,1.018443491774727,Very Low,1.033088963157478,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,56.000000000000000,3.111111111000000,0.000000000000000,0.000000000000000,0.003058960415350,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.000586061414433,1030806000.000000000000000,5943.000000000000000,45166800000.000000000000000,46197606000.000000000000000,0.016750762052542,0.000139798843457,Very Low,120075.000000000000000,0.001143830000000,8693.108000000000175,128768.108000000007451,20.911155103332572,Relatively Moderate,23.926024740843179,Relatively Moderate,0.000000000000000,0.000000000000000,1030806000.000000000000000,5943.000000000000000,45166800000.000000000000000,459516.673183084581979,46198065516.673187255859375,0.000018022350010,0.000000076028889,0.000227577948569,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,2.000000000000000,0.028985507246377,1030806000.000000000000000,5943.000000000000000,45166800000.000000000000000,459516.673183084581979,46198065516.673187255859375,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,762.938550288435295,0.000056439293516,428.938630721269590,3.277615170724554,1195.154796180429457,4.309541502912105,Very Low,5.941773479134124,Very Low,0.000000000000000,0.014890000000000,1030806000.000000000000000,5943.000000000000000,45166800000.000000000000000,46197606000.000000000000000,0.000005888299321,0.000002894427808,Relatively Low,90.377747678553789,0.000256131592644,1946.600104097341955,2036.977851775894578,17.283338020245630,Relatively Low,14.475236897655854,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.000000000000000,5.916666666000000,40606220.883291430771351,293.038509486273483,2227092672.095678329467773,530.170731265608765,2267699423.149700641632080,0.000180437019067,0.000011483083913,0.004246623092835,Very Low,43350.620584583179152,0.019909499280110,151312.194528838968836,13.320992015846791,194676.136105437995866,26.172284910303983,Relatively High,24.942394480089053,Relatively High,1.000000000000000,0.031250000000000,1030806000.000000000000000,5943.000000000000000,45166800000.000000000000000,459516.673183084581979,46198065516.673187255859375,0.000003238688884,0.000001829685538,0.000072723262261,Very Low,104.326872920351917,0.000339806910992,2582.532523538177884,1.044298485531621,2687.903694944061954,13.416609658874259,Relatively Low,15.557076645219537,Relatively Low,0.000000000000000,0.000122336973537,1030806000.000000000000000,5943.000000000000000,45166800000.000000000000000,459516.673183084814809,46198065516.673187255859375,0.005285626108433,0.000003524274266,0.001242640978027,Very Low,666.547508160754319,0.000002562318790,19.473622803999096,0.069856154969358,686.090987119722854,6.283638163311168,Very Low,7.550014823460850,Very Low,9.000000000000000,0.041103397000000,42337272.988800629973412,137.653444203017074,1046166175.942929863929749,1088503448.931730270385742,0.001559313957881,0.000003873415999,Very Low,2713.527099274375360,0.000021915881323,166.560698051181760,2880.087797325557403,15.219053766285491,Relatively Moderate,13.593275150265196,Relatively Moderate,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000541106984497,0.000003737122925,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +4,T15001021010,Hawaii,HI,15,Hawaii,County,001,15001,021010,15001021010,7884,737712000.000000000000000,8711454.309073342010379,58.440151228618006,43.106627998660407,Very High,99.445964338250462,98.159509202453989,42.667457296369903,Very High,99.274117048625911,99.079754601226995,3909779.132120071910322,2582125.811125269625336,0.174653201719912,1327364.333071334753186,288.987923467535779,31.890361888922648,Relatively Moderate,51.095669302109272,54.415954415954417,-0.002000000000000,50.775198000000003,Relatively Low,9.385937002863507,40.000000000000000,2.538759900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000047845109139,0.000000004844912,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000054093342,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.009999885193434,737712000.000000000000000,7884.000000000000000,59918400000.000000000000000,60656112000.000000000000000,0.000850584189555,0.000011691657432,Very Low,2580741.399999999906868,0.173676540000000,1319941.703999999910593,3900683.103999999817461,65.186171488167929,Very High,74.264016339066245,Very High,1.000000000000000,0.031250000000151,737712000.000000000000000,7884.000000000000000,59918400000.000000000000000,8711454.309073342010379,60664823454.309074401855469,0.000018022350010,0.000000076028889,0.000227577948569,Very Low,415.478245948609299,0.000018731617404,142.360292269591525,61.954215651676066,619.792753869877060,5.479958766530131,Very Low,5.904156014504219,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.026934466357946,737712000.000000000000000,7884.000000000000000,59918400000.000000000000000,8711454.309073342010379,60664823454.309074401855469,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,473.505191030971389,0.000065112724441,494.856705754712891,57.246194848989163,1025.608091634671837,4.095278998054852,Very Low,5.622104990637776,Very Low,0.000000000000000,0.014890000000000,737712000.000000000000000,7884.000000000000000,59918400000.000000000000000,60656112000.000000000000000,0.000005888299321,0.000001361000000,Very Low,64.680210432846991,0.000159771546360,1214.263752335997879,1278.943962768847769,14.799578962528820,Relatively Low,12.341781416544659,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000624504383719,0.000003832719626,0.000349248462208,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,1.000000000000000,0.031250000000151,737712000.000000000000000,7884.000000000000000,59918400000.000000000000000,8711454.309073342010379,60664823454.309074401855469,0.000008360074880,0.000000310246591,0.000621258458489,Very Low,192.728986250852984,0.000076437003930,580.921229870571096,169.127021113454930,942.777237234878839,9.461817765541827,Very Low,10.924214523916811,Very Low,1.000000000000000,0.000467363509275,737712000.000000000000000,7884.000000000000000,59918400000.000000000000000,8711454.309073342010379,60664823454.309074401855469,0.000690037621565,0.000000460093427,0.000162226575877,Very Low,237.910942866967787,0.000001695303449,12.884306210149477,0.660491853415617,251.455740930532869,4.496809078503664,Very Low,5.379641650092124,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000665459771009,0.000003873415999,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,4.000000000000000,0.020744800000000,737708710.862811446189880,7883.959135186231833,59918089427.415367126464844,60655798138.278167724609375,0.000000007027667,0.000004004334439,Very Low,0.107548739840299,0.000654913524328,4977.342784893816315,4977.450333633657465,19.722417134348273,Relatively Low,19.902265064971211,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +5,T15001021101,Hawaii,HI,15,Hawaii,County,001,15001,021101,15001021101,3531,365469000.000000000000000,1115552.946347012184560,41.055120644435988,39.636937149804297,Very High,99.051402961272501,96.625766871165638,35.463132423433116,Relatively High,97.745363560125924,94.478527607361968,2244880.451421157456934,1569603.244108999846503,0.088847312410525,675239.574319988954812,37.632992168865620,35.280571858058941,Relatively High,83.000027357535629,82.336182336182333,2.118000000000000,50.775198000000003,Relatively Low,9.385937002863507,40.000000000000000,2.538759900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.067971012000000,53358423.690588340163231,515.525513932693116,3917993905.888467788696289,3971352329.579055786132812,0.000000977772482,0.000000000066841,Very Low,3.546210714365034,0.000000002342169,0.017800481431824,3.564011195796858,0.503484607294274,Very Low,0.562592041973954,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000054093342,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.009999851184190,365469000.000000000000000,3531.000000000000000,26835600000.000000000000000,27201069000.000000000000000,0.000850584189555,0.000011691657432,Very Low,1549795.800000000046566,0.087591070000000,665692.131999999866821,2215487.932000000029802,53.983998396644580,Very High,68.039979566843414,Very High,1.000000000000000,0.031250000000000,365469000.000000000000000,3531.000000000000000,26835600000.000000000000000,1115552.946347011951730,27202184552.946346282958984,0.000018022350010,0.000000076028889,0.000227577948569,Very Low,205.831569867754524,0.000008389312665,63.758776257206229,7.933601595315358,277.523947720275942,4.192392615977817,Very Low,4.997107013886568,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.028985507246377,365469000.000000000000000,3531.000000000000000,26835600000.000000000000000,1115552.946347011951730,27202184552.946346282958984,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,270.497444752324100,0.000033533088576,254.851473174626193,7.956954500400997,533.305872427351233,3.293177477933061,Very Low,5.001574733221205,Very Low,0.000000000000000,0.014890000000000,365469000.000000000000000,3531.000000000000000,26835600000.000000000000000,27201069000.000000000000000,0.000005888299321,0.000001361000000,Very Low,32.043143973098125,0.000071556738990,543.831216323999342,575.874360297098178,11.343352697345519,Very Low,10.465165342924342,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.000000000000000,5.916666666000000,4828130.527921983972192,35.138401238823612,267051849.415059447288513,0.000000000000000,271879979.942981421947479,0.000624504383719,0.000003832719626,0.000349248462208,Very Low,17839.866353791781876,0.000796830870148,6055.914613127400116,0.000000000000000,23895.780966919177445,13.007020049172072,Relatively Moderate,13.654660802426511,Relatively Moderate,1.000000000000000,0.031250000000000,365469000.000000000000000,3531.000000000000000,26835600000.000000000000000,1115552.946347011951730,27202184552.946346282958984,0.000008360074880,0.000000310246591,0.000621258458489,Very Low,95.479631450886345,0.000034233772309,260.176669546571475,21.657709494064754,377.314010491522311,6.972778355963702,Very Low,8.906307171454520,Very Low,0.000000000000000,0.000363433010824,365469000.000000000000000,3531.000000000000000,26835600000.000000000000000,1115552.946347012184560,27202184552.946346282958984,0.000888906086929,0.000000592692102,0.000208980186372,Very Low,118.067616777408858,0.000000760591083,5.780492228394779,0.084726579084509,123.932835584888139,3.552052636362216,Very Low,4.701055030778012,Very Low,13.000000000000000,0.059371574000000,31437177.792141351848841,196.017354682917215,1489731895.590170860290527,1521169073.382312297821045,0.000665459771009,0.000003873415999,Very Low,1242.063844847214796,0.000045078268770,342.594842648870838,1584.658687496085349,12.470895907482237,Relatively Moderate,12.269891237572905,Relatively Moderate,3.000000000000000,0.018802800000000,365467633.735404670238495,3530.985437961834577,26835489328.509941101074219,27200956962.245346069335938,0.000000007027667,0.000004004334439,Very Low,0.048292824891562,0.000265857425816,2020.516436200824046,2020.564729025716588,14.603224130781710,Relatively Low,16.302990863932269,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +6,T15007040603,Hawaii,HI,15,Kauai,County,007,15007,040603,15007040603,2544,509507000.000000000000000,3763051.378240332473069,15.928973532638002,23.861367567041292,Relatively Moderate,84.614855854493470,84.969325153374228,22.241325503289115,Relatively Moderate,75.902885659687385,83.742331288343564,553788.502694698632695,159866.005336266942322,0.046520019058116,353552.144841679662932,40370.352516752020165,35.021508643436263,Relatively Moderate,81.316171039312778,79.772079772079778,1.956000000000000,52.509198000000005,Relatively Low,23.512567610563156,100.000000000000000,2.625459900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012000000,59268365.982889771461487,295.930621287777342,2249072721.787107467651367,2308341087.769997119903564,0.000002006324874,0.000000000069403,Very Low,8.320364775869177,0.000000001437088,0.010921868960949,8.331286644830129,0.668206255166390,Very Low,0.716693389709781,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,119.000000000000000,6.611111111000000,1994468.376331709092483,1994468.376331709092483,0.003058960415350,Relatively Moderate,40334.387651045261009,40334.387651045261009,9.317339689953302,Relatively Moderate,10.011881919578272,Relatively Moderate,,0.000628802341491,509507000.000000000000000,2544.000000000000000,19334400000.000000000000000,19843907000.000000000000000,0.016750762052542,0.000139798843457,Very Low,29888.799999999999272,0.000204600000000,1554.960000000000036,31443.760000000002037,13.070335715186046,Relatively Low,15.812529337709838,Relatively Low,0.000000000000000,0.000000000000000,509507000.000000000000000,2544.000000000000000,19334400000.000000000000000,3763051.378240333404392,19847670051.378238677978516,0.000018022350010,0.000000076028889,0.000227577948569,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,2.000000000000000,0.028985507246395,509500026.786715865135193,2543.978950499509665,19334240023.796276092529297,3763051.378240333404392,19847503101.961227416992188,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,377.100261163184030,0.000024159578443,183.612796165403381,26.840885228604112,587.553942557191476,3.401252935181761,Very Low,4.958451052493142,Very Low,0.000000000000000,0.014890000000000,509507000.000000000000000,2544.000000000000000,19334400000.000000000000000,19843907000.000000000000000,0.000005888299321,0.000002894427808,Relatively Low,44.671931562735296,0.000109641388472,833.274552384929393,877.946483947664774,13.055340485195185,Relatively Low,11.561344343052994,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.000000000000000,5.916666666000000,119566421.246979236602783,677.500818329603362,5149006219.304985046386719,0.000000000000000,5268572640.551964759826660,0.000180437019067,0.000011483083913,0.004246623092835,Very Low,127647.401048026236822,0.046030475920911,349831.616998920566402,0.000000000000000,477479.018046946730465,35.295729635896052,Relatively High,35.566468565019960,Very High,1.000000000000000,0.031250000000020,509507000.000000000000000,2544.000000000000000,19334400000.000000000000000,3763051.378240333404392,19847670051.378238677978516,0.000003238688884,0.000001829685538,0.000072723262261,Very Low,51.566708033354374,0.000145460000263,1105.496001999179953,8.551917883746867,1165.614627916281052,10.155232703286202,Very Low,12.450797324087972,Relatively Low,0.000000000000000,0.000299017126570,509507000.000000000000000,2544.000000000000000,19334400000.000000000000000,3763051.378240332473069,19847670051.378238677978516,0.002162509916313,0.000001441887468,0.000508402104552,Very Low,329.461238332602022,0.000001096843177,8.336008146290597,0.572062594410891,338.369309073303555,4.964561772023817,Very Low,6.307115089055826,Very Low,3.000000000000000,0.013701132000000,71084897.081879317760468,86.374107393828297,656443216.193095088005066,727528113.274974346160889,0.001559313957881,0.000003873415999,Relatively Low,1518.683784372977016,0.000004583889762,34.837562194321322,1553.521346567298679,12.388673784163261,Relatively Moderate,11.699932367029783,Relatively Moderate,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000541106984497,0.000003737122925,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +7,T15007040700,Hawaii,HI,15,Kauai,County,007,15007,040700,15007040700,8403,753840000.000000000000000,4902899.033772812224925,35.909475969708005,14.599588268301085,Relatively Low,44.799901015961176,33.435582822085891,14.202599646353727,Relatively Low,34.629291026821925,25.153374233128833,144200.070197762106545,43942.448744840025029,0.012848378785760,97647.678771778562805,2609.942681143513710,33.556682071866049,Relatively Moderate,69.088720488058428,66.951566951566960,1.040000000000000,52.509198000000005,Relatively Low,23.512567610563156,100.000000000000000,2.625459900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012000000,7924120.216700877994299,88.329595379573220,671304924.884756445884705,679229045.101457238197327,0.000017134720508,0.000000001029623,Very Low,9.500495042387705,0.000000006363597,0.048363334807133,9.548858377194840,0.699289480612002,Very Low,0.718660905042846,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,56.000000000000000,3.111111111000000,0.000000000000000,0.000000000000000,0.003058960415350,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.000417927977714,753840000.000000000000000,8403.000000000000000,63862800000.000000000000000,64616640000.000000000000000,0.016750762052542,0.000139798843457,Very Low,22605.699999999997090,0.000265540000000,2018.103999999999587,24623.804000000000087,12.047408420053459,Relatively Low,13.965368441620162,Relatively Low,0.000000000000000,0.000000000000000,753840000.000000000000000,8403.000000000000000,63862800000.000000000000000,4902899.033772810362279,64621542899.033767700195312,0.000018022350010,0.000000076028889,0.000227577948569,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,2.000000000000000,0.036791763792178,753839838.389544725418091,8402.998750639044374,63862790504.856735229492188,4902899.033772810362279,64621533242.280052185058594,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,565.988089185790614,0.000080635464964,612.829533729803416,35.491703630530452,1214.309326546124112,4.332442340786635,Very Low,6.051792867054580,Very Low,0.000000000000000,0.014890000000000,753840000.000000000000000,8403.000000000000000,63862800000.000000000000000,64616640000.000000000000000,0.000005888299321,0.000002894427808,Relatively Low,66.094261490523920,0.000362152746591,2752.360874092202721,2818.455135582726598,19.259095949179155,Relatively Low,16.341811369459286,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.000000000000000,5.916666666000000,17435799.685287371277809,171.149586448662234,1300736857.009833097457886,101991.577398211753462,1318274648.272518634796143,0.000180437019067,0.000011483083913,0.004246623092835,Very Low,18614.210342748356197,0.011628173287410,88374.116984318767209,2562.625411180126321,109550.952738247229718,21.607745351775712,Relatively Moderate,20.862780913201082,Relatively High,1.000000000000000,0.031250000000004,753840000.000000000000000,8403.000000000000000,63862800000.000000000000000,4902899.033772810362279,64621542899.033767700195312,0.000003238688884,0.000001829685538,0.000072723262261,Very Low,76.295413377362266,0.000480463986713,3651.526299020665192,11.142337883446153,3738.964050281472737,14.976901713040991,Relatively Low,17.594358084046164,Relatively Low,0.000000000000000,0.000559939452643,753840000.000000000000000,8403.000000000000000,63862800000.000000000000000,4902899.033772812224925,64621542899.033767700195312,0.001058577579903,0.000000705823236,0.000248869642351,Very Low,446.830632109311921,0.000003321019176,25.239745739099728,0.683228449410750,472.753606297822387,5.550032770387149,Very Low,6.756054277583103,Very Low,18.000000000000000,0.082206795000000,12152864.161139799281955,88.203689990061918,670348043.924470543861389,682500908.085610389709473,0.001559313957881,0.000003873415999,Very Low,1557.829510886304661,0.000028085917308,213.452971543212016,1771.282482429516449,12.942405962592211,Relatively Moderate,11.711640013766548,Relatively Moderate,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000541106984497,0.000003737122925,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +8,T15009030100,Hawaii,HI,15,Maui,County,009,15009,030100,15009030100,2291,368239000.000000000000000,644114.438229309977032,214.387854438644155,15.532373531630407,Relatively Low,50.198655466805974,40.797546012269933,16.223821583930633,Relatively Low,46.889564057795681,49.079754601226995,214942.067418805992929,186581.218711468507536,0.003697271845023,28099.266022177729610,261.582685159759365,30.831720851390461,Relatively Low,39.415369463518722,40.170940170940170,-0.664000000000000,51.801599999999993,Relatively Low,16.958320076360163,80.000000000000000,2.590080000000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012000000,50139595.994548626244068,311.943641014425111,2370771671.709630489349365,2420911267.704178810119629,0.000000307046450,0.000000000049060,Very Low,1.077216672653623,0.000000001070825,0.008138271587043,1.085354944240666,0.338737887006664,Very Low,0.324221463645107,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,427.000000000000000,23.722222221999999,0.000000000000000,0.000000000000000,0.000000162472734,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.007103812176993,368239000.000000000000000,2291.000000000000000,17411600000.000000000000000,17779839000.000000000000000,0.000859904751770,0.000007510810448,Very Low,185778.399999999994179,0.003593490000000,27310.524000000001251,213088.924000000028173,24.734067628104910,Relatively High,26.703320685536816,Relatively Moderate,1.000000000000000,0.031249999999987,368239000.000000000000000,2291.000000000000000,17411600000.000000000000000,644114.438229309860617,17780483114.438228607177734,0.000018022350010,0.000000021030855,0.000227577948569,Very Low,207.391629540509200,0.000001505677789,11.443151200010050,4.580820078009382,223.415600818528503,3.900015124067591,Very Low,3.981929758213094,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010000000000000,368239000.000000000000000,2291.000000000000000,17411600000.000000000000000,644114.438229309860617,17780483114.438228607177734,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,94.028931188588132,0.000007506198115,57.047105675406002,1.585034853535722,152.661071717529865,2.170363366044809,Very Low,2.823544761471985,Very Low,0.000000000000000,0.014890000000000,368239000.000000000000000,2291.000000000000000,17411600000.000000000000000,17779839000.000000000000000,0.000005888299321,0.000001627000000,Relatively Low,32.286008645082561,0.000055501834730,421.813943948000031,454.099952593082605,10.479711822782624,Very Low,8.281797357297069,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,107.000000000000000,4.458333333000000,25.000180519765962,0.000162038207073,1231.490373751434390,13472.892393854155671,14729.382948125357871,0.000030594713634,0.000002726725892,0.004246623092835,Relatively Low,0.003410060413400,0.000000001969842,0.014970801066674,255.080402833889991,255.098783695370088,2.864003401113129,Very Low,2.575415094963251,Very Low,1.000000000000000,0.031249999999987,368239000.000000000000000,2291.000000000000000,17411600000.000000000000000,644114.438229309860617,17780483114.438228607177734,0.000000513167921,0.000000083457607,0.000013387545452,Very Low,5.905263817862854,0.000005975043058,45.410327243198957,0.269472228698567,51.585063289760349,3.592081699035397,Very Low,3.930145380678225,Very Low,0.000000000000000,0.002458172143379,368239000.000000000000000,2291.000000000000000,17411600000.000000000000000,644114.438229309977032,17780483114.438228607177734,0.000179870214590,0.000000119931292,0.000042287156676,Very Low,162.817592258383428,0.000000675413745,5.133144462162781,0.066955122954680,168.017691843500899,3.931294710553110,Very Low,4.456749045557622,Very Low,6.000000000000000,0.027402265000000,14124383.392418932169676,90.804101567624528,690111171.913946390151978,704235555.306365370750427,0.000773214138463,0.000000036639207,Very Low,299.264874905458669,0.000000091167070,0.692869732987851,299.957744638446457,7.160429978125253,Relatively Low,6.034659380420150,Relatively Low,1.000000000000000,0.003531000000000,368238629.388772249221802,2290.996885582163486,17411576330.424442291259766,17779814959.813213348388672,0.000000007027667,0.000004010375565,Very Low,0.009137728105938,0.000032441973250,246.558996697154612,246.568134425260553,7.243305643031007,Very Low,6.926693112104265,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,1.000000000000000,0.036847120484373,4945035.468947387300432,9.360722786476527,71141493.177221611142159,290715.715591293759644,76377244.361760303378105,0.000000085057095,0.000000105693624,0.000000000001782,Very Low,0.034646651404989,0.000000081496598,0.619374146156000,0.000000042671032,0.654020840232021,1.381740411094937,Very Low,0.804698170458325,Very Low,November 2021 +9,T15009030201,Hawaii,HI,15,Maui,County,009,15009,030201,15009030201,2453,240407000.000000000000000,911133.688554194639437,45.603767843030013,16.078265574913885,Relatively Low,53.148929735080216,46.319018404907972,16.562058055112896,Relatively Low,48.730392224253841,51.533742331288344,228667.711164299951633,175591.246228178759338,0.006982535317295,53067.268411438592011,9.196524682595571,31.263492875761600,Relatively Low,44.052471753344456,45.868945868945872,-0.394000000000000,51.801599999999993,Relatively Low,16.958320076360163,80.000000000000000,2.590080000000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.067971012000000,1123293.724740210687742,11.461561047672228,87107863.962308943271637,88231157.687049150466919,0.000214528742899,0.000000016536036,Very Low,16.379572272729490,0.000000012882464,0.097906723823029,16.477478996552517,0.838758176256005,Very Low,0.814056384517046,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,42.000000000000000,2.333333333000000,0.000000000000000,0.000000000000000,0.000000162472734,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.006617246483586,240407000.000000000000000,2453.000000000000000,18642800000.000000000000000,18883207000.000000000000000,0.000859904751770,0.000007510810448,Very Low,175248.299999999988358,0.006871600000000,52224.160000000003492,227472.460000000020955,25.278513198197107,Relatively High,27.673302224764047,Relatively Moderate,1.000000000000000,0.031250000000000,240407000.000000000000000,2453.000000000000000,18642800000.000000000000000,911133.688554194872268,18884118133.688552856445312,0.000018022350010,0.000000021030855,0.000227577948569,Very Low,135.396846835526731,0.000001612146494,12.252313353584638,6.479810490871811,154.128970679983155,3.446063045239119,Very Low,3.567715820938600,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010000000000000,240407000.000000000000000,2453.000000000000000,18642800000.000000000000000,911133.688554194872268,18884118133.688552856445312,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,61.387341537031396,0.000008036972491,61.080990930498004,2.242115013846066,124.710447481375454,2.028884357673102,Very Low,2.676450728081124,Very Low,0.000000000000000,0.014890000000000,240407000.000000000000000,2453.000000000000000,18642800000.000000000000000,18883207000.000000000000000,0.000005888299321,0.000001627000000,Relatively Low,21.078110901719707,0.000059426451590,451.641032084000017,472.719142985719657,10.621028756165231,Very Low,8.511019318807158,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,107.000000000000000,4.458333333000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000030594713634,0.000002726725892,0.004246623092835,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,1.000000000000000,0.031250000000000,240407000.000000000000000,2453.000000000000000,18642800000.000000000000000,911133.688554194872268,18884118133.688552856445312,0.000000513167921,0.000000083457607,0.000013387545452,Very Low,3.855286264166127,0.000006397547194,48.621358675397580,0.381182614637502,52.857827554201194,3.621384622680811,Very Low,4.017693433674800,Very Low,0.000000000000000,0.000510373063129,240407000.000000000000000,2453.000000000000000,18642800000.000000000000000,911133.688554194639437,18884118133.688552856445312,0.000854485710044,0.000000569741775,0.000200888019065,Very Low,104.843052757573588,0.000000713285436,5.420969317366676,0.093416563240192,110.357438638180454,3.417310712397807,Very Low,3.928226425500296,Very Low,1.000000000000000,0.004567044000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000773214138463,0.000000036639207,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,1.000000000000000,0.003531000000000,240406941.155473887920380,2452.999380130435384,18642795288.991310119628906,18883202230.146785736083984,0.000000007027667,0.000004010375565,Very Low,0.005965624157100,0.000034736031626,263.993840353918642,263.999805978075699,7.410127788462048,Very Low,7.185459814984884,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,1.000000000000000,0.010698200280977,7419.823109013547764,0.000000000000000,0.000000000000000,0.000000000000000,7419.823109013547764,0.000000085057095,0.000000105693624,0.000000000001782,Very Low,0.000051985880862,0.000000000000000,0.000000000000000,0.000000000000000,0.000051985880862,0.059409751072801,Very Low,0.035083589382862,Very Low,November 2021 +10,T15001021402,Hawaii,HI,15,Hawaii,County,001,15001,021402,15001021402,4025,425500000.000000000000000,1383968.458588042063639,16.194032555638000,40.689586222225209,Very High,99.172383453168180,97.239263803680984,37.671924775734979,Relatively High,98.484994294669974,96.012269938650306,2691010.346028309781104,1957068.237916240701452,0.096565656381397,733898.988498616032302,43.119613453176967,34.093998368861236,Relatively Moderate,74.000766010997737,71.794871794871796,1.376000000000000,50.775198000000003,Relatively Low,9.385937002863507,40.000000000000000,2.538759900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012000000,23588727.030300747603178,223.136607043385425,1695838213.529729366302490,1719426940.560029983520508,0.000002944259901,0.000000000217378,Very Low,4.859580761603254,0.000000003393941,0.025793951043006,4.885374712646259,0.559292683235675,Very Low,0.603933116829958,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,161.000000000000000,8.944444444000000,1383968.458588042063639,1383968.458588042063639,0.000000054093342,Very Low,0.669612227644636,0.669612227644636,0.237688351416033,Very Low,0.257133424106602,Very Low,,0.009999043923248,425500000.000000000000000,4025.000000000000000,30590000000.000000000000000,31015500000.000000000000000,0.000850584189555,0.000011691657432,Very Low,1310569.600000000093132,0.071139990000000,540663.923999999999069,1851233.523999999975786,50.846647138968237,Very High,61.930383185094144,Very High,1.000000000000000,0.031249999999842,425500000.000000000000000,4025.000000000000000,30590000000.000000000000000,1383968.458588041830808,31016883968.458587646484375,0.000018022350010,0.000000076028889,0.000227577948569,Very Low,239.640935294941386,0.000009563008632,72.678865601160936,9.842521959699779,322.162322855802074,4.406090114125381,Very Low,5.075191078978519,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,1.000000000000000,0.014492753623115,425500000.000000000000000,4025.000000000000000,30590000000.000000000000000,1383968.458588041830808,31016883968.458587646484375,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,157.464330415850583,0.000019112246038,145.253069886383400,4.935746927900516,307.653147230134550,2.741427733906852,Very Low,4.023562463876149,Very Low,0.000000000000000,0.014890000000000,425500000.000000000000000,4025.000000000000000,30590000000.000000000000000,31015500000.000000000000000,0.000005888299321,0.000001361000000,Very Low,37.306468566563112,0.000081567792250,619.915221099999940,657.221689666563179,11.854124495415505,Very Low,10.568575704261882,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.000000000000000,5.916666666000000,174713506.010078012943268,1099.343636405248617,8355011636.679889678955078,341.932856472602282,8529725484.622822761535645,0.000624504383719,0.000003832719626,0.000349248462208,Very Low,645563.656449793837965,0.024929732586153,189465.967654766427586,0.706565518703331,835030.330670078867115,42.524395656157019,Very High,43.140341327518705,Very High,1.000000000000000,0.031249999999842,425500000.000000000000000,4025.000000000000000,30590000000.000000000000000,1383968.458588041830808,31016883968.458587646484375,0.000008360074880,0.000000310246591,0.000621258458489,Very Low,111.162870677260457,0.000039023204062,296.576350873668332,26.868815976088538,434.608037527017359,7.309216082784067,Very Low,9.022043781715112,Very Low,0.000000000000000,0.000136820923822,425500000.000000000000000,4025.000000000000000,30590000000.000000000000000,1383968.458588042063639,31016883968.458587646484375,0.002164350418594,0.000001443114652,0.000508834803253,Very Low,126.002644303833350,0.000000794729327,6.039942881787637,0.096350843140174,132.138938028761146,3.628781911225477,Very Low,4.641070819853478,Very Low,3.000000000000000,0.013701132000000,28350000.000000000000000,217.000000000000000,1649200000.000000000000000,1677550000.000000000000000,0.000665459771009,0.000003873415999,Very Low,258.482603829026061,0.000011516229903,87.523347265385411,346.005951094411444,7.509544556559740,Relatively Low,7.140012586803570,Relatively Low,4.000000000000000,0.020744800000000,425499989.068644762039185,4024.999938706903777,30589999534.172466278076172,31015499523.241115570068359,0.000000007027667,0.000004004334439,Very Low,0.062032597626333,0.000334353191091,2541.084252290157110,2541.146284887784077,15.762836969508848,Relatively Low,17.005728384506682,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +11,T15001021800,Hawaii,HI,15,Hawaii,County,001,15001,021800,15001021800,6322,560173000.000000000000000,1734823.675889549544081,140.969798517703993,26.971492722587445,Relatively High,91.061191382889504,88.036809815950917,25.256872239652658,Relatively Moderate,85.419101169936354,88.036809815950917,810962.251035703462549,553967.910183088388294,0.033807329789819,256935.706402627780335,58.634449987296421,33.708601858218863,Relatively Moderate,70.508576587421004,69.515669515669515,1.135000000000000,50.775198000000003,Relatively Low,9.385937002863507,40.000000000000000,2.538759900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012000000,51086751.826361149549484,576.554823324678637,4381816657.267557144165039,4432903409.093917846679688,0.000000378425350,0.000000000038336,Very Low,1.352716126305224,0.000000001546563,0.011753878499871,1.364470004805095,0.365590169088353,Very Low,0.390307610334516,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,1575.000000000000000,87.500000000000000,1734823.675889549544081,1734823.675889549544081,0.000000054093342,Very Low,8.211210880479758,8.211210880479758,0.548111829416734,Very Low,0.586249672831391,Very Low,,0.009746162153207,560173000.000000000000000,6322.000000000000000,48047200000.000000000000000,48607373000.000000000000000,0.000850584189555,0.000011691657432,Very Low,538363.399999999906868,0.031891220000000,242373.271999999997206,780736.672000000020489,38.130875603039364,Very High,45.917795362283357,Very High,1.000000000000000,0.031250000000095,560173000.000000000000000,6322.000000000000000,48047200000.000000000000000,1734823.675889549544081,48609107823.675895690917969,0.000018022350010,0.000000076028889,0.000227577948569,Very Low,315.488558502712579,0.000015020457284,114.155475360243059,12.337737915262373,441.981771778218274,4.895870389575497,Very Low,5.575601654135190,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010000000000000,560173000.000000000000000,6322.000000000000000,48047200000.000000000000000,1734823.675889549544081,48609107823.675895690917969,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,143.038810312609399,0.000020713306191,157.421127053651958,4.269048833283503,304.728986199545091,2.732714556935592,Very Low,3.965436681502435,Very Low,0.000000000000000,0.014890000000000,560173000.000000000000000,6322.000000000000000,48047200000.000000000000000,48607373000.000000000000000,0.000005888299321,0.000001361000000,Very Low,49.114163140628293,0.000128117163380,973.690441687999055,1022.804604828628385,13.737142805632859,Relatively Low,12.108941893136668,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.000000000000000,5.916666666000000,3744844.489256801083684,53.322907246476191,405254095.073219060897827,0.000000000000000,408998939.562475860118866,0.000624504383719,0.000003832719626,0.000349248462208,Very Low,13837.141481100090459,0.001209199539025,9189.916496587393340,0.000000000000000,23027.057977687487437,12.847448483095091,Relatively Low,12.886207344305475,Relatively Moderate,1.000000000000000,0.031250000000095,560173000.000000000000000,6322.000000000000000,48047200000.000000000000000,1734823.675889549544081,48609107823.675895690917969,0.000008360074880,0.000000310246591,0.000621258458489,Very Low,146.346507059942581,0.000061293092194,465.827500670966344,33.680433832276300,645.854441563185333,8.340967584736276,Very Low,10.179193404860001,Very Low,0.000000000000000,0.001286854619434,560173000.000000000000000,6322.000000000000000,48047200000.000000000000000,1734823.675889549544081,48609107823.675895690917969,0.000259157633623,0.000000172797425,0.000060927483084,Very Low,186.816686062119572,0.000001405792567,10.684023512209363,0.136018525994489,197.636728100323438,4.149920870439883,Very Low,5.247692957752278,Very Low,38.000000000000000,0.173547679000000,8010662.960923641920090,89.792470033489366,682422772.254519224166870,690433435.215442776679993,0.000665459771009,0.000003873415999,Very Low,925.143444492120238,0.000060360505788,458.739843985787672,1383.883288477908081,11.920255491988385,Relatively Moderate,11.205564669686384,Relatively Moderate,4.000000000000000,0.019914225365582,554917542.964756011962891,6278.255778067893516,47714743913.315986633300781,48269661456.280746459960938,0.000000007027667,0.000004004334439,Very Low,0.067816291675282,0.000419998386828,3191.987739891016645,3192.055556182691817,17.007793546364901,Relatively Low,18.141434844500143,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +12,T15009030402,Hawaii,HI,15,Maui,County,009,15009,030402,15009030402,8652,848387000.000000000000000,6154260.503178839571774,17.787058133375997,22.717801880847432,Relatively Moderate,81.282393214094228,83.742331288343564,23.944967649307102,Relatively Moderate,81.762190846725971,85.276073619631902,691042.409030565991998,529396.717185242334381,0.021260698709299,161581.310190674819751,64.381654648827791,30.553467769017956,Relatively Low,36.526413700653841,37.606837606837608,-0.838000000000000,51.801599999999993,Relatively Low,16.958320076360163,80.000000000000000,2.590080000000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000047845109139,0.000000004844912,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,49.000000000000000,2.722222222000000,5275080.431296148337424,5275080.431296148337424,0.000000162472734,Very Low,2.333098903878128,2.333098903878128,0.360338906628882,Very Low,0.342415027152304,Very Low,,0.006384811915481,848387000.000000000000000,8652.000000000000000,65755200000.000000000000000,66603587000.000000000000000,0.000859904751770,0.000007510810448,Very Low,528285.000000000000000,0.020869740000000,158610.024000000004889,686895.023999999975786,36.537489917878169,Very High,39.090495888884917,Relatively High,1.000000000000000,0.031250000000000,848387000.000000000000000,8652.000000000000000,65755200000.000000000000000,6154260.503178838640451,66609741260.503181457519531,0.000018022350010,0.000000021030855,0.000227577948569,Very Low,477.810233057782398,0.000005686217475,43.215252807719992,43.767936883582259,564.793422749084243,5.312818783657026,Very Low,5.375452766088346,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010000000000000,848387000.000000000000000,8652.000000000000000,65755200000.000000000000000,6154260.503178838640451,66609741260.503181457519531,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,216.633552785806756,0.000028347283323,215.439353253431989,15.144385556847260,447.217291596086056,3.105483387419336,Very Low,4.003632268211613,Very Low,0.000000000000000,0.014890000000000,848387000.000000000000000,8652.000000000000000,65755200000.000000000000000,66603587000.000000000000000,0.000005888299321,0.000001627000000,Relatively Low,74.383837715113430,0.000209603611560,1592.987447856000244,1667.371285571113958,16.167503395672146,Relatively Low,12.661377693210518,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000030594713634,0.000002726725892,0.004246623092835,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,1.000000000000000,0.031250000000000,848387000.000000000000000,8652.000000000000000,65755200000.000000000000000,6154260.503178838640451,66609741260.503181457519531,0.000000513167921,0.000000083457607,0.000013387545452,Very Low,13.605156038998219,0.000022564850520,171.492863949434934,2.574701319132002,187.672721307565240,5.524656327568239,Very Low,5.990049631467407,Very Low,0.000000000000000,0.000171592552749,848387000.000000000000000,8652.000000000000000,65755200000.000000000000000,6154260.503178839571774,66609741260.503181457519531,0.002261783108633,0.000001508079429,0.000531741049507,Very Low,329.263353182584694,0.000002238923022,17.015814966681198,0.561531985388131,346.840700134654014,5.005651559791978,Very Low,5.623695143720878,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000773214138463,0.000000036639207,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,1.000000000000000,0.003531000000000,848386998.451669335365295,8651.999977880990627,65755199831.895530700683594,66603586830.347206115722656,0.000000007027667,0.000004010375565,Very Low,0.021052461913982,0.000122517823400,931.135457841562129,931.156510303476011,11.279730487573531,Relatively Low,10.689332886291027,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,1.000000000000000,0.000856894719228,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +13,T15009030800,Hawaii,HI,15,Maui,County,009,15009,030800,15009030800,6907,606441000.000000000000000,4986834.924185981974006,54.872261797528040,18.469689848580931,Relatively Moderate,64.906033902033300,65.950920245398777,19.842399415890760,Relatively Moderate,65.447696558929863,76.380368098159508,393228.058694302104414,270968.507411639380734,0.016077547500907,122189.361006893232116,70.190275769464648,29.976172580877293,Relatively Low,30.797745739063824,33.903133903133906,-1.199000000000000,51.801599999999993,Relatively Low,16.958320076360163,80.000000000000000,2.590080000000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012000000,13759687.487434156239033,156.714604513394903,1191030994.301801204681396,1204790681.789235353469849,0.000001497587556,0.000000000178046,Very Low,1.441846235969728,0.000000001952360,0.014837934722552,1.456684170692280,0.373647124850321,Very Low,0.347710694022805,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,546.000000000000000,30.333333332999999,0.000000000000000,0.000000000000000,0.000000162472734,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.005874570410748,606441000.000000000000000,6907.000000000000000,52493200000.000000000000000,53099641000.000000000000000,0.000859904751770,0.000007510810448,Very Low,263409.700000000011642,0.009951240000000,75629.423999999999069,339039.124000000010710,28.875212623448107,Relatively High,30.309120438340976,Relatively High,1.000000000000000,0.031250000000000,606441000.000000000000000,6907.000000000000000,52493200000.000000000000000,4986834.924185979180038,53104627834.924186706542969,0.000018022350010,0.000000021030855,0.000227577948569,Very Low,341.546623823555137,0.000004539378652,34.499277755769988,35.465426934374577,411.511328513699937,4.780673207712904,Very Low,4.745639851962976,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010000000000000,606441000.000000000000000,6907.000000000000000,52493200000.000000000000000,4986834.924185979180038,53104627834.924186706542969,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,154.853231349581506,0.000022629991437,171.987934919261960,12.271588237321810,339.112754506165629,2.831855285744738,Very Low,3.581885492789198,Very Low,0.000000000000000,0.014890000000000,606441000.000000000000000,6907.000000000000000,52493200000.000000000000000,53099641000.000000000000000,0.000005888299321,0.000001627000000,Relatively Low,53.170792253760510,0.000167329189210,1271.701837995999767,1324.872630249760959,14.974657485941615,Relatively Low,11.505634462512017,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,107.000000000000000,4.458333333000000,42656810.467178478837013,478.232107461069631,3634564016.704129219055176,1051.981938129856644,3677221879.153245449066162,0.000030594713634,0.000002726725892,0.004246623092835,Very Low,5818.450015632543000,0.005813701752849,44184.133321654735482,19.917028111539519,50022.500365398816939,16.638948036055432,Relatively Moderate,14.547152381148280,Relatively Moderate,1.000000000000000,0.031250000000000,606441000.000000000000000,6907.000000000000000,52493200000.000000000000000,4986834.924185979180038,53104627834.924186706542969,0.000000513167921,0.000000083457607,0.000013387545452,Very Low,9.725189605034167,0.000018013802882,136.904901906928728,2.086296225348610,148.716387737311550,5.112396072869298,Very Low,5.438327000831900,Very Low,0.000000000000000,0.000565500632625,606441000.000000000000000,6907.000000000000000,52493200000.000000000000000,4986834.924185981974006,53104627834.924186706542969,0.000678646596540,0.000000452498282,0.000159548566841,Very Low,232.736943091754114,0.000001767418865,13.432383373942422,0.449936260880136,246.619262726576665,4.467791823455165,Very Low,4.924488973265485,Very Low,4.000000000000000,0.018268176000000,67033876.957722678780556,771.707387895543093,5864976148.006127357482910,5932010024.963850021362305,0.000773214138463,0.000000036639207,Very Low,946.867721006007287,0.000000516528055,3.925613219758332,950.793334225765534,10.518354047691867,Relatively Low,8.618662213767806,Relatively Low,1.000000000000000,0.003531000000000,606440788.368271589279175,6906.998087158415728,52493185462.403961181640625,53099626250.772232055664062,0.000000007027667,0.000004010375565,Very Low,0.015048641272802,0.000097807486596,743.336898132099236,743.351946773372106,10.463797409549393,Relatively Low,9.728746183608697,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +14,T15003010201,Hawaii,HI,15,Honolulu,County,003,15003,010201,15003010201,5882,557874000.000000000000000,2011289.800396435894072,25.581685309376020,17.510252469943495,Relatively Low,60.435254815161052,60.122699386503065,18.081349645536225,Relatively Low,56.903449318797342,68.404907975460134,297546.242293499992229,249181.359155649202876,0.006330753794232,48113.728836165260873,251.154301685528281,30.946860057889435,Relatively Low,40.598582879654202,41.595441595441599,-0.592000000000000,51.402797999999997,Relatively Low,13.649379573655743,60.000000000000000,2.570139900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012000000,135837044.057199954986572,1432.211383115990429,10884806511.681526184082031,11020643555.738727569580078,0.000071622495647,0.000000006547759,Very Low,680.747142857324661,0.000000656172414,4.986910349845517,685.734053207169950,2.906643374857732,Very Low,2.814135328174288,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000408980651,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.002941040034594,557874000.000000000000000,5882.000000000000000,44703200000.000000000000000,45261074000.000000000000000,0.016750762052542,0.000139798843457,Very Low,171686.600000000005821,0.005732640000000,43568.063999999998487,215254.663999999989755,24.817580647886889,Relatively High,27.102191497079989,Relatively Moderate,1.000000000000000,0.031250000000000,557874000.000000000000000,5882.000000000000000,44703200000.000000000000000,2011289.800396435661241,45263085289.800399780273438,0.000018022350010,0.000000021006339,0.000227577948569,Very Low,314.193765294467198,0.000003861227743,29.345330843617496,14.303912711018056,357.843008849103001,4.563092838431125,Very Low,4.712613778171075,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.014492753623188,557874000.000000000000000,5882.000000000000000,44703200000.000000000000000,2011289.800396435661241,45263085289.800399780273438,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,206.451835167631231,0.000027929995327,212.267964487843557,7.173008453467344,425.892808108941892,3.055318221213482,Very Low,4.020628224999238,Very Low,0.000000000000000,0.014890000000000,557874000.000000000000000,5882.000000000000000,44703200000.000000000000000,45261074000.000000000000000,0.000005888299321,0.000000264000000,Very Low,48.912594230558931,0.000023121906720,175.726491071999988,224.639085302558954,8.288207757349362,Very Low,6.625385129299690,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.000000000000000,6.375000000000000,136393741.722625792026520,1377.312539135798033,10467575297.432064056396484,63035.328503560354875,10604032074.483196258544922,0.000067892077568,0.000000058503599,0.000567088799505,Very Low,59032.847392002819106,0.000513683093850,3903.991513262195440,227.884758392852405,63164.723663657867291,17.984385377360034,Relatively Moderate,16.358540291610495,Relatively Moderate,1.000000000000000,0.031250000000000,557874000.000000000000000,5882.000000000000000,44703200000.000000000000000,2011289.800396435661241,45263085289.800399780273438,0.000000227257356,0.000000116345733,0.000021953615106,Very Low,3.961905321154106,0.000021385800047,162.532080357674914,1.379846316997610,167.873831995826720,5.323115439228718,Very Low,5.891196852770360,Very Low,0.000000000000000,0.000614370190389,557874000.000000000000000,5882.000000000000000,44703200000.000000000000000,2011289.800396435894072,45263085289.800399780273438,0.001420889225294,0.000000947400219,0.000334048443905,Very Low,486.997215047228622,0.000003423644291,26.019696614055263,0.412775811192882,513.429687472476871,5.704850346782265,Very Low,6.542238871507891,Very Low,6.000000000000000,0.027402265000000,391320912.794682145118713,4049.333383286292701,30774933712.975826263427734,31166254625.770507812500000,0.001559313957881,0.000000036516950,Very Low,16720.647305728016363,0.000004051953839,30.794849178031537,16751.442154906042560,27.369685662826306,Relatively High,23.332362204400532,Relatively High,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.047775264838299,0.000109593070989,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +15,T15007040604,Hawaii,HI,15,Kauai,County,007,15007,040604,15007040604,3139,376167000.000000000000000,807532.162349350284785,8.388025023188000,14.276584117139926,Relatively Low,42.871087037215247,30.674846625766872,13.883097021640186,Relatively Low,32.611116457471233,22.085889570552148,134685.552755396231078,77709.944739001162816,0.007486408241714,56896.702637024398427,78.905379370652483,33.569475317032605,Relatively Moderate,69.210461521626129,67.806267806267812,1.048000000000000,52.509198000000005,Relatively Low,23.512567610563156,100.000000000000000,2.625459900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012000000,21860058.464093837887049,182.415585414963459,1386358449.153722286224365,1408218507.617816209793091,0.000000908260338,0.000000000031709,Very Low,1.389248140708835,0.000000000404728,0.003075935199667,1.392324075908502,0.368061130286438,Very Low,0.378401213406483,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,119.000000000000000,6.611111111000000,0.000000000000000,0.000000000000000,0.003058960415350,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.000492721332604,376167000.000000000000000,3139.000000000000000,23856400000.000000000000000,24232567000.000000000000000,0.016750762052542,0.000139798843457,Very Low,19693.200000000000728,0.000215040000000,1634.304000000000087,21327.504000000000815,11.483878679902666,Relatively Low,13.317199329591944,Relatively Low,0.000000000000000,0.000000000000000,376167000.000000000000000,3139.000000000000000,23856400000.000000000000000,807532.162349350284785,24233374532.162349700927734,0.000018022350010,0.000000076028889,0.000227577948569,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,2.000000000000000,0.028985507246363,376166995.487920522689819,3138.999987552206221,23856399905.396766662597656,807532.162349350284785,24233374433.047039031982422,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,278.415436274033141,0.000029810355316,226.558700402940786,5.759920848630479,510.734057525604328,3.246045634124850,Very Low,4.535983067842174,Very Low,0.000000000000000,0.014890000000000,376167000.000000000000000,3139.000000000000000,23856400000.000000000000000,24232567000.000000000000000,0.000005888299321,0.000002894427808,Relatively Low,32.981110132264028,0.000135284716357,1028.163844314580729,1061.144954446844622,13.906689537772593,Relatively Low,11.804663066213807,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.000000000000000,5.916666666000000,51663594.443583577871323,101.802360936488952,773697943.117316007614136,2833.212453741434729,825364370.773353338241577,0.000180437019067,0.000011483083913,0.004246623092835,Very Low,55155.314433142390044,0.006916613230568,52566.260552313702647,71.186880470358304,107792.761865926426253,21.491526645558039,Relatively Moderate,20.758480054251422,Relatively High,1.000000000000000,0.031249999999985,376167000.000000000000000,3139.000000000000000,23856400000.000000000000000,807532.162349350284785,24233374532.162349700927734,0.000003238688884,0.000001829685538,0.000072723262261,Very Low,38.071496291084195,0.000179480715733,1364.053439573624473,1.835199163322497,1403.960135028031345,10.804959465847086,Very Low,12.698140526484391,Relatively Low,0.000000000000000,0.000149932577994,376167000.000000000000000,3139.000000000000000,23856400000.000000000000000,807532.162349350284785,24233374532.162349700927734,0.004334467829541,0.000002890074537,0.001019025415804,Very Low,244.462633518780137,0.000001360179947,10.337367598126860,0.123378888341211,254.923380005248163,4.517385498010300,Very Low,5.500963862339884,Very Low,4.000000000000000,0.018268176000000,79552220.598583281040192,124.627028090670436,947165413.489095330238342,1026717634.087678551673889,0.001559313957881,0.000003873415999,Relatively Low,2266.110381501894608,0.000008818639064,67.021656886222388,2333.132038388117508,14.187270462630174,Relatively Moderate,12.843017811518434,Relatively Moderate,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000541106984497,0.000003737122925,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +16,T15009030303,Hawaii,HI,15,Maui,County,009,15009,030303,15009030303,3567,1129413000.000000000000000,197696.763971014268463,19.736901804923999,25.649364507897868,Relatively High,88.693823121021737,86.809815950920239,26.450593164827492,Relatively Moderate,88.131538789370211,88.957055214723923,931468.524062270647846,861544.709048519725911,0.009200239708558,69921.821785040840041,1.993228710100693,31.228311451553576,Relatively Low,43.644844472409929,45.014245014245013,-0.416000000000000,51.801599999999993,Relatively Low,16.958320076360163,80.000000000000000,2.590080000000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012000000,100790585.953761577606201,318.324669626671152,2419267489.162700653076172,2520058075.116462230682373,0.000018030325140,0.000000000188741,Very Low,127.157412992743502,0.000000004203917,0.031949771746099,127.189362764489587,1.657639581212685,Very Low,1.607010938883971,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,1239.000000000000000,68.833333332999999,0.000000000000000,0.000000000000000,0.000000162472734,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.006923474030327,1129413000.000000000000000,3567.000000000000000,27109200000.000000000000000,28238613000.000000000000000,0.000859904751770,0.000007510810448,Very Low,848650.000000000000000,0.008836520000000,67157.552000000010594,915807.552000000025146,40.213943055170432,Very High,43.974116521551572,Very High,1.000000000000000,0.031250000000000,1129413000.000000000000000,3567.000000000000000,27109200000.000000000000000,197696.763971014297567,28238810696.763969421386719,0.000018022350010,0.000000021030855,0.000227577948569,Very Low,636.083637241599604,0.000002344283141,17.816551868369995,1.405981999478517,655.306171109448201,5.582686132124484,Very Low,5.773261803666664,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010000000000000,1129413000.000000000000000,3567.000000000000000,27109200000.000000000000000,197696.763971014297567,28238810696.763969421386719,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,288.392856977389386,0.000011686865420,88.820177190821980,0.486491596410583,377.699525764622024,2.935430672039956,Very Low,3.867985090204403,Very Low,0.000000000000000,0.014890000000000,1129413000.000000000000000,3567.000000000000000,27109200000.000000000000000,28238613000.000000000000000,0.000005888299321,0.000001627000000,Relatively Low,99.023291617315465,0.000086414249010,656.748292476000302,755.771584093315710,12.419259673847161,Relatively Low,9.940808420039733,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,107.000000000000000,4.458333333000000,45816805.858206748962402,16.646975739437597,126517015.619725733995438,0.000000000000000,172333821.477932482957840,0.000030594713634,0.000002726725892,0.004246623092835,Very Low,6249.477910849279397,0.000202371506484,1538.023449279884517,0.000000000000000,7787.501360129163913,8.950970213544879,Relatively Low,8.152570371059754,Relatively Low,1.000000000000000,0.031250000000000,1129413000.000000000000000,3567.000000000000000,27109200000.000000000000000,197696.763971014297567,28238810696.763969421386719,0.000000513167921,0.000000083457607,0.000013387545452,Very Low,18.111828796849903,0.000009302915141,70.702155074853735,0.082708575420448,88.896692447124110,4.306588907200748,Very Low,4.772506891707961,Very Low,0.000000000000000,0.000238080244498,1129413000.000000000000000,3567.000000000000000,27109200000.000000000000000,197696.763971014268463,28238810696.763969421386719,0.001630879098872,0.000001087414267,0.000383416677020,Very Low,438.528586488832275,0.000000923467245,7.018351062111837,0.018046538791145,445.564984089735276,5.441529004493154,Very Low,6.248505297686119,Very Low,4.000000000000000,0.018268176000000,356660523.696612358093262,240.881372015570832,1830698427.318338394165039,2187358951.014950752258301,0.000773214138463,0.000000036639207,Relatively Low,5037.905497520448989,0.000000161229487,1.225344104786315,5039.130841625235007,18.338801679467387,Relatively Moderate,15.654361209644687,Relatively Moderate,1.000000000000000,0.003531000000000,1129412989.073408603668213,3566.999976751660597,27109199823.312622070312500,28238612812.386028289794922,0.000000007027667,0.000004010375565,Very Low,0.028026035265766,0.000050510988712,383.883514212277191,383.911540247543030,8.395274173999113,Very Low,8.131576573938732,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +17,T15009030403,Hawaii,HI,15,Maui,County,009,15009,030403,15009030403,3269,383672000.000000000000000,401871.648440142569598,7.324531388613998,17.010215183184116,Relatively Low,57.902913155253714,53.987730061349694,18.443733489030539,Relatively Low,58.678288126039682,69.631901840490798,315797.327941907220520,249358.126781743281754,0.008741446978675,66434.997037930472288,4.204122233452782,29.701117809796429,Relatively Low,28.279484584028669,31.623931623931622,-1.371000000000000,51.801599999999993,Relatively Low,16.958320076360163,80.000000000000000,2.590080000000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000047845109139,0.000000004844912,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,42.000000000000000,2.333333333000000,401871.648440142569598,401871.648440142569598,0.000000162472734,Very Low,0.152350766096705,0.152350766096705,0.145104758267072,Very Low,0.134040364048966,Very Low,,0.006446574104869,383672000.000000000000000,3269.000000000000000,24844400000.000000000000000,25228072000.000000000000000,0.000859904751770,0.000007510810448,Very Low,248855.299999999988358,0.008593730000000,65312.347999999998137,314167.647999999986496,28.151123929401376,Relatively High,29.277938571648171,Relatively High,1.000000000000000,0.031250000000000,383672000.000000000000000,3269.000000000000000,24844400000.000000000000000,401871.648440142686013,25228473871.648441314697266,0.000018022350010,0.000000021030855,0.000227577948569,Very Low,216.083471031198599,0.000002148433302,16.328093091590002,2.858035166880331,235.269599289668804,3.967805698211730,Very Low,3.902588221774058,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010000000000000,383672000.000000000000000,3269.000000000000000,24844400000.000000000000000,401871.648440142686013,25228473871.648441314697266,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,97.969710125728113,0.000010710502679,81.399820363554014,0.988924532070045,180.358455021352142,2.294396739278623,Very Low,2.875449684869956,Very Low,0.000000000000000,0.014890000000000,383672000.000000000000000,3269.000000000000000,24844400000.000000000000000,25228072000.000000000000000,0.000005888299321,0.000001627000000,Relatively Low,33.639124342821148,0.000079194892070,601.881179731999850,635.520304074821411,11.722187530368410,Very Low,8.923987504823964,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000030594713634,0.000002726725892,0.004246623092835,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,1.000000000000000,0.031250000000000,383672000.000000000000000,3269.000000000000000,24844400000.000000000000000,401871.648440142686013,25228473871.648441314697266,0.000000513167921,0.000000083457607,0.000013387545452,Very Low,6.152755084406675,0.000008525716175,64.795442932351250,0.168127342485104,71.116325359243035,3.997863722110094,Very Low,4.213717589107983,Very Low,0.000000000000000,0.000070524689852,383672000.000000000000000,3269.000000000000000,24844400000.000000000000000,401871.648440142569598,25228473871.648441314697266,0.005505590955773,0.000003670939285,0.001294354309130,Very Low,148.972200457532551,0.000000846317472,6.432012790031844,0.036684425920597,155.440897673484955,3.830649025018514,Very Low,4.183357534623078,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000773214138463,0.000000036639207,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,1.000000000000000,0.003531000000000,383671965.493172764778137,3268.999823380632733,24844398657.692810058593750,25228070623.185981750488281,0.000000007027667,0.000004010375565,Very Low,0.009520701585183,0.000046291116976,351.812489020949442,351.822009722534744,8.154528031557467,Very Low,7.512128260754635,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +18,T15009030404,Hawaii,HI,15,Maui,County,009,15009,030404,15009030404,5609,567723000.000000000000000,5651711.187266577035189,10.523586073347996,21.762677306505932,Relatively Moderate,78.154772542927446,80.981595092024534,21.798489760226435,Relatively Moderate,74.100551286105116,82.515337423312886,521364.137552739528473,400193.173248848295771,0.015935768684185,121111.841999806085369,59.122304085149210,32.151024259191146,Relatively Moderate,54.100894591415205,58.119658119658126,0.161000000000000,51.801599999999993,Relatively Low,16.958320076360163,80.000000000000000,2.590080000000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000047845109139,0.000000004844912,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,42.000000000000000,2.333333333000000,5651711.187266577035189,5651711.187266577035189,0.000000162472734,Very Low,2.142580927217686,2.142580927217686,0.350250839387054,Very Low,0.350231454804104,Very Low,,0.006220697006411,567723000.000000000000000,5609.000000000000000,42628400000.000000000000000,43196123000.000000000000000,0.000859904751770,0.000007510810448,Very Low,399450.100000000034925,0.015682320000000,119185.631999999997788,518635.731999999959953,33.270760649266144,Relatively High,37.456699365864118,Relatively High,1.000000000000000,0.031250000000139,567723000.000000000000000,5609.000000000000000,42628400000.000000000000000,5651711.187266580760479,43201774711.187263488769531,0.000018022350010,0.000000021030855,0.000227577948569,Very Low,319.740706712331871,0.000003686314588,28.015990869287140,40.193901184611775,387.950598766230826,4.687636580708609,Very Low,4.990893310208310,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010000000000000,567723000.000000000000000,5609.000000000000000,42628400000.000000000000000,5651711.187266580760479,43201774711.187263488769531,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,144.966684411968373,0.000018377243661,139.667051825994008,13.907713726401685,298.541449964364233,2.714091972815771,Very Low,3.682000432083940,Very Low,0.000000000000000,0.014890000000000,567723000.000000000000000,5609.000000000000000,42628400000.000000000000000,43196123000.000000000000000,0.000005888299321,0.000001627000000,Relatively Low,49.776122806145494,0.000135883802270,1032.716897252000308,1082.493020058145703,13.999329095880496,Relatively Low,11.536645037984915,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000030594713634,0.000002726725892,0.004246623092835,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,1.000000000000000,0.031250000000139,567723000.000000000000000,5609.000000000000000,42628400000.000000000000000,5651711.187266580760479,43201774711.187263488769531,0.000000513167921,0.000000083457607,0.000013387545452,Very Low,9.104288493366727,0.000014628553695,111.177008079355431,2.364454387611320,122.645750960333444,4.794268860973706,Very Low,5.469930940664453,Very Low,0.000000000000000,0.000101466745769,567723000.000000000000000,5609.000000000000000,42628400000.000000000000000,5651711.187266577035189,43201774711.187263488769531,0.003809935566898,0.000002540334408,0.000895708845451,Very Low,219.471358555494049,0.000001445772843,10.987873603116396,0.513653859306740,230.972886017917176,4.371236099441754,Very Low,5.167665410173847,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000773214138463,0.000000036639207,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,1.000000000000000,0.003531000000000,567722906.214586973190308,5608.999232331282656,42628394165.717750549316406,43196117071.932334899902344,0.000000007027667,0.000004010375565,Very Low,0.014087868959084,0.000079426997128,603.645178176351351,603.659266045310460,9.762366741728526,Very Low,9.735119834569744,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +19,T15001021601,Hawaii,HI,15,Hawaii,County,001,15001,021601,15001021601,7822,1094086000.000000000000000,566994.607925739837810,6.817080618830000,49.795160635453065,Very High,99.744291233038666,99.693251533742327,46.288812203958457,Very High,99.573818721731129,99.693251533742327,4992177.825617760419846,3805158.570710011292249,0.156179283243693,1186962.552652070764452,56.702255678441652,33.956470983320806,Relatively Moderate,72.813448964517278,70.370370370370367,1.290000000000000,50.775198000000003,Relatively Low,9.385937002863507,40.000000000000000,2.538759900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012000000,62060272.640258267521858,443.690397822566240,3372047023.451503276824951,3434107296.091761589050293,0.000013043578813,0.000000000133527,Very Low,56.640698572559614,0.000000004145412,0.031505131023758,56.672203703583364,1.266086014029566,Very Low,1.361625045203395,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,98.000000000000000,5.444444444000000,0.000000000000000,0.000000000000000,0.000000054093342,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.009998987381960,1094086000.000000000000000,7822.000000000000000,59447200000.000000000000000,60541286000.000000000000000,0.000850584189555,0.000011691657432,Very Low,3343740.699999999720603,0.137927840000000,1048251.583999999915250,4391992.283999999985099,67.815521828370294,Very High,82.265012341853520,Very High,1.000000000000000,0.031250000000000,1094086000.000000000000000,7822.000000000000000,59447200000.000000000000000,566994.607925739837810,60541852994.607925415039062,0.000018022350010,0.000000076028889,0.000227577948569,Very Low,616.187526029107858,0.000018584311433,141.240766888662478,4.032358428799826,761.460651346570216,5.869182507673690,Very Low,6.733195894118129,Relatively Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.014492753623188,1094086000.000000000000000,7822.000000000000000,59447200000.000000000000000,566994.607925739837810,60541852994.607925415039062,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,404.887237138158412,0.000037141860498,282.278139786452243,2.022113926556032,689.187490851166558,3.587033863748608,Very Low,5.243412622945162,Very Low,0.000000000000000,0.014890000000000,1094086000.000000000000000,7822.000000000000000,59447200000.000000000000000,60541286000.000000000000000,0.000005888299321,0.000001361000000,Very Low,95.925934120133363,0.000158515098380,1204.714747687999989,1300.640681808132740,14.882799560115215,Relatively Low,13.215275583654096,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.000000000000000,5.916666666000000,120948558.082032889127731,753.222672827741576,5724492313.490836143493652,19158.557527774140908,5845460030.130396842956543,0.000624504383719,0.000003832719626,0.000349248462208,Very Low,446903.019582604581956,0.017080773644922,129813.879701406389358,39.588989127472104,576756.488273138529621,37.589645473929465,Very High,37.980289347219468,Very High,1.000000000000000,0.031250000000000,1094086000.000000000000000,7822.000000000000000,59447200000.000000000000000,566994.607925739837810,60541852994.607925415039062,0.000008360074880,0.000000310246591,0.000621258458489,Very Low,285.832527671497019,0.000075835901161,576.352848822792453,11.007818627854686,873.193195122144402,9.223059224457668,Very Low,11.338451304073121,Very Low,0.000000000000000,0.000079975858026,1094086000.000000000000000,7822.000000000000000,59447200000.000000000000000,566994.607925739837810,60541852994.607925415039062,0.004781619375317,0.000003188219857,0.001124149921921,Very Low,418.393926461634010,0.000001994458399,15.157883831136921,0.050975567759004,433.602785860529991,5.392389883240562,Very Low,6.869213138625659,Very Low,19.000000000000000,0.086773839000000,218840398.918623805046082,746.618226785494244,5674298523.569756507873535,5893138922.488380432128906,0.000665459771009,0.000003873415999,Very Low,12636.829203189498003,0.000250946730403,1907.195151059104091,14544.024354248604141,26.110424945578931,Relatively High,24.725434465837747,Relatively High,3.000000000000000,0.020038600000000,1094085980.373759269714355,7821.999850483491173,59447198863.674537658691406,60541284844.048301696777344,0.000000007027667,0.000004004334439,Very Low,0.154074224860778,0.000627647093086,4770.117907456979083,4770.271981681838952,19.444892301813269,Relatively Low,20.893490944178374,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +20,T15001021013,Hawaii,HI,15,Hawaii,County,001,15001,021013,15001021013,4970,472410000.000000000000000,49059676.890542656183243,51.084327431210006,34.270400812704395,Relatively High,97.661502082789156,91.717791411042953,31.787029079075452,Relatively High,95.145657762685758,92.331288343558285,1616634.171547454316169,1092599.932631040224805,0.068763932903456,522605.890066262625623,1428.348850151450051,34.031631298674299,Relatively Moderate,73.474133450058815,71.225071225071218,1.337000000000000,50.775198000000003,Relatively Low,9.385937002863507,40.000000000000000,2.538759900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.067971012000000,11575814.750016396865249,121.783618694738678,925555502.080013990402222,937131316.830030441284180,0.000003756403659,0.000000000286794,Very Low,2.955612938123793,0.000000002374007,0.018042451915600,2.973655390039393,0.473990958044392,Very Low,0.510886698489486,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000054093342,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.009999643903498,472410000.000000000000000,4970.000000000000000,37772000000.000000000000000,38244410000.000000000000000,0.000850584189555,0.000011691657432,Very Low,1091887.099999999860302,0.068169680000000,518089.567999999970198,1609976.667999999830499,48.534263744148582,Very High,59.005802841803508,Very High,1.000000000000000,0.031249999999836,472410000.000000000000000,4970.000000000000000,37772000000.000000000000000,49059676.890542671084404,38293469676.890541076660156,0.000018022350010,0.000000076028889,0.000227577948569,Very Low,266.060574005304659,0.000011808236745,89.742599263046046,348.903144506402612,704.706317774752733,5.719584942945542,Very Low,6.576099387922805,Relatively Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.013092627163605,472410000.000000000000000,4970.000000000000000,37772000000.000000000000000,49059676.890542671084404,38293469676.890541076660156,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,143.453420138966010,0.000019750964214,150.107328026525067,123.732750053889760,417.293498219381149,3.034614677278374,Very Low,4.445722300565308,Very Low,0.000000000000000,0.014890000000000,472410000.000000000000000,4970.000000000000000,37772000000.000000000000000,38244410000.000000000000000,0.000005888299321,0.000001361000000,Very Low,41.419386170458473,0.000100718491300,765.460533879999844,806.879920050458281,12.693123065092941,Relatively Low,11.295885999961335,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.000000000000000,5.916666666000000,607.484916069487099,0.000000000000000,0.000000000000000,0.000000000000000,607.484916069487099,0.000624504383719,0.000003832719626,0.000349248462208,Very Low,2.244647209090364,0.000000000000000,0.000000000000000,0.000000000000000,2.244647209090364,0.591271252652279,Very Low,0.598738275757728,Very Low,1.000000000000000,0.031249999999836,472410000.000000000000000,4970.000000000000000,37772000000.000000000000000,49059676.890542671084404,38293469676.890541076660156,0.000008360074880,0.000000310246591,0.000621258458489,Very Low,123.418217943725708,0.000048185173711,366.207320205160158,952.460601216388795,1442.086139365273993,10.901893892885045,Relatively Low,13.432007056015133,Relatively Low,0.000000000000000,0.000376320030848,472410000.000000000000000,4970.000000000000000,37772000000.000000000000000,49059676.890542656183243,38293469676.890541076660156,0.000749318765058,0.000000499620061,0.000176163463696,Very Low,133.211901189684085,0.000000934444673,7.101779518215430,3.252354374768744,143.566035082668265,3.730506772668472,Very Low,4.762465682902055,Very Low,0.000000000000000,0.000000000000000,6173149.858796487562358,49.000000000000000,372400000.000000000000000,378573149.858796477317810,0.000665459771009,0.000003873415999,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,4.000000000000000,0.020744800000000,472409670.706627428531647,4969.996472782689125,37771973193.148437500000000,38244382863.855064392089844,0.000000007027667,0.000004004334439,Very Low,0.068871444819250,0.000412853218805,3137.684462917793098,3137.753334362612350,16.910797725246908,Relatively Low,18.210831696647414,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +21,T15001021702,Hawaii,HI,15,Hawaii,County,001,15001,021702,15001021702,9540,1290871000.000000000000000,1847307.132536591961980,202.205367222624034,41.651407978507898,Very High,99.290614388429859,97.546012269938657,43.001749136300390,Very High,99.309861284867821,99.386503067484668,4002398.255892563611269,3010194.054478894919157,0.130395853203402,991008.484345855307765,1195.717067813358881,30.574256792413607,Relatively Low,36.705605559051243,37.891737891737890,-0.825000000000000,50.775198000000003,Relatively Low,9.385937002863507,40.000000000000000,2.538759900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.002000000000000,2781293.465237529948354,20.554756949661144,156216152.817424714565277,158997446.282662242650986,0.000148500365021,0.000000013160033,Very Low,0.826046189634330,0.000000000541003,0.004111619398657,0.830157809032987,0.309784770712803,Very Low,0.299976852206714,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,1904.000000000000000,105.777777776999997,0.000000000000000,0.000000000000000,0.000000054093342,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.009972783914808,1290871000.000000000000000,9540.000000000000000,72504000000.000000000000000,73794871000.000000000000000,0.000850584189555,0.000011691657432,Very Low,2069190.099999999860302,0.092955060000000,706458.456000000122003,2775648.555999999865890,58.196483564790704,Very High,63.564723662426594,Very High,1.000000000000000,0.031250000000000,1290871000.000000000000000,9540.000000000000000,72504000000.000000000000000,1847307.132536591729149,73796718307.132537841796875,0.000018022350010,0.000000076028889,0.000227577948569,Very Low,727.016530616542013,0.000022666112384,172.262454119709304,13.137698987503549,912.416683723755568,6.233895700368057,Very Low,6.439268396410489,Relatively Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010000000000000,1290871000.000000000000000,9540.000000000000000,72504000000.000000000000000,1847307.132536591729149,73796718307.132537841796875,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,329.620763776634135,0.000031256713234,237.551020577639974,4.545847781808646,571.717632136082784,3.370416276455876,Very Low,4.436040087901083,Very Low,0.000000000000000,0.014890000000000,1290871000.000000000000000,9540.000000000000000,72504000000.000000000000000,73794871000.000000000000000,0.000005888299321,0.000001361000000,Very Low,113.179408660371095,0.000193330866600,1469.314586159999863,1582.493994820370744,15.888377321814918,Relatively Low,12.702947304830820,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.000000000000000,5.916666666000000,254174294.531650096178055,1597.599151102900123,12141753548.382040023803711,552684.379853282705881,12396480527.293544769287109,0.000624504383719,0.000003832719626,0.000349248462208,Very Low,939170.020112434169278,0.036228635249206,275337.627893962955568,1142.059670892004533,1215649.707677289145067,48.195543637583974,Very High,43.846030629831404,Very High,1.000000000000000,0.031250000000000,1290871000.000000000000000,9540.000000000000000,72504000000.000000000000000,1847307.132536591729149,73796718307.132537841796875,0.000008360074880,0.000000310246591,0.000621258458489,Very Low,337.243069401687762,0.000092492265032,702.941214241379157,35.864224422339490,1076.048508065407532,9.888160334084784,Very Low,10.945298289041633,Very Low,0.000000000000000,0.001265947705002,1290871000.000000000000000,9540.000000000000000,72504000000.000000000000000,1847307.132536591961980,73796718307.132537841796875,0.000199392304259,0.000000132947952,0.000046876764056,Very Low,325.841954682929781,0.000001605631177,12.202796947931029,0.109625729702567,338.154377360563387,4.963510388477673,Very Low,5.692955296280674,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000665459771009,0.000003873415999,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,5.000000000000000,0.020903627515141,1283193020.034588336944580,9471.834532150682207,71985942444.345184326171875,73269135464.379776000976562,0.000000007027667,0.000004004334439,Very Low,0.206593133586586,0.000870805824767,6618.124268226036293,6618.330861359621849,21.687391517623741,Relatively Low,20.981964459133806,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +22,T15001021704,Hawaii,HI,15,Hawaii,County,001,15001,021704,15001021704,8087,1437523000.000000000000000,0.000000000000000,141.292128436466015,37.493468265091451,Very High,98.627971239637617,95.092024539877301,40.547807010028819,Very High,99.006035276811616,97.239263803680984,3355552.585600754711777,2636098.929659261833876,0.094664954729144,719453.655941492877901,0.000000000000000,29.187788847488523,Relatively Low,23.870817716740074,28.205128205128204,-1.692000000000000,50.775198000000003,Relatively Low,9.385937002863507,40.000000000000000,2.538759900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012000000,136722744.002337306737900,769.154184487414682,5845571802.104351997375488,5982294546.106689453125000,0.000000052016049,0.000000000002106,Very Low,0.497618233792646,0.000000000113333,0.000861332612963,0.498479566405609,0.261349875756156,Very Low,0.241599073662046,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,1589.000000000000000,88.277777776999997,0.000000000000000,0.000000000000000,0.000000054093342,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.009974952089278,1437523000.000000000000000,8087.000000000000000,61461200000.000000000000000,62898723000.000000000000000,0.000850584189555,0.000011691657432,Very Low,2606385.900000000372529,0.093279580000000,708924.807999999960884,3315310.708000000100583,61.747113996945046,Very High,64.384506353740733,Very High,1.000000000000000,0.031250000000000,1437523000.000000000000000,8087.000000000000000,61461200000.000000000000000,0.000000000000000,62898723000.000000000000000,0.000018022350010,0.000000076028889,0.000227577948569,Very Low,809.610707915045850,0.000019213925666,146.025835058631316,0.000000000000000,955.636542973677365,6.330811394770336,Relatively Low,6.242832143860547,Relatively Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010000000000000,1437523000.000000000000000,8087.000000000000000,61461200000.000000000000000,0.000000000000000,62898723000.000000000000000,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,367.067994560632428,0.000026496125778,201.370555913141970,0.000000000000000,568.438550473774399,3.363960253137444,Very Low,4.226764599227884,Very Low,0.000000000000000,0.014890000000000,1437523000.000000000000000,8087.000000000000000,61461200000.000000000000000,62898723000.000000000000000,0.000005888299321,0.000001361000000,Very Low,126.037383344797831,0.000163885400230,1245.529041748000282,1371.566425092797544,15.148552507558678,Relatively Low,11.562223896254475,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.000000000000000,5.916666666000000,4275225.009284457191825,11.307541349836907,85937314.258760496973991,0.000000000000000,90212539.268044963479042,0.000624504383719,0.000003832719626,0.000349248462208,Very Low,15796.889159674219627,0.000256420260893,1948.793982788278754,0.000000000000000,17745.683142462501564,11.778816091514535,Relatively Low,10.229875007971462,Relatively Low,1.000000000000000,0.031250000000000,1437523000.000000000000000,8087.000000000000000,61461200000.000000000000000,0.000000000000000,62898723000.000000000000000,0.000008360074880,0.000000310246591,0.000621258458489,Very Low,375.556247567296964,0.000078405130745,595.878993662736548,0.000000000000000,971.435241230032943,9.556734072070981,Very Low,10.098733005282229,Very Low,0.000000000000000,0.000969187512196,1437523000.000000000000000,8087.000000000000000,61461200000.000000000000000,0.000000000000000,62898723000.000000000000000,0.000258664479923,0.000000172468607,0.031480112893677,Very Low,360.378942669498997,0.000001351777793,10.273511226126496,0.000000000000000,370.652453895625513,5.117677217038081,Very Low,5.603586278251819,Very Low,35.000000000000000,0.159846547000000,111653589.950933635234833,124.233524817253084,944174788.611123442649841,1055828378.562057137489319,0.000665459771009,0.000003873415999,Very Low,11876.753877051543896,0.000076919456782,584.587871545611733,12461.341748597154947,24.799371691025943,Relatively High,20.185955731428070,Relatively Moderate,4.000000000000000,0.022325697956849,1436641529.886304855346680,8083.200013319948994,61432320101.231613159179688,62868961631.117919921875000,0.000000007027667,0.000004004334439,Very Low,0.237728244723272,0.000762682537923,5796.387288217631067,5796.625016462353415,20.749910629305944,Relatively Low,19.164625839355438,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +23,T15001021902,Hawaii,HI,15,Hawaii,County,001,15001,021902,15001021902,3925,399581000.000000000000000,2581801.854126811493188,115.350153590198047,27.002929534016374,Relatively High,91.127180742105338,88.343558282208591,24.102836586708140,Relatively Moderate,82.226865917870740,86.503067484662580,704800.828291146201082,512501.745372880192008,0.025179431533230,191363.679652550374158,935.403265715620819,35.363727951641529,Relatively High,83.537602932727822,82.905982905982910,2.170000000000000,50.775198000000003,Relatively Low,9.385937002863507,40.000000000000000,2.538759900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.067971012000000,22856965.639919005334377,224.519159160926336,1706345609.623039960861206,1729202575.262959003448486,0.000000008763788,0.000000000000629,Very Low,0.013615517772051,0.000000000009605,0.000072994338474,0.013688512110525,0.078848225886025,Very Low,0.088312410275678,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,224.000000000000000,12.444444444000000,0.000000000000000,0.000000000000000,0.000000054093342,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.009884126994678,399581000.000000000000000,3925.000000000000000,29830000000.000000000000000,30229581000.000000000000000,0.000850584189555,0.000011691657432,Very Low,422346.000000000000000,0.019900200000000,151241.520000000018626,573587.520000000018626,34.406604574282092,Relatively High,43.467370384294121,Very High,1.000000000000000,0.031250000000023,399581000.000000000000000,3925.000000000000000,29830000000.000000000000000,2581801.854126811958849,30232162801.854125976562500,0.000018022350010,0.000000076028889,0.000227577948569,Very Low,225.043394978312620,0.000009325418355,70.873179498594510,18.361286549208387,314.277861026115488,4.369848582898662,Very Low,5.220901700794959,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010000000000000,399581000.000000000000000,3925.000000000000000,29830000000.000000000000000,2581801.854126811958849,30232162801.854125976562500,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,102.032034502774636,0.000012859811262,97.734565594049997,6.353290162170331,206.119890258994985,2.398812567703812,Very Low,3.651828437953042,Very Low,0.000000000000000,0.014890000000000,399581000.000000000000000,3925.000000000000000,29830000000.000000000000000,30229581000.000000000000000,0.000005888299321,0.000001361000000,Very Low,35.033974186359238,0.000079541263250,604.513600699999643,639.547574886359371,11.746896446604831,Very Low,10.863011113680946,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.000000000000000,5.916666666000000,24231739.687567248940468,212.453991761836903,1614650337.389960527420044,416363.703609132673591,1639298440.781136989593506,0.000624504383719,0.000003832719626,0.000349248462208,Very Low,89535.896978354678140,0.004817803120053,36615.303712401633675,860.368433863560767,127011.569124619883951,22.699615132530912,Relatively High,23.886032860926246,Relatively High,1.000000000000000,0.031250000000023,399581000.000000000000000,3925.000000000000000,29830000000.000000000000000,2581801.854126811958849,30232162801.854125976562500,0.000008360074880,0.000000310246591,0.000621258458489,Very Low,104.391471273288204,0.000038053683464,289.207994327471795,50.123945000571609,443.723410601331580,7.359963558893229,Very Low,9.423015339170528,Very Low,0.000000000000000,0.001026590350287,399581000.000000000000000,3925.000000000000000,29830000000.000000000000000,2581801.854126811493188,30232162801.854125976562500,0.000315045597394,0.000000210061603,0.000074066640591,Very Low,129.233593933563526,0.000000846415316,6.432756401973636,0.196310140109748,135.862660475646891,3.662553429082663,Very Low,4.858751456909577,Very Low,4.000000000000000,0.018268176000000,1977759.740774342790246,10.380779770952744,78893926.259240850806236,80871686.000015199184418,0.000665459771009,0.000003873415999,Very Low,24.043103470597142,0.000000734546522,5.582553565459817,29.625657036056960,3.309850713413005,Very Low,3.264178423626712,Relatively Low,4.000000000000000,0.021826863625066,398364800.991243004798889,3913.137707216954368,29739846574.848854064941406,30138211375.840099334716797,0.000000007027667,0.000004004334439,Very Low,0.057206662924189,0.000320067265404,2432.511217066818972,2432.568423729743699,15.535056959630060,Relatively Low,17.384163955328436,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +24,T15003007502,Hawaii,HI,15,Honolulu,County,003,15003,007502,15003007502,1376,196711000.000000000000000,0.000000000000000,7.761878776564003,7.997483957000240,Very Low,5.444122135305681,5.828220858895705,13.475611277334064,Relatively Low,29.957794305668212,19.938650306748464,123170.686159614255303,117626.135823795004399,0.000729546096818,5544.550335819256361,0.000000000000000,18.965985959413427,Very Low,1.225617596366919,10.541310541310542,-8.084000000000000,51.402797999999997,Relatively Low,13.649379573655743,60.000000000000000,2.570139900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000047845109139,0.000000004844912,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000408980651,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.002843733069175,196711000.000000000000000,1376.000000000000000,10457600000.000000000000000,10654311000.000000000000000,0.016750762052542,0.000139798843457,Very Low,117052.400000000008731,0.000712560000000,5415.456000000000131,122467.856000000014319,20.564395925339678,Relatively Moderate,13.763210687658534,Relatively Low,1.000000000000000,0.031250000000095,196711000.000000000000000,1376.000000000000000,10457600000.000000000000000,0.000000000000000,10654311000.000000000000000,0.000018022350010,0.000000021006339,0.000227577948569,Very Low,110.787327899919973,0.000000903272590,6.864871683240001,0.000000000000000,117.652199583159998,3.149404735646749,Very Low,1.993378885249121,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010000000000000,196711000.000000000000000,1376.000000000000000,10457600000.000000000000000,0.000000000000000,10654311000.000000000000000,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,50.229674431655418,0.000004508305808,34.263124142016004,0.000000000000000,84.492798573671436,1.781953005087576,Very Low,1.437118390534693,Very Low,0.000000000000000,0.014890000000000,196711000.000000000000000,1376.000000000000000,10457600000.000000000000000,10654311000.000000000000000,0.000005888299321,0.000000264000000,Very Low,17.246986458747809,0.000005409000960,41.108407296000003,58.355393754747809,5.288418990352609,Very Low,2.590807762006548,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.000000000000000,6.375000000000000,334545.918660251656547,0.000000000000000,0.000000000000000,0.000000000000000,334545.918660251656547,0.000067892077568,0.000000058503599,0.000567088799505,Very Low,144.795486306479887,0.000000000000000,0.000000000000000,0.000000000000000,144.795486306479887,2.371314051074559,Very Low,1.321894684209212,Very Low,1.000000000000000,0.031250000000095,196711000.000000000000000,1376.000000000000000,10457600000.000000000000000,0.000000000000000,10654311000.000000000000000,0.000000227257356,0.000000116345733,0.000021953615106,Very Low,1.397000680493347,0.000005002866519,38.021785544399997,0.000000000000000,39.418786224893346,3.284021303252227,Very Low,2.227421716897030,Very Low,0.000000000000000,0.000243916216676,196711000.000000000000000,1376.000000000000000,10457600000.000000000000000,0.000000000000000,10654311000.000000000000000,0.005195375939611,0.000003464098548,0.031480112893677,Very Low,249.279348017708742,0.000001162650941,8.836147153599541,0.000000000000000,258.115495171308282,4.536162697558988,Very Low,3.187681342478634,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.001559313957881,0.000000036516950,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.047775264838299,0.000109593070989,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +25,T15001020202,Hawaii,HI,15,Hawaii,County,001,15001,020202,15001020202,2568,183300000.000000000000000,19450471.041291993111372,244.926537688261817,26.833171153533623,Relatively High,90.805482615928184,87.730061349693258,25.422834653383401,Relatively Moderate,85.758671414234456,88.343558282208591,827053.979074396891519,517884.478689034702256,0.040605853990753,308604.490329723397736,565.010055638708309,33.316808724993201,Relatively Moderate,66.742811807512382,65.242165242165242,0.890000000000000,50.775198000000003,Relatively Low,9.385937002863507,40.000000000000000,2.538759900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.067971012000000,530773.629147840198129,7.436042987734064,56513926.706778883934021,57044700.335926726460457,0.000029162511300,0.000000001779889,Very Low,1.052102356821270,0.000000000899619,0.006837104022037,1.058939460843307,0.335967206727132,Very Low,0.354512909992586,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000054093342,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.009998634891741,183300000.000000000000000,2568.000000000000000,19516800000.000000000000000,19700100000.000000000000000,0.000850584189555,0.000011691657432,Very Low,510273.900000000023283,0.039781930000000,302342.668000000005122,812616.568000000086613,38.642968060497893,Very High,45.993597688738639,Very High,1.000000000000000,0.031249999999976,183300000.000000000000000,2568.000000000000000,19516800000.000000000000000,19450471.041291985660791,19719550471.041290283203125,0.000018022350010,0.000000076028889,0.000227577948569,Very Low,103.234273650409079,0.000006101318302,46.370019096084825,138.328071821368894,287.932364567862749,4.244162011525078,Very Low,4.777233135790124,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.008502626120633,183300000.000000000000000,2568.000000000000000,19516800000.000000000000000,19450471.041291985660791,19719550471.041290283203125,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,47.525157932426012,0.000008816106372,67.002408426324706,47.863660070851296,162.391226429601943,2.215527790065919,Very Low,3.177580833518941,Very Low,0.000000000000000,0.014890000000000,183300000.000000000000000,2568.000000000000000,19516800000.000000000000000,19700100000.000000000000000,0.000005888299321,0.000001361000000,Very Low,16.071153203880176,0.000052041264720,395.513611871999956,411.584765075880171,10.141883521858462,Very Low,8.835905380116552,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.000000000000000,5.916666666000000,1988278.739191096508875,22.855685143871348,173703207.093422234058380,0.000000000000000,175691485.832613348960876,0.000624504383719,0.000003832719626,0.000349248462208,Very Low,7346.658665527266749,0.000518296645236,3939.054503791167917,0.000000000000000,11285.713169318434666,10.129322600572834,Relatively Low,10.041793562555444,Relatively Low,1.000000000000000,0.031249999999976,183300000.000000000000000,2568.000000000000000,19516800000.000000000000000,19450471.041291985660791,19719550471.041290283203125,0.000008360074880,0.000000310246591,0.000621258458489,Very Low,47.887553923695528,0.000024897288952,189.219396033604056,377.617801749755017,614.724751707054224,8.204745542409981,Very Low,9.896570100096307,Very Low,0.000000000000000,0.001597771650758,183300000.000000000000000,2568.000000000000000,19516800000.000000000000000,19450471.041291993111372,19719550471.041290283203125,0.000164314562697,0.000000109559317,0.000038630051522,Very Low,48.123059610301453,0.000000449530378,3.416430874211053,1.200521996733102,52.740012481245607,2.671759363082812,Very Low,3.338962605084141,Very Low,3.000000000000000,0.013701132000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000665459771009,0.000003873415999,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,4.000000000000000,0.020744800000000,183299817.814713209867477,2567.993313450894675,19516749182.226799011230469,19700049000.041511535644531,0.000000007027667,0.000004004334439,Very Low,0.026722829930898,0.000213320937174,1621.239122526026222,1621.265845355957254,13.569876844069753,Relatively Low,14.306131742943968,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +26,T15001020300,Hawaii,HI,15,Hawaii,County,001,15001,020300,15001020300,3934,677850000.000000000000000,103350.899803427979350,1.270969791396000,40.545808339825967,Very High,99.151761778413231,96.932515337423311,36.026444452592756,Relatively High,97.954329864309372,94.785276073619627,2353564.714997117873281,2038255.831685860641301,0.041487349961224,315303.859705303853843,5.023605953420072,35.525242671869250,Relatively High,84.648318879435337,84.045584045584036,2.271000000000000,50.775198000000003,Relatively Low,9.385937002863507,40.000000000000000,2.538759900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.067971012000000,38504874.710603445768356,223.468580233848115,1698361209.777245759963989,1736866084.487849235534668,0.000016144288765,0.000000000988215,Very Low,42.253079580446602,0.000000015010386,0.114078934309096,42.367158514755694,1.149078301314894,Very Low,1.292880686874242,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000054093342,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.009996566716529,677850000.000000000000000,3934.000000000000000,29898400000.000000000000000,30576250000.000000000000000,0.000850584189555,0.000011691657432,Very Low,1823510.699999999953434,0.037259900000000,283175.239999999990687,2106685.939999999944121,53.085410989380151,Very High,67.371427245697618,Very High,1.000000000000000,0.031250000000000,677850000.000000000000000,3934.000000000000000,29898400000.000000000000000,103350.899803427979350,30576353350.899803161621094,0.000018022350010,0.000000076028889,0.000227577948569,Very Low,381.764061069084846,0.000009346801480,71.035691247762529,0.735012055001732,453.534764371849064,4.938161849387379,Very Low,5.926843502352824,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010000000000000,677850000.000000000000000,3934.000000000000000,29898400000.000000000000000,103350.899803427979350,30576353350.899803161621094,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,173.087345463637604,0.000012889298728,97.958670330443994,0.254325580378299,271.300341374459833,2.628894319872880,Very Low,4.020371550967551,Very Low,0.000000000000000,0.014890000000000,677850000.000000000000000,3934.000000000000000,29898400000.000000000000000,30576250000.000000000000000,0.000005888299321,0.000001361000000,Very Low,59.431703214676361,0.000079723650860,605.899746535999952,665.331449750676143,11.902683138286726,Very Low,11.057347750832845,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.000000000000000,5.916666666000000,57842789.446560330688953,165.799881743164974,1260079101.248053789138794,978.138781159684186,1317922868.833395481109619,0.000624504383719,0.000003832719626,0.000349248462208,Very Low,213728.197133329056669,0.003759831391928,28574.718578654450539,2.021213001884516,242304.936924985348014,28.153009122064208,Relatively High,29.759755918983775,Relatively High,1.000000000000000,0.031250000000000,677850000.000000000000000,3934.000000000000000,29898400000.000000000000000,103350.899803427979350,30576353350.899803161621094,0.000008360074880,0.000000310246591,0.000621258458489,Very Low,177.089898675354902,0.000038140940318,289.871146416372540,2.006488146728055,468.967533238455360,7.496970622397863,Very Low,9.642264828804839,Very Low,0.000000000000000,0.000009783738794,677850000.000000000000000,3934.000000000000000,29898400000.000000000000000,103350.899803427979350,30576353350.899803161621094,0.027625482838341,0.000018419724789,0.006494700213081,Very Low,183.209642442903458,0.000000708960995,5.388103559906241,0.006567169427470,188.604313172237170,4.085712507258059,Very Low,5.444964671880385,Very Low,0.000000000000000,0.000000000000000,199213148.093235433101654,676.784290460358761,5143560607.498726844787598,5342773755.591962814331055,0.000665459771009,0.000003873415999,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,4.000000000000000,0.020744800000000,677850000.000000000000000,3934.000000000000000,29898400000.000000000000000,30576250000.000000000000000,0.000000007027667,0.000004004334439,Very Low,0.098822085502395,0.000326793906530,2483.633689624615272,2483.732511710118160,15.643218171846549,Relatively Low,17.585149872032776,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +27,T15003009507,Hawaii,HI,15,Honolulu,County,003,15003,009507,15003009507,2560,291260000.000000000000000,0.000000000000000,0.677758431474000,10.374521789999184,Very Low,17.949105706704792,10.429447852760736,13.753487204176635,Relatively Low,31.764253014201461,21.472392638036812,130948.467437191415229,125905.400600613967981,0.000663561425865,5043.066836577452705,0.000000000000000,24.105672205075717,Very Low,3.442945859436982,12.820512820512819,-4.870000000000000,51.402797999999997,Relatively Low,13.649379573655743,60.000000000000000,2.570139900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000047845109139,0.000000004844912,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000408980651,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.003837192405766,291260000.000000000000000,2560.000000000000000,19456000000.000000000000000,19747260000.000000000000000,0.016750762052542,0.000139798843457,Very Low,125352.300000000002910,0.000632440000000,4806.543999999999869,130158.843999999982771,20.986168040674993,Relatively Moderate,17.851748893356099,Relatively Moderate,1.000000000000000,0.031250000000000,291260000.000000000000000,2560.000000000000000,19456000000.000000000000000,0.000000000000000,19747260000.000000000000000,0.000018022350010,0.000000021006339,0.000227577948569,Very Low,164.037176996358596,0.000001680507144,12.771854294400001,0.000000000000000,176.809031290758583,3.607419158493392,Very Low,2.902029393090896,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010000000000000,291260000.000000000000000,2560.000000000000000,19456000000.000000000000000,0.000000000000000,19747260000.000000000000000,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,74.372531149574542,0.000008387545690,63.745347240960008,0.000000000000000,138.117878390534543,2.099131508289378,Very Low,2.151690339913581,Very Low,0.000000000000000,0.014890000000000,291260000.000000000000000,2560.000000000000000,19456000000.000000000000000,19747260000.000000000000000,0.000005888299321,0.000000264000000,Very Low,25.536738036891112,0.000010063257600,76.480757759999989,102.017495796891112,6.370747723912173,Very Low,3.966829763112421,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000067892077568,0.000000058503599,0.000567088799505,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,1.000000000000000,0.031250000000000,291260000.000000000000000,2560.000000000000000,19456000000.000000000000000,0.000000000000000,19747260000.000000000000000,0.000000227257356,0.000000116345733,0.000021953615106,Very Low,2.068468048052687,0.000009307658640,70.738205664000006,0.000000000000000,72.806673712052685,4.029290809603946,Very Low,3.473512923776222,Very Low,0.000000000000000,0.000016566161557,291260000.000000000000000,2560.000000000000000,19456000000.000000000000000,0.000000000000000,19747260000.000000000000000,0.059498881586676,0.000039671814262,0.031480112893677,Very Low,287.085686383092877,0.000001682456792,12.786671618092447,0.000000000000000,299.872358001185319,4.768656889048612,Very Low,4.259445004711915,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.001559313957881,0.000000036516950,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.047775264838299,0.000109593070989,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +28,T15009031502,Hawaii,HI,15,Maui,County,009,15009,031502,15009031502,5036,709032000.000000000000000,4590410.136826201342046,33.448147534680025,20.885225279806189,Relatively Moderate,74.981784187299795,77.914110429447859,24.198196878007799,Relatively Moderate,82.540315374145919,86.809815950920239,713199.375733464024961,567506.015858608298004,0.019129296010791,145382.649682014947757,310.710192840730599,27.794924279980172,Relatively Low,14.312094766503433,19.373219373219371,-2.563000000000000,51.801599999999993,Relatively Low,16.958320076360163,80.000000000000000,2.590080000000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012000000,23099293.952466882765293,164.066000328085664,1246901602.493450880050659,1270000896.445917844772339,0.000045810029543,0.000000002162450,Very Low,74.041879184102314,0.000000024824633,0.188667211084210,74.230546395186494,1.385268834254324,Very Low,1.195307876904557,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,392.000000000000000,21.777777777000001,0.000000000000000,0.000000000000000,0.000000162472734,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.005874869476125,709032000.000000000000000,5036.000000000000000,38273600000.000000000000000,38982632000.000000000000000,0.000859904751770,0.000007510810448,Very Low,550446.199999999953434,0.015818740000000,120222.423999999999069,670668.624000000068918,36.247488005249487,Very High,35.278927368066270,Relatively High,1.000000000000000,0.031250000000000,709032000.000000000000000,5036.000000000000000,38273600000.000000000000000,4590410.136826201342046,38987222410.136825561523438,0.000018022350010,0.000000021030855,0.000227577948569,Very Low,399.325714756856712,0.000003309730837,25.153954361959997,32.646128813457068,457.125797932273940,4.951160857954721,Very Low,4.557241775897316,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010000000000000,709032000.000000000000000,5036.000000000000000,38273600000.000000000000000,4590410.136826201342046,38987222410.136825561523438,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,181.049593167771519,0.000016499875036,125.399050275575959,11.296067324457196,317.744710767804747,2.771080387630083,Very Low,3.249967973736407,Very Low,0.000000000000000,0.014890000000000,709032000.000000000000000,5036.000000000000000,38273600000.000000000000000,38982632000.000000000000000,0.000005888299321,0.000001627000000,Relatively Low,62.165640471650676,0.000122002287080,927.217381808000027,989.383022279650845,13.585855966912590,Relatively Low,9.678988981939172,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,107.000000000000000,4.458333333000000,49165319.455513529479504,253.372738567325712,1925632813.111675500869751,13966.899991719445097,1974812099.467180728912354,0.000030594713634,0.000002726725892,0.004246623092835,Very Low,6706.219959286923768,0.003080164445991,23409.249789534085721,264.433380159231262,30379.903128980240581,14.090709508052248,Relatively Moderate,11.422845403733293,Relatively Low,1.000000000000000,0.031250000000000,709032000.000000000000000,5036.000000000000000,38273600000.000000000000000,4590410.136826201342046,38987222410.136825561523438,0.000000513167921,0.000000083457607,0.000013387545452,Very Low,11.370389924224428,0.000013134140917,99.819470971955042,1.920447635997452,113.110308532176816,4.666654108165464,Very Low,4.602944645733322,Very Low,0.000000000000000,0.000384431038081,709032000.000000000000000,5036.000000000000000,38273600000.000000000000000,4590410.136826201342046,38987222410.136825561523438,0.000998293690303,0.000000665628005,0.000234697010766,Very Low,272.108812290449748,0.000001288652295,9.793757444791380,0.414168907587611,282.316738642828739,4.673721251043421,Very Low,4.776592846066803,Very Low,5.000000000000000,0.022835221000000,529748701.104162275791168,3369.440234795578817,25607745784.446399688720703,26137494485.550559997558594,0.000773214138463,0.000000036639207,Very Low,9353.516275115964163,0.000002819090686,21.425089217124960,9374.941364333088131,22.554953132089555,Relatively Moderate,17.136547090899445,Relatively Moderate,1.000000000000000,0.003531000000000,709031990.630919337272644,5035.999986748169249,38273599899.286087036132812,38982631889.916999816894531,0.000000007027667,0.000004010375565,Very Low,0.017594410340793,0.000071312963315,541.978521190347351,541.996115600688086,9.417953740920288,Very Low,8.119203340804429,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +29,T15009031700,Hawaii,HI,15,Maui,County,009,15009,031700,15009031700,4503,555074000.000000000000000,1276731.153754402184859,122.843138578697904,22.356095284280705,Relatively Moderate,80.134453319402240,82.208588957055213,20.076193964765526,Relatively Moderate,66.557142660745953,77.914110429447859,407292.193030585825909,311299.926494379295036,0.011804989486649,89717.920098531874828,6274.346437674673325,35.861065357491242,Relatively High,86.548299729160391,85.754985754985753,2.481000000000000,51.801599999999993,Relatively Low,16.958320076360163,80.000000000000000,2.590080000000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012000000,69959563.724715173244476,567.542193387534667,4313320669.745264053344727,4383280233.469979286193848,0.000000149089282,0.000000000015384,Very Low,0.729813126652956,0.000000000610913,0.004642942551860,0.734456069204816,0.297391432244195,Very Low,0.331079173596858,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,770.000000000000000,42.777777776999997,0.000000000000000,0.000000000000000,0.000000162472734,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.005003256929209,555074000.000000000000000,4503.000000000000000,34222800000.000000000000000,34777874000.000000000000000,0.000859904751770,0.000007510810448,Very Low,300975.700000000011642,0.006816760000000,51807.375999999996566,352783.076000000000931,29.260236540027059,Relatively High,36.742862047061209,Relatively High,1.000000000000000,0.031250000000010,555074000.000000000000000,4503.000000000000000,34222800000.000000000000000,1276731.153754402184859,34779150731.153755187988281,0.000018022350010,0.000000021030855,0.000227577948569,Very Low,312.616809669347049,0.000002959435655,22.491710979417846,9.079870526296883,344.188391175061781,4.504298864189214,Very Low,5.349090236772879,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010000000000000,555074000.000000000000000,4503.000000000000000,34222800000.000000000000000,1276731.153754402184859,34779150731.153755187988281,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,141.736793089744396,0.000014753561813,112.127069775798034,3.141776145957406,257.005639011499738,2.581887007609155,Very Low,3.906833301426354,Very Low,0.000000000000000,0.014890000000000,555074000.000000000000000,4503.000000000000000,34222800000.000000000000000,34777874000.000000000000000,0.000005888299321,0.000001627000000,Relatively Low,48.667099255267786,0.000109089813090,829.082579484000007,877.749678739267665,13.054364893834022,Relatively Low,11.999314312366680,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,107.000000000000000,4.458333333000000,53882794.811541654169559,393.455569318081359,2990262326.817418575286865,330715.400873041478917,3044475837.029833316802979,0.000030594713634,0.000002726725892,0.004246623092835,Very Low,7349.690351433275282,0.004783102801602,36351.581292171722453,6261.388810360302159,49962.660453965305351,16.632310553178819,Relatively Moderate,17.396092770529542,Relatively Moderate,1.000000000000000,0.031250000000010,555074000.000000000000000,4503.000000000000000,34222800000.000000000000000,1276731.153754402184859,34779150731.153755187988281,0.000000513167921,0.000000083457607,0.000013387545452,Very Low,8.901442835886126,0.000011744050149,89.254781133532362,0.534134260972526,98.690358230390999,4.459263389534165,Very Low,5.674805188105998,Very Low,0.000000000000000,0.002406280207015,555074000.000000000000000,4503.000000000000000,34222800000.000000000000000,1276731.153754402184859,34779150731.153755187988281,0.000279464135113,0.000000186337104,0.000065701504241,Very Low,373.270067082462276,0.000002019051917,15.344794566539013,0.201846381144464,388.816708030145776,5.199946837768832,Very Low,6.856991519259395,Very Low,7.000000000000000,0.031969309000000,84493307.162760183215141,678.656794460957371,5157791637.903275489807129,5242284945.066035270690918,0.000773214138463,0.000000036639207,Very Low,2088.600343916845759,0.000000794931160,6.041476816199843,2094.641820733046188,13.686392766166568,Relatively Moderate,13.416155425715838,Relatively Moderate,1.000000000000000,0.003531000000000,555073174.039343953132629,4502.991942470668619,34222738762.777084350585938,34777811936.816421508789062,0.000000007027667,0.000004010375565,Very Low,0.013773969753500,0.000063765230350,484.615750662102414,484.629524631856043,9.073213239855226,Very Low,10.091963595863044,Very Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +30,T15001021202,Hawaii,HI,15,Hawaii,County,001,15001,021202,15001021202,8451,921317000.000000000000000,67149035.710696369409561,934.549218754617414,57.962136628165446,Very High,99.887268178006295,100.000000000000000,50.900975701792206,Very High,99.741541676404680,100.000000000000000,6638046.013878047466278,4824851.129846152849495,0.238311783742932,1811169.556446284521371,2025.327585610032202,35.944221451073830,Relatively High,86.972341531474839,86.609686609686605,2.533000000000000,50.775198000000003,Relatively Low,9.385937002863507,40.000000000000000,2.538759900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012000000,83809817.365640386939049,768.765546014050415,5842618149.706782341003418,5926427967.072423934936523,0.000000001521045,0.000000000000101,Very Low,0.008919798175192,0.000000000005425,0.000041227558299,0.008961025733491,0.068463498194764,Very Low,0.077939916874343,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,812.000000000000000,45.111111111000000,0.000000000000000,0.000000000000000,0.000000054093342,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.009999312882487,921317000.000000000000000,8451.000000000000000,64227600000.000000000000000,65148917000.000000000000000,0.000850584189555,0.000011691657432,Very Low,4823252.000000000000000,0.237285740000000,1803371.623999999836087,6626623.623999999836087,77.780850306185755,Very High,99.876951571207783,Very High,1.000000000000000,0.031249999999985,921317000.000000000000000,8451.000000000000000,64227600000.000000000000000,67149035.710696399211884,65216066035.710700988769531,0.000018022350010,0.000000076028889,0.000227577948569,Very Low,518.884295128261215,0.000020078754272,152.598532469940523,477.551243603209798,1149.034071201411507,6.731927467265274,Relatively Low,8.175034535487720,Relatively Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,1.000000000000000,0.014522291219939,916526100.279953360557556,8404.898826597063817,63877231082.137680053710938,67149035.710696399211884,64860906218.128334045410156,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,339.188081501869021,0.000039909688024,303.313628978871179,239.478468341818228,881.980178822560106,3.894418530466505,Very Low,6.025980391287073,Very Low,0.000000000000000,0.014890000000000,921317000.000000000000000,8451.000000000000000,64227600000.000000000000000,65148917000.000000000000000,0.000005888299321,0.000001361000000,Very Low,80.778105053678530,0.000171261965790,1301.590940003995001,1382.369045057677795,15.188219148602970,Relatively Low,14.275948703184133,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.000000000000000,5.916666666000000,33595.897032492684957,0.310449442432201,2359415.762484729755670,0.000000000000000,2393011.659517222549766,0.000624504383719,0.000003832719626,0.000349248462208,Very Low,124.136311068909023,0.000007040038551,53.504292989437189,0.000000000000000,177.640604058346185,2.538544692710985,Very Low,2.715072217287195,Very Low,1.000000000000000,0.031249999999985,921317000.000000000000000,8451.000000000000000,64227600000.000000000000000,67149035.710696399211884,65216066035.710700988769531,0.000008360074880,0.000000310246591,0.000621258458489,Very Low,240.696222140900659,0.000081934185721,622.699811482599102,1303.653325444879329,2167.049359068374542,12.487087387382891,Relatively Low,16.249740330646727,Relatively Low,2.000000000000000,0.007062879078148,921317000.000000000000000,8451.000000000000000,64227600000.000000000000000,67149035.710696369409561,65216066035.710700988769531,0.000041655532713,0.000000027774481,0.000009793139138,Very Low,271.058823169773234,0.000001657814085,12.599387044861498,4.644548220124746,288.302758434759482,4.706523120912035,Very Low,6.346413391200531,Very Low,21.000000000000000,0.095907928000000,379409.991617718769703,1.397293271537155,10619428.863682379946113,10998838.855300098657608,0.000665459771009,0.000003873415999,Very Low,24.215033738841154,0.000000519082298,3.945025462480086,28.160059201321246,3.254345039507256,Very Low,3.262121412403333,Relatively Low,4.000000000000000,0.020744800000000,921315089.378878593444824,8450.978594733838690,64227437319.977172851562500,65148752409.356048583984375,0.000000007027667,0.000004004334439,Very Low,0.134316262502392,0.000702015330191,5335.316509450291960,5335.450825712795449,20.184354669945737,Relatively Low,22.957620285816596,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,53.000000000000000,1.288704544442004,80084.460300670514698,3.525730956633293,26795555.270413026213646,0.000000000000000,26875639.730713699012995,0.000000085057095,0.000000105693624,0.000000000001782,Very Low,0.029738289359763,0.000001626878576,12.364277175023046,0.000000000000000,12.394015464382809,3.683833063816554,Very Low,2.551698512791928,Very Low,November 2021 +31,T15001021300,Hawaii,HI,15,Hawaii,County,001,15001,021300,15001021300,5972,691942000.000000000000000,41505347.681977748870850,314.484740023344330,44.864889542480448,Very High,99.561445716878154,98.773006134969322,40.944104560025764,Very High,99.061026409491475,97.852760736196316,3454904.678842767141759,2421751.964679942466319,0.135724750460040,1031508.103496303549036,1644.610666521351732,34.588137463419308,Relatively Moderate,78.081142450688048,75.498575498575491,1.685000000000000,50.775198000000003,Relatively Low,9.385937002863507,40.000000000000000,2.538759900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012000000,59825905.456717506051064,516.344299648694459,3924216677.330078125000000,3984042582.786795616149902,0.000000318731516,0.000000000021750,Very Low,1.334235351428537,0.000000000785825,0.005972272361193,1.340207623789730,0.363410277954874,Very Low,0.398103644291091,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,532.000000000000000,29.555555555000002,0.000000000000000,0.000000000000000,0.000000054093342,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.009999073211686,691942000.000000000000000,5972.000000000000000,45387200000.000000000000000,46079142000.000000000000000,0.000850584189555,0.000011691657432,Very Low,2014339.199999999953434,0.111342620000000,846203.912000000011176,2860543.111999999731779,58.783857829687157,Very High,72.635473363985383,Very High,1.000000000000000,0.031249999999982,691942000.000000000000000,5972.000000000000000,45387200000.000000000000000,41505347.681977741420269,46120647347.681976318359375,0.000018022350010,0.000000076028889,0.000227577948569,Very Low,389.700653454694475,0.000014188891316,107.835574003974955,295.178183753751568,792.714411212420714,5.948407470417679,Very Low,6.951026967027129,Relatively Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,1.000000000000000,0.014492753623180,683648413.121041417121887,5903.058982075972381,44863248263.777389526367188,41505347.681977741420269,45588402024.580413818359375,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,252.997037858509145,0.000028029991463,213.027935120188374,148.023526857365766,614.048499836063229,3.451627386679117,Very Low,5.139336951626390,Very Low,0.000000000000000,0.014890000000000,691942000.000000000000000,5972.000000000000000,45387200000.000000000000000,46079142000.000000000000000,0.000005888299321,0.000001361000000,Very Low,60.667244354605920,0.000121024311880,919.784770287999436,980.452014642606173,13.544853202371462,Relatively Low,12.250971272849439,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.000000000000000,5.916666666000000,108451273.173608228564262,1031.964638370370949,7842931251.614819526672363,190128.168639781768434,7951572652.957066535949707,0.000624504383719,0.000003832719626,0.000349248462208,Very Low,400725.748429268132895,0.023401784138273,177853.559450876375195,392.878325531274584,578972.186205675825477,37.637719415520252,Very High,38.736284987487174,Very High,1.000000000000000,0.031249999999982,691942000.000000000000000,5972.000000000000000,45387200000.000000000000000,41505347.681977741420269,46120647347.681976318359375,0.000008360074880,0.000000310246591,0.000621258458489,Very Low,180.771466650766939,0.000057899770101,440.038252770355200,805.798384998219944,1426.608104419341771,10.862749855716292,Relatively Low,13.602638241450499,Relatively Low,0.000000000000000,0.002337113958576,691942000.000000000000000,5972.000000000000000,45387200000.000000000000000,41505347.681977748870850,46120647347.681976318359375,0.000119808194345,0.000000079883996,0.000028166686168,Very Low,193.747498808121605,0.000001114960472,8.473699587507349,2.732245380739847,204.953443776368829,4.200513040394299,Very Low,5.450292167718327,Very Low,19.000000000000000,0.086773839000000,97112232.885842159390450,779.501267800004598,5924209635.280034065246582,6021321868.165876388549805,0.000665459771009,0.000003873415999,Very Low,5607.697237725666128,0.000261999087996,1991.193068769958018,7598.890306495624827,21.029831876874933,Relatively Moderate,20.284785513587643,Relatively Moderate,4.000000000000000,0.020744800000000,691941637.798755049705505,5971.997057951202805,45387177640.429138183593750,46079119278.227897644042969,0.000000007027667,0.000004004334439,Very Low,0.100876470743108,0.000496088522712,3770.272772614818678,3770.373649085561283,17.978465682514621,Relatively Low,19.677173736187388,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,53.000000000000000,0.964314974050721,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +32,T15003010308,Hawaii,HI,15,Honolulu,County,003,15003,010308,15003010308,3319,402502000.000000000000000,0.000000000000000,3.297856642126000,14.660836499404647,Relatively Low,45.169716383233208,34.049079754601223,14.837763204249731,Relatively Low,38.728879968105147,32.515337423312886,164424.770555597002385,141142.512506134371506,0.003063455006508,23282.258049462638155,0.000000000000000,31.575328226696296,Relatively Moderate,47.499521243126416,49.572649572649574,-0.199000000000000,51.402797999999997,Relatively Low,13.649379573655743,60.000000000000000,2.570139900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000047845109139,0.000000004844912,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,133.000000000000000,7.388888888000000,0.000000000000000,0.000000000000000,0.000000408980651,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.003156657944154,402502000.000000000000000,3319.000000000000000,25224400000.000000000000000,25626902000.000000000000000,0.016750762052542,0.000139798843457,Very Low,140331.500000000000000,0.003022850000000,22973.660000000003492,163305.160000000003492,22.634724922594362,Relatively Moderate,25.220371027135332,Relatively Moderate,1.000000000000000,0.031250000000000,402502000.000000000000000,3319.000000000000000,25224400000.000000000000000,0.000000000000000,25626902000.000000000000000,0.000018022350010,0.000000021006339,0.000227577948569,Very Low,226.688497615149089,0.000002178751254,16.558509532466250,0.000000000000000,243.247007147615335,4.012154307970464,Very Low,4.227770988652906,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010000000000000,402502000.000000000000000,3319.000000000000000,25224400000.000000000000000,0.000000000000000,25626902000.000000000000000,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,102.777904733798167,0.000010874321931,82.644846676854016,0.000000000000000,185.422751410652211,2.315673656192894,Very Low,3.109181713275737,Very Low,0.000000000000000,0.014890000000000,402502000.000000000000000,3319.000000000000000,25224400000.000000000000000,25626902000.000000000000000,0.000005888299321,0.000000264000000,Very Low,35.290078051654014,0.000013046856240,99.156107423999998,134.446185475653948,6.984709526020093,Very Low,5.696788974716534,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000067892077568,0.000000058503599,0.000567088799505,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,1.000000000000000,0.031250000000000,402502000.000000000000000,3319.000000000000000,25224400000.000000000000000,0.000000000000000,25626902000.000000000000000,0.000000227257356,0.000000116345733,0.000021953615106,Very Low,2.858485635780069,0.000012067233995,91.710978358912499,0.000000000000000,94.569463994692583,4.396312198626912,Very Low,4.964293599030928,Very Low,0.000000000000000,0.000090089307528,402502000.000000000000000,3319.000000000000000,25224400000.000000000000000,0.000000000000000,25626902000.000000000000000,0.012227903085193,0.000008153146531,0.031480112893677,Very Low,443.397540097979686,0.000002437843088,18.527607470402135,0.000000000000000,461.925147568381760,5.507330411481481,Very Low,6.443973765754323,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.001559313957881,0.000000036516950,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.047775264838299,0.000109593070989,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +33,T15001021504,Hawaii,HI,15,Hawaii,County,001,15001,021504,15001021504,3965,567799000.000000000000000,0.000000000000000,11.981579426421995,39.050427107178621,Very High,98.940045917595782,96.012269938650306,38.761477729590119,Very High,98.709083160340398,96.319018404907979,2931317.856563528068364,2359248.552634523250163,0.075272276832764,572069.303929004585370,0.000000000000000,31.800809172756782,Relatively Moderate,50.021886028506557,52.991452991452995,-0.058000000000000,50.775198000000003,Relatively Low,9.385937002863507,40.000000000000000,2.538759900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.067971012000000,84051061.914048776030540,586.937385393780914,4460724128.992735862731934,4544775190.906784057617188,0.000000668914406,0.000000000013660,Very Low,3.821531909236917,0.000000000544970,0.004141770669555,3.825673679906472,0.515516399474583,Very Low,0.519221212824097,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,119.000000000000000,6.611111111000000,0.000000000000000,0.000000000000000,0.000000054093342,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.009999102299168,567799000.000000000000000,3965.000000000000000,30134000000.000000000000000,30701799000.000000000000000,0.000850584189555,0.000011691657432,Very Low,2292113.699999999720603,0.074232510000000,564167.076000000117347,2856280.776000000070781,58.754646465091874,Very High,66.748867058424025,Very High,1.000000000000000,0.031250000000000,567799000.000000000000000,3965.000000000000000,30134000000.000000000000000,0.000000000000000,30701799000.000000000000000,0.000018022350010,0.000000076028889,0.000227577948569,Very Low,319.783509789725315,0.000009420454466,71.595453939343756,0.000000000000000,391.378963729069028,4.701404501926037,Very Low,5.051110580388015,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.014492753623188,567799000.000000000000000,3965.000000000000000,30134000000.000000000000000,0.000000000000000,30701799000.000000000000000,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,210.124769314120869,0.000018827342991,143.087806731434796,0.000000000000000,353.212576045555522,2.870571711319649,Very Low,3.929728814396432,Very Low,0.000000000000000,0.014890000000000,567799000.000000000000000,3965.000000000000000,30134000000.000000000000000,30701799000.000000000000000,0.000005888299321,0.000001361000000,Very Low,49.782786241189108,0.000080351874850,610.674248860000148,660.457035101189035,11.873544338487765,Very Low,9.873874245697145,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.000000000000000,5.916666666000000,17678751.916805524379015,25.000000000000000,190000000.000000000000000,0.000000000000000,207678751.916805505752563,0.000624504383719,0.000003832719626,0.000349248462208,Very Low,65322.710244412664906,0.000566923111223,4308.615645293189118,0.000000000000000,69631.325889705854934,18.578285035266195,Relatively Moderate,17.579692859125654,Relatively Moderate,1.000000000000000,0.031250000000000,567799000.000000000000000,3965.000000000000000,30134000000.000000000000000,0.000000000000000,30701799000.000000000000000,0.000008360074880,0.000000310246591,0.000621258458489,Very Low,148.338817404983132,0.000038441491703,292.155336944818771,0.000000000000000,440.494154349801988,7.342065698532881,Very Low,8.453034280507580,Very Low,0.000000000000000,0.000141240788942,567799000.000000000000000,3965.000000000000000,30134000000.000000000000000,0.000000000000000,30701799000.000000000000000,0.002707533108222,0.000001805290246,0.031480112893677,Very Low,217.134350545559840,0.000001010998153,7.683585961449491,0.000000000000000,224.817936507009335,4.332057871933334,Very Low,5.167961647461088,Very Low,15.000000000000000,0.068505663000000,18932200.476656351238489,25.002490706213727,190018929.367224335670471,208951129.843880683183670,0.000665459771009,0.000003873415999,Very Low,863.076664853924058,0.000006634434188,50.421699825106607,913.498364679030715,10.378987773913458,Relatively Low,9.204508731181445,Relatively Low,3.000000000000000,0.020038600000000,567798879.682772994041443,3964.999998135852820,30133999985.832481384277344,30701798865.515254974365234,0.000000007027667,0.000004004334439,Very Low,0.079960052348039,0.000318156580221,2417.990009678361275,2418.069969730710000,15.504131721615503,Relatively Low,15.601578428554278,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +34,T15001021604,Hawaii,HI,15,Hawaii,County,001,15001,021604,15001021604,7587,965922000.000000000000000,0.000000000000000,3.034218860588000,39.552944679333983,Very High,99.037655178102540,96.319018404907979,41.004712950055207,Very High,99.066525522759449,98.159509202453989,3470269.991777816787362,2636463.224159166682512,0.109711416791928,833806.767618650221266,0.000000000000000,30.447923496393901,Relatively Low,35.423905014636283,37.321937321937320,-0.904000000000000,50.775198000000003,Relatively Low,9.385937002863507,40.000000000000000,2.538759900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012000000,29819708.473078481853008,234.224014139077923,1780102507.456992387771606,1809922215.930070638656616,0.000015613591680,0.000000000583953,Very Low,32.577996044832993,0.000000009570339,0.072734575772098,32.650730620605096,1.053507129751010,Very Low,1.015937356557841,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,49.000000000000000,2.722222222000000,0.000000000000000,0.000000000000000,0.000000054093342,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.009999019336766,965922000.000000000000000,7587.000000000000000,57661200000.000000000000000,58627122000.000000000000000,0.000850584189555,0.000011691657432,Very Low,2358086.400000000372529,0.101714970000000,773033.771999999997206,3131120.171999999787658,60.581752232821152,Very High,65.896602041162367,Very High,1.000000000000000,0.031250000000000,965922000.000000000000000,7587.000000000000000,57661200000.000000000000000,0.000000000000000,58627122000.000000000000000,0.000018022350010,0.000000076028889,0.000227577948569,Very Low,544.005761445707208,0.000018025974283,136.997404549256288,0.000000000000000,681.003165994963297,5.654725177434277,Very Low,5.816882206095870,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.014492753623188,965922000.000000000000000,7587.000000000000000,57661200000.000000000000000,0.000000000000000,58627122000.000000000000000,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,357.457722583932480,0.000036025990233,273.797525768321862,0.000000000000000,631.255248352254057,3.483571124099845,Very Low,4.566025909605237,Very Low,0.000000000000000,0.014890000000000,965922000.000000000000000,7587.000000000000000,57661200000.000000000000000,58627122000.000000000000000,0.000005888299321,0.000001361000000,Very Low,84.688927686843158,0.000153752755230,1168.520939747999819,1253.209867434842408,14.699643087567459,Relatively Low,11.703978421217093,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.000000000000000,5.916666666000000,72095984.588420912623405,299.447345330591247,2275799824.512493133544922,0.000000000000000,2347895809.100914478302002,0.000624504383719,0.000003832719626,0.000349248462208,Very Low,266393.528978602611460,0.006790544826489,51608.140681315926486,0.000000000000000,318001.669659918465186,30.823399379737701,Relatively High,27.925805176012432,Relatively High,1.000000000000000,0.031250000000000,965922000.000000000000000,7587.000000000000000,57661200000.000000000000000,0.000000000000000,58627122000.000000000000000,0.000008360074880,0.000000310246591,0.000621258458489,Very Low,252.349382766535570,0.000073557527756,559.037210945861375,0.000000000000000,811.386593712396689,9.000103264981329,Very Low,9.921135137918860,Very Low,0.000000000000000,0.000039607641015,965922000.000000000000000,7587.000000000000000,57661200000.000000000000000,0.000000000000000,58627122000.000000000000000,0.009655059036394,0.000006437662332,0.031480112893677,Very Low,369.382204173780281,0.000001934537953,14.702488446284310,0.000000000000000,384.084692620064573,5.178765708613748,Very Low,5.915331915948118,Very Low,14.000000000000000,0.063938618000000,243079736.711720645427704,1267.076244046694910,9629779454.754880905151367,9872859191.466602325439453,0.000665459771009,0.000003873415999,Very Low,10342.697160280009484,0.000313805199741,2384.919518028652419,12727.616678308659175,24.974766584395166,Relatively High,21.206381038883297,Relatively High,3.000000000000000,0.020038600000000,965922000.000000000000000,7587.000000000000000,57661200000.000000000000000,58627122000.000000000000000,0.000000007027667,0.000004004334439,Very Low,0.136025583085464,0.000608790409904,4626.807115272326882,4626.943140855413731,19.248159810790629,Relatively Low,18.545127092093892,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +35,T15001022000,Hawaii,HI,15,Hawaii,County,001,15001,022000,15001022000,2588,255562000.000000000000000,1087339.010126851499081,464.158756005605881,20.747669871294850,Relatively Moderate,74.468991875060141,77.300613496932513,19.568069235761538,Relatively Moderate,64.151280606002274,75.153374233128829,377142.838819631491788,279582.459563443029765,0.012832735633267,97528.790812828927301,31.588443359565719,33.468728511346008,Relatively Moderate,68.244740513774516,66.381766381766383,0.985000000000000,50.775198000000003,Relatively Low,9.385937002863507,40.000000000000000,2.538759900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.067971012000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000047845109139,0.000000004844912,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,1631.000000000000000,90.611111111000000,0.000000000000000,0.000000000000000,0.000000054093342,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.009981209574390,255562000.000000000000000,2588.000000000000000,19668800000.000000000000000,19924362000.000000000000000,0.000850584189555,0.000011691657432,Very Low,279213.299999999988358,0.012532430000000,95246.468000000008033,374459.767999999981839,29.847661200260482,Relatively High,35.687245678112497,Relatively High,1.000000000000000,0.031250000000062,255562000.000000000000000,2588.000000000000000,19668800000.000000000000000,1087339.010126851499081,19925449339.010128021240234,0.000018022350010,0.000000076028889,0.000227577948569,Very Low,143.932119163475846,0.000006148836357,46.731156316537501,7.732949416378236,198.396224896391459,3.748633027337735,Very Low,4.238705345940486,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010288915924080,255562000.000000000000000,2588.000000000000000,19668800000.000000000000000,1087339.010126851499081,19925449339.010128021240234,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,64.670756315465056,0.000008480756470,64.453749169368081,2.675720534068390,131.800226018901498,2.066625258051758,Very Low,2.977535557530570,Very Low,0.000000000000000,0.014890000000000,255562000.000000000000000,2588.000000000000000,19668800000.000000000000000,19924362000.000000000000000,0.000005888299321,0.000001361000000,Very Low,22.406852455482987,0.000052446570520,398.593935951999981,421.000788407482958,10.218641376796789,Very Low,8.943374440529881,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000624504383719,0.000003832719626,0.000349248462208,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,1.000000000000000,0.031250000000062,255562000.000000000000000,2588.000000000000000,19668800000.000000000000000,1087339.010126851499081,19925449339.010128021240234,0.000008360074880,0.000000310246591,0.000621258458489,Very Low,66.766170517492711,0.000025091193071,190.693067342596038,21.109954915193878,278.569192775282659,6.302060650279813,Very Low,7.636212145244690,Very Low,0.000000000000000,0.003198526280711,255562000.000000000000000,2588.000000000000000,19668800000.000000000000000,1087339.010126851499081,19925449339.010128021240234,0.000085389869815,0.000000056935038,0.000020075001365,Very Low,69.799538810402694,0.000000471296057,3.581850035219535,0.069818493925216,73.451207339547452,2.983666262368917,Very Low,3.745858249700596,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000665459771009,0.000003873415999,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,4.000000000000000,0.020318532496953,254026689.548655509948730,2587.997285569339510,19668779370.326980590820312,19922806059.875637054443359,0.000000007027667,0.000004004334439,Very Low,0.035798924378239,0.000207666980791,1578.269054013203686,1578.304852937581927,13.448942152149305,Relatively Low,14.243288059333651,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,53.000000000000000,1.204779757785932,4169606.099338440690190,0.000000000000000,0.000000000000000,0.000000000000000,4169606.099338440690190,0.000000085057095,0.000000105693624,0.000000000001782,Very Low,1.548327256409328,0.000000000000000,0.000000000000000,0.000000000000000,1.548327256409328,1.841550007455972,Very Low,1.187744609382313,Very Low,November 2021 +36,T15001022102,Hawaii,HI,15,Hawaii,County,001,15001,022102,15001022102,2041,231676000.000000000000000,20509139.474021498113871,318.206913497022185,28.297836668984587,Relatively High,93.013376593024375,89.570552147239269,26.874988914407933,Relatively High,88.883542528767236,89.570552147239269,977027.568284225300886,707863.203967102919705,0.035337979090838,268568.641090366872959,595.723226755520500,33.236850942702247,Relatively Moderate,65.945339643804886,64.387464387464391,0.840000000000000,50.775198000000003,Relatively Low,9.385937002863507,40.000000000000000,2.538759900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.057971012000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000047845109139,0.000000004844912,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,238.000000000000000,13.222222221999999,0.000000000000000,0.000000000000000,0.000000054093342,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.009986984960232,231676000.000000000000000,2041.000000000000000,15511600000.000000000000000,15743276000.000000000000000,0.000850584189555,0.000011691657432,Very Low,707499.299999999930151,0.035098890000000,266751.564000000013039,974250.863999999943189,41.051798163490218,Very High,48.743371457675053,Very High,1.000000000000000,0.031250000000000,231676000.000000000000000,2041.000000000000000,15511600000.000000000000000,20509139.474021501839161,15763785139.474021911621094,0.000018022350010,0.000000076028889,0.000227577948569,Very Low,130.479561279413161,0.000004849217545,36.854053339472053,145.857121513242618,313.190736132127881,4.364804151503243,Very Low,4.901237162909817,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.011751650193968,231676000.000000000000000,2041.000000000000000,15511600000.000000000000000,20509139.474021501839161,15763785139.474021911621094,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,59.184058438059473,0.000006687101856,50.821974108906005,50.468828135127680,160.474860682093123,2.206778193338994,Very Low,3.157436048534518,Very Low,0.000000000000000,0.014890000000000,231676000.000000000000000,2041.000000000000000,15511600000.000000000000000,15743276000.000000000000000,0.000005888299321,0.000001361000000,Very Low,20.312604962695819,0.000041361456890,314.347072363999814,334.659677326695942,9.466003284043644,Very Low,8.227266452707536,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000624504383719,0.000003832719626,0.000349248462208,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,1.000000000000000,0.031250000000000,231676000.000000000000000,2041.000000000000000,15511600000.000000000000000,20509139.474021501839161,15763785139.474021911621094,0.000008360074880,0.000000310246591,0.000621258458489,Very Low,60.525897124702382,0.000019787915401,150.388157051113353,398.171136705377705,609.085190881193398,8.179577971525495,Very Low,9.842534804211111,Very Low,0.000000000000000,0.002048972718009,231676000.000000000000000,2041.000000000000000,15511600000.000000000000000,20509139.474021498113871,15763785139.474021911621094,0.000124110165977,0.000000082752403,0.000029178071787,Very Low,58.914823170858071,0.000000346066688,2.630106829175239,1.226140401772445,62.771070401805751,2.831416610085048,Very Low,3.530042847073502,Very Low,5.000000000000000,0.022835221000000,2267345.002602254506201,25.838665459552885,196373857.492601931095123,198641202.495204210281372,0.000665459771009,0.000003873415999,Very Low,34.454395397795764,0.000002285437979,17.369328639981472,51.823724037777239,3.988062430684292,Relatively Low,3.696487658997563,Relatively Low,4.000000000000000,0.020462927221661,231675410.173826962709427,2040.993654288056860,15511551772.589233398437500,15743227182.763059616088867,0.000000007027667,0.000004004334439,Very Low,0.032626729429945,0.000163771894478,1244.666398034223448,1244.699024763653142,12.425463883734372,Relatively Low,13.068188768497095,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,53.000000000000000,0.961259314702559,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +37,T15001021509,Hawaii,HI,15,Hawaii,County,001,15001,021509,15001021509,5154,799747000.000000000000000,979196.950329917017370,10.129572457265999,43.644179242800597,Very High,99.484458131126345,98.466257668711648,39.608502856922811,Very High,98.868557445111975,96.625766871165638,3127715.323796507902443,2488986.822889817412943,0.084038697580343,638694.101610610377975,34.399296080328142,34.781635296563415,Relatively Moderate,79.568024512351926,77.492877492877483,1.806000000000000,50.775198000000003,Relatively Low,9.385937002863507,40.000000000000000,2.538759900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012000000,34544698.002613455057144,222.624621918518926,1691947126.580743789672852,1726491824.583357095718384,0.000010913887040,0.000000000479101,Very Low,26.380256262527933,0.000000007463089,0.056719476899227,26.436975739427158,0.981922251996427,Very Low,1.081680174827829,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,28.000000000000000,1.555555555000000,0.000000000000000,0.000000000000000,0.000000054093342,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.009999008173400,799747000.000000000000000,5154.000000000000000,39170400000.000000000000000,39970147000.000000000000000,0.000850584189555,0.000011691657432,Very Low,2391862.200000000186265,0.081454820000000,619056.631999999866821,3010918.831999999936670,59.796385688257459,Very High,74.299936395645489,Very High,1.000000000000000,0.031250000000209,799747000.000000000000000,5154.000000000000000,39170400000.000000000000000,979196.950329917133786,39971126196.950332641601562,0.000018022350010,0.000000076028889,0.000227577948569,Very Low,450.416261042734050,0.000012245402854,93.065061690637506,6.963863537543665,550.445186270915201,5.267442682589984,Very Low,6.189718555343104,Relatively Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.014492753623285,799747000.000000000000000,5154.000000000000000,39170400000.000000000000000,979196.950329917133786,39971126196.950332641601562,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,295.961517869281579,0.000024473171696,185.996104891252116,3.492180988011531,485.449803748545207,3.191570615638252,Very Low,4.778707677777075,Very Low,0.000000000000000,0.014890000000000,799747000.000000000000000,5154.000000000000000,39170400000.000000000000000,39970147000.000000000000000,0.000005888299321,0.000001361000000,Very Low,70.119239287198909,0.000104447304660,793.799515415999963,863.918754703199170,12.985434587044697,Relatively Low,11.810697013467241,Relatively Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,142.000000000000000,5.916666666000000,23918829.410999175161123,78.826635463615631,599082429.523478865623474,2344.763302550219578,623003603.697780609130859,0.000624504383719,0.000003832719626,0.000349248462208,Very Low,88379.698428539355518,0.001787545656970,13585.346992974293244,4.845187783922944,101969.890609297566698,21.097356967605425,Relatively Moderate,21.834615010201723,Relatively High,1.000000000000000,0.031250000000209,799747000.000000000000000,5154.000000000000000,39170400000.000000000000000,979196.950329917133786,39971126196.950332641601562,0.000008360074880,0.000000310246591,0.000621258458489,Very Low,208.935775165477622,0.000049969091611,379.765096245547738,19.010449622462513,607.711321033487479,8.173423312235110,Very Low,10.292246576095293,Very Low,0.000000000000000,0.000133248077586,799747000.000000000000000,5154.000000000000000,39170400000.000000000000000,979196.950329917017370,39971126196.950332641601562,0.002856235467097,0.000001904439881,0.000671495705806,Very Low,304.374019363990215,0.000001307894260,9.939996372482458,0.087614148387485,314.401629884860142,4.844461701505872,Very Low,6.321125157353037,Very Low,11.000000000000000,0.050237486000000,221010989.943389236927032,956.072255360619465,7266149140.740707397460938,7487160130.684096336364746,0.000665459771009,0.000003873415999,Very Low,7388.624135527940780,0.000186042752209,1413.924916787340635,8802.549052315282097,22.086245414315712,Relatively Moderate,21.422952923589879,Relatively High,4.000000000000000,0.020278301774718,799720520.069926261901855,5153.636886489921380,39167640337.323402404785156,39967360857.393333435058594,0.000000007027667,0.000004004334439,Very Low,0.113256758720951,0.000417838842994,3175.575206756054740,3175.688463514774867,16.978674873397210,Relatively Low,18.686876158010804,Relatively Low,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +38,T15003010100,Hawaii,HI,15,Honolulu,County,003,15003,010100,15003010100,7881,844170000.000000000000000,6510793.174941881559789,30.206835144352027,17.902359343351037,Relatively Low,62.296704656374160,62.576687116564422,20.189941869162094,Relatively Moderate,67.065810638034620,79.141104294478524,414254.411840239656158,357290.398057254380547,0.006657244672445,50595.059510578772461,6368.954272406515884,28.335438888266989,Relatively Low,17.496511914206771,21.082621082621085,-2.225000000000000,51.402797999999997,Relatively Low,13.649379573655743,60.000000000000000,2.570139900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012000000,108722387.396586894989014,1015.010169838422826,7714077290.772013664245605,7822799678.168600082397461,0.000021796961511,0.000000001599545,Very Low,165.818542265927704,0.000000113601740,0.863373220396480,166.681915486324158,1.813994664634754,Very Low,1.608061248555368,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000408980651,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.003102186719976,844170000.000000000000000,7881.000000000000000,59895600000.000000000000000,60739770000.000000000000000,0.016750762052542,0.000139798843457,Very Low,271131.700000000011642,0.006141370000000,46674.412000000003900,317806.112000000022817,28.259382439194308,Relatively High,28.256670500032669,Relatively Moderate,1.000000000000000,0.031250000000000,844170000.000000000000000,7881.000000000000000,59895600000.000000000000000,6510793.174941878765821,60746280793.174942016601562,0.000018022350010,0.000000021006339,0.000227577948569,Very Low,475.435225245539868,0.000005173467501,39.318353005533737,46.303529822258511,561.057108073332415,5.301077442462884,Very Low,5.012796166784319,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.014492753623188,844170000.000000000000000,7881.000000000000000,59895600000.000000000000000,6510793.174941878765821,60746280793.174942016601562,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,312.401090019357696,0.000037422015161,284.407315220791247,23.219913148980517,620.028318389129822,3.462795595409036,Very Low,4.172320639486599,Very Low,0.000000000000000,0.014890000000000,844170000.000000000000000,7881.000000000000000,59895600000.000000000000000,60739770000.000000000000000,0.000005888299321,0.000000264000000,Very Low,74.014104746969579,0.000030979895760,235.447207775999914,309.461312522969649,9.222195174604400,Very Low,6.749912790712203,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.000000000000000,6.375000000000000,144063515.186520278453827,1085.261530904376514,8247987634.873261451721191,1740883.876367698423564,8393792033.936150550842285,0.000067892077568,0.000000058503599,0.000567088799505,Very Low,62352.417342258144345,0.000404759620632,3076.173116799661784,6293.627890487755394,71722.218349545568344,18.762410689373279,Relatively Moderate,15.626112207015122,Relatively Moderate,1.000000000000000,0.031250000000000,844170000.000000000000000,7881.000000000000000,59895600000.000000000000000,6510793.174941878765821,60746280793.174942016601562,0.000000227257356,0.000000116345733,0.000021953615106,Very Low,5.995120071841780,0.000028653772555,217.768671421087532,4.466732731109141,228.230524224038390,5.896977342826187,Very Low,5.975585464623614,Very Low,0.000000000000000,0.000808995386521,844170000.000000000000000,7881.000000000000000,59895600000.000000000000000,6510793.174941881559789,60746280793.174942016601562,0.001079056813439,0.000000719478087,0.000253684272495,Very Low,736.919876220111291,0.000004587171142,34.862500682653717,1.336206216411970,773.118583119176947,6.538818781851006,Very Low,6.865896389928389,Very Low,6.000000000000000,0.027402265000000,515711432.166720151901245,4182.421372780729143,31786402433.133541107177734,32302113865.300262451171875,0.001559313957881,0.000000036516950,Very Low,22035.696756426426873,0.000004185127954,31.806972452643809,22067.503728879059054,30.003377423043563,Relatively High,23.419218469920569,Relatively High,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.047775264838299,0.000109593070989,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +39,T15003010202,Hawaii,HI,15,Honolulu,County,003,15003,010202,15003010202,7643,654554000.000000000000000,1559566.800123449182138,12.872369636396000,19.940523182767549,Relatively Moderate,71.183271697438784,73.619631901840492,22.065082466554593,Relatively Moderate,75.222370392774167,83.435582822085891,540727.679742837906815,458981.691024304367602,0.010404595025688,79074.922195232327795,2671.066523301181405,28.879151807845453,Relatively Low,21.410007386534620,26.210826210826209,-1.885000000000000,51.402797999999997,Relatively Low,13.649379573655743,60.000000000000000,2.570139900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012000000,149406920.222581684589386,1744.572779726641102,13258753125.922473907470703,13408160046.145055770874023,0.000046364051294,0.000000005724232,Very Low,484.696904829492951,0.000000698754288,5.310532591429184,490.007437420922031,2.598607784492192,Very Low,2.347803825505039,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000408980651,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.003412768920564,654554000.000000000000000,7643.000000000000000,58086800000.000000000000000,58741354000.000000000000000,0.016750762052542,0.000139798843457,Very Low,247080.500000000000000,0.008315460000000,63197.495999999999185,310277.996000000042841,28.034463178195310,Relatively High,28.569658864604524,Relatively High,1.000000000000000,0.031250000000000,654554000.000000000000000,7643.000000000000000,58086800000.000000000000000,1559566.800123448949307,58742913566.800125122070312,0.000018022350010,0.000000021006339,0.000227577948569,Very Low,368.643790261877655,0.000005017232852,38.130969676601261,11.091344157152564,417.866104095631442,4.805156171977799,Very Low,4.631033191719427,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.014492753623188,654554000.000000000000000,7643.000000000000000,58086800000.000000000000000,1559566.800123448949307,58742913566.800125122070312,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,242.230099478222115,0.000036291899743,275.818438044982656,5.561996008147382,523.610533531352075,3.273098985886078,Very Low,4.019429810656826,Very Low,0.000000000000000,0.014890000000000,654554000.000000000000000,7643.000000000000000,58086800000.000000000000000,58741354000.000000000000000,0.000005888299321,0.000000264000000,Very Low,57.389185020254189,0.000030044327280,228.336887327999989,285.726072348254093,8.980120106124904,Very Low,6.698853616152112,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.000000000000000,6.375000000000000,435262433.149290740489960,5305.699687686619654,40323317626.418304443359375,733854.200665267999284,40759313913.768272399902344,0.000067892077568,0.000000058503599,0.000567088799505,Very Low,188386.801821358822053,0.001978816102496,15039.002378968525591,2653.023172628325028,206078.827372955682222,26.673613761980747,Relatively High,22.641158689627762,Relatively High,1.000000000000000,0.031250000000000,654554000.000000000000000,7643.000000000000000,58086800000.000000000000000,1559566.800123448949307,58742913566.800125122070312,0.000000227257356,0.000000116345733,0.000021953615106,Very Low,4.648506608271229,0.000027788451166,211.192228863262471,1.069941539423074,216.910677010956732,5.797826209243441,Very Low,5.987846879202477,Very Low,0.000000000000000,0.000334629448648,654554000.000000000000000,7643.000000000000000,58086800000.000000000000000,1559566.800123449182138,58742913566.800125122070312,0.002608712375414,0.000001739399970,0.000613303482137,Very Low,571.394212847387962,0.000004448642183,33.809680588443449,0.320068968133561,605.523962403965015,6.027368008556740,Very Low,6.450255993694561,Very Low,6.000000000000000,0.027402265000000,509853307.495497524738312,6025.716242558999511,45795443443.448394775390625,46305296750.943893432617188,0.001559313957881,0.000000036516950,Very Low,21785.386503900022944,0.000006029615680,45.825079171086799,21831.211583071093628,29.895903881448334,Relatively High,23.783098318049483,Relatively High,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.047775264838299,0.000109593070989,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +40,T15003000114,Hawaii,HI,15,Honolulu,County,003,15003,000114,15003000114,1594,256337000.000000000000000,0.000000000000000,0.473366071326000,11.570031440725387,Very Low,25.575001031083737,13.496932515337424,13.002441632550637,Very Low,27.077633731560784,15.337423312883436,110646.243904659000691,96129.447132592991693,0.001910104838430,14516.796772066001722,0.000000000000000,28.436185693953593,Relatively Low,18.169507290783248,21.367521367521366,-2.162000000000000,51.402797999999997,Relatively Low,13.649379573655743,60.000000000000000,2.570139900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.067971012000000,45060581.761632643640041,280.203666766960794,2129547867.428902149200439,2174608449.190534591674805,0.000022387353839,0.000000002291360,Very Low,68.568286067599772,0.000000043640626,0.331668756012316,68.899954823612077,1.351282513879071,Very Low,1.202137474137801,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,287.000000000000000,15.944444444000000,0.000000000000000,0.000000000000000,0.000000408980651,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.003544882574584,256337000.000000000000000,1594.000000000000000,12114400000.000000000000000,12370737000.000000000000000,0.016750762052542,0.000139798843457,Very Low,78176.599999999991269,0.001814990000000,13793.924000000000888,91970.523999999990338,18.692101848845603,Relatively Moderate,18.756761534067007,Relatively Moderate,1.000000000000000,0.031250000000000,256337000.000000000000000,1594.000000000000000,12114400000.000000000000000,0.000000000000000,12370737000.000000000000000,0.000018022350010,0.000000021006339,0.000227577948569,Very Low,144.368597952741794,0.000001046378276,7.952474900497500,0.000000000000000,152.321072853239286,3.432536171847091,Very Low,3.257409937102621,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010000000000000,256337000.000000000000000,1594.000000000000000,12114400000.000000000000000,0.000000000000000,12370737000.000000000000000,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,65.455028212897375,0.000005222557746,39.691438868003999,0.000000000000000,105.146467080901360,1.916701912988008,Very Low,2.317644355371363,Very Low,0.000000000000000,0.014890000000000,256337000.000000000000000,1594.000000000000000,12114400000.000000000000000,12370737000.000000000000000,0.000005888299321,0.000000264000000,Very Low,22.474801957572467,0.000006265950240,47.621221823999988,70.096023781572470,5.621643691273539,Very Low,4.129225172255039,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.000000000000000,6.375000000000000,31810533.451878178864717,201.194062054348024,1529074871.613044977188110,0.000000000000000,1560885405.064923286437988,0.000067892077568,0.000000058503599,0.000567088799505,Very Low,13767.980429349958285,0.000075037426382,570.284440503070755,0.000000000000000,14338.264869853028358,10.970748681920853,Relatively Low,9.169379861086821,Relatively Low,1.000000000000000,0.031250000000000,256337000.000000000000000,1594.000000000000000,12114400000.000000000000000,0.000000000000000,12370737000.000000000000000,0.000000227257356,0.000000116345733,0.000021953615106,Very Low,1.820452152831428,0.000005795471825,44.045585870475001,0.000000000000000,45.866038023306423,3.454103065360086,Very Low,3.512591879186449,Very Low,0.000000000000000,0.000020368996214,256337000.000000000000000,1594.000000000000000,12114400000.000000000000000,0.000000000000000,12370737000.000000000000000,0.054082356826708,0.000036060261263,0.031480112893677,Very Low,282.381690615439879,0.000001170811052,8.898163997535704,0.000000000000000,291.279854612975555,4.722667973891760,Very Low,4.976315979989992,Very Low,5.000000000000000,0.022835221000000,101097246.515340715646744,638.709404518414999,4854191474.339953422546387,4955288720.855295181274414,0.001559313957881,0.000000036516950,Very Low,3599.797846283954641,0.000000532602282,4.047777346405569,3603.845623630360024,16.399897560451958,Relatively Moderate,12.846498954798852,Relatively Moderate,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.047775264838299,0.000109593070989,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +41,T15003000301,Hawaii,HI,15,Honolulu,County,003,15003,000301,15003000301,3307,448705000.000000000000000,0.000000000000000,3.265274652652001,14.956606490056835,Relatively Low,46.961052530279488,36.196319018404907,15.502976189086411,Relatively Low,42.645623393227844,39.877300613496928,187545.728333650738932,159140.823666643234901,0.003737487456185,28404.904667007514945,0.000000000000000,30.830121695744644,Relatively Low,39.397587065357150,39.886039886039889,-0.665000000000000,51.402797999999997,Relatively Low,13.649379573655743,60.000000000000000,2.570139900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.045478259000000,25555924.556268148124218,188.349678536184712,1431457556.875003814697266,1457013481.431271791458130,0.000012744098242,0.000000001218644,Very Low,14.811687435028247,0.000000010438677,0.079333944464205,14.891021379492454,0.810926215027675,Very Low,0.782155703168405,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,287.000000000000000,15.944444444000000,0.000000000000000,0.000000000000000,0.000000408980651,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.003251899139081,448705000.000000000000000,3307.000000000000000,25133200000.000000000000000,25581905000.000000000000000,0.016750762052542,0.000139798843457,Very Low,137822.200000000011642,0.003557650000000,27038.139999999999418,164860.339999999996508,22.706349353067552,Relatively Moderate,24.703070123865068,Relatively Moderate,1.000000000000000,0.031250000000000,448705000.000000000000000,3307.000000000000000,25133200000.000000000000000,0.000000000000000,25581905000.000000000000000,0.000018022350010,0.000000021006339,0.000227577948569,Very Low,252.709955037255696,0.000002170873877,16.498641465461255,0.000000000000000,269.208596502716887,4.150095594372437,Very Low,4.269915615252112,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010000000000000,448705000.000000000000000,3307.000000000000000,25133200000.000000000000000,0.000000000000000,25581905000.000000000000000,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,114.575728179186441,0.000010835005311,82.346040361662020,0.000000000000000,196.921768540848404,2.362585806015883,Very Low,3.097303087516160,Very Low,0.000000000000000,0.014890000000000,448705000.000000000000000,3307.000000000000000,25133200000.000000000000000,25581905000.000000000000000,0.000005888299321,0.000000264000000,Very Low,39.341008174288355,0.000012999684720,98.797603871999996,138.138612046288387,7.048075551737015,Very Low,5.612801696111217,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.000000000000000,6.375000000000000,43472034.288519248366356,372.960493362193915,2834499749.552673816680908,0.000000000000000,2877971783.841192722320557,0.000067892077568,0.000000058503599,0.000567088799505,Very Low,18815.217865295660886,0.000139099510583,1057.156280434129712,0.000000000000000,19872.374145729787415,12.231714015870239,Relatively Low,11.083959091764289,Relatively Low,1.000000000000000,0.031250000000000,448705000.000000000000000,3307.000000000000000,25133200000.000000000000000,0.000000000000000,25581905000.000000000000000,0.000000227257356,0.000000116345733,0.000021953615106,Very Low,3.186609749026579,0.000012023604345,91.379393019862491,0.000000000000000,94.566002768889106,4.396258563220638,Very Low,4.847072609083112,Very Low,0.000000000000000,0.000089199274007,448705000.000000000000000,3307.000000000000000,25133200000.000000000000000,0.000000000000000,25581905000.000000000000000,0.012349913536070,0.000008234498916,0.031480112893677,Very Low,494.294918359819405,0.000002429028952,18.460620037547425,0.000000000000000,512.755538397366877,5.702352371448767,Very Low,6.514702976507859,Very Low,5.000000000000000,0.022835221000000,44498932.414471402764320,322.962662012132057,2454516231.292203426361084,2499015163.706675052642822,0.001559313957881,0.000000036516950,Very Low,1584.485894412982816,0.000000269309720,2.046753872386196,1586.532648285368850,12.475809849730620,Relatively Moderate,10.595374088349782,Relatively Moderate,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.047775264838299,0.000109593070989,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +42,T15003000401,Hawaii,HI,15,Honolulu,County,003,15003,000401,15003000401,2893,351046000.000000000000000,0.000000000000000,2.384975220120000,14.181763316421074,Relatively Low,42.311552262197722,28.527607361963192,14.309443209884281,Relatively Low,35.297433288882168,26.380368098159508,147478.986023213365115,127735.041033475004951,0.002597887498650,19743.944989738356526,0.000000000000000,31.671277565445443,Relatively Moderate,48.604765682707303,51.282051282051277,-0.139000000000000,51.402797999999997,Relatively Low,13.649379573655743,60.000000000000000,2.570139900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.002000000000000,6908402.002621479332447,56.932729595505833,432688744.925844311714172,439597146.928465783596039,0.000071135073337,0.000000004997791,Very Low,0.982859366193614,0.000000000569076,0.004324975761332,0.987184341954946,0.328200519309842,Very Low,0.325193220831781,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,287.000000000000000,15.944444444000000,0.000000000000000,0.000000000000000,0.000000408980651,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.003007919618688,351046000.000000000000000,2893.000000000000000,21986800000.000000000000000,22337846000.000000000000000,0.016750762052542,0.000139798843457,Very Low,124594.099999999991269,0.002547220000000,19358.872000000003027,143952.971999999979744,21.702784778405032,Relatively Moderate,24.255454827633010,Relatively Moderate,1.000000000000000,0.031250000000309,351046000.000000000000000,2893.000000000000000,21986800000.000000000000000,0.000000000000000,22337846000.000000000000000,0.000018022350010,0.000000021006339,0.000227577948569,Very Low,197.708558800564305,0.000001899104362,14.433193153896106,0.000000000000000,212.141751954460375,3.833279702746033,Very Low,4.051557854198320,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010000000000000,351046000.000000000000000,2893.000000000000000,21986800000.000000000000000,0.000000000000000,22337846000.000000000000000,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,89.638740540869136,0.000009478581906,72.037222487538003,0.000000000000000,161.675963028407153,2.212270187408680,Very Low,2.979371267533782,Very Low,0.000000000000000,0.014890000000000,351046000.000000000000000,2893.000000000000000,21986800000.000000000000000,22337846000.000000000000000,0.000005888299321,0.000000264000000,Very Low,30.778581820018122,0.000011372267280,86.429231328000000,117.207813148018090,6.672435369313861,Very Low,5.458632630096177,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.000000000000000,6.375000000000000,5598483.872821221128106,40.869767692973575,310610234.466599166393280,0.000000000000000,316208718.339420378208160,0.000067892077568,0.000000058503599,0.000567088799505,Very Low,2423.090971160150275,0.000015242806638,115.845330445100032,0.000000000000000,2538.936301605250719,6.160576219993541,Relatively Low,5.734813174773690,Relatively Low,1.000000000000000,0.031250000000309,351046000.000000000000000,2893.000000000000000,21986800000.000000000000000,0.000000000000000,22337846000.000000000000000,0.000000227257356,0.000000116345733,0.000021953615106,Very Low,2.493055807188095,0.000010518381424,79.939698823232106,0.000000000000000,82.432754630420220,4.199569962966547,Very Low,4.756543386045603,Very Low,0.000000000000000,0.000066070661293,351046000.000000000000000,2893.000000000000000,21986800000.000000000000000,0.000000000000000,22337846000.000000000000000,0.016908301881181,0.000011273875976,0.031480112893677,Very Low,392.168471568301129,0.000002154915972,16.377361387166292,0.000000000000000,408.545832955467404,5.286450771827080,Very Low,6.204295772038179,Very Low,0.000000000000000,0.004587000000000,570395.344518110039644,5.205820224404740,39564233.705476030707359,40134629.049994140863419,0.001559313957881,0.000000036516950,Very Low,4.079794411711355,0.000000000871992,0.006627137661135,4.086421549372490,1.710147084078244,Very Low,1.492008700373049,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.047775264838299,0.000109593070989,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +43,T15003000500,Hawaii,HI,15,Honolulu,County,003,15003,000500,15003000500,3807,768658000.000000000000000,0.000000000000000,1.112032833606001,20.332352607965237,Relatively Moderate,72.856376909223385,76.073619631901849,21.735573839164154,Relatively Moderate,73.872338085483719,82.208588957055213,516862.790728118794505,477082.147077328583691,0.005234295217209,39780.643650790210813,0.000000000000000,29.893016487294705,Relatively Low,30.028998987771182,33.618233618233617,-1.251000000000000,51.402797999999997,Relatively Low,13.649379573655743,60.000000000000000,2.570139900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012000000,360125556.273828864097595,1783.625478085788700,13555553633.451993942260742,13915679189.725824356079102,0.000030458979753,0.000000003549285,Very Low,767.516020861811512,0.000000442958162,3.366482028907202,770.882502890719024,3.022288420950092,Very Low,2.826456370747822,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,287.000000000000000,15.944444444000000,0.000000000000000,0.000000000000000,0.000000408980651,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.002971023011309,768658000.000000000000000,3807.000000000000000,28933200000.000000000000000,29701858000.000000000000000,0.016750762052542,0.000139798843457,Very Low,330555.299999999988358,0.004623700000000,35140.119999999995343,365695.420000000041910,29.612955830074625,Relatively High,31.237759517378130,Relatively High,1.000000000000000,0.031250000000976,768658000.000000000000000,3807.000000000000000,28933200000.000000000000000,0.000000000000000,29701858000.000000000000000,0.000018022350010,0.000000021006339,0.000227577948569,Very Low,432.906984820913465,0.000002499097929,18.993144258274704,0.000000000000000,451.900129079188275,4.932221980616828,Very Low,4.920376195990795,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010000000000000,768658000.000000000000000,3807.000000000000000,28933200000.000000000000000,0.000000000000000,29701858000.000000000000000,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,196.274946949013525,0.000012473197828,94.796303494662027,0.000000000000000,291.071250443675524,2.691262862711961,Very Low,3.420950074642361,Very Low,0.000000000000000,0.014890000000000,768658000.000000000000000,3807.000000000000000,28933200000.000000000000000,29701858000.000000000000000,0.000005888299321,0.000000264000000,Very Low,67.393455970475330,0.000014965164720,113.735251872000006,181.128707842475336,7.714266139167226,Very Low,5.956597682111559,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.000000000000000,6.375000000000000,310362683.770597100257874,1505.340754926267664,11440589737.439634323120117,0.000000000000000,11750952421.210231781005859,0.000067892077568,0.000000058503599,0.000567088799505,Very Low,134328.692180477053626,0.000561432553845,4266.887409220355948,0.000000000000000,138595.579589697415940,23.369738872964604,Relatively High,20.533167887099033,Relatively High,1.000000000000000,0.031250000000976,768658000.000000000000000,3807.000000000000000,28933200000.000000000000000,0.000000000000000,29701858000.000000000000000,0.000000227257356,0.000000116345733,0.000021953615106,Very Low,5.458849525926476,0.000013841506424,105.195448818810192,0.000000000000000,110.654298344736645,4.632630329154257,Very Low,4.952431154635641,Very Low,0.000000000000000,0.000050672617788,768658000.000000000000000,3807.000000000000000,28933200000.000000000000000,0.000000000000000,29701858000.000000000000000,0.026708703541448,0.000017808447786,0.031480112893677,Very Low,1040.301680449913420,0.000003435439343,26.109339009469977,0.000000000000000,1066.411019459383397,7.278783556876060,Very Low,8.063134448002653,Very Low,3.000000000000000,0.013701132000000,453479536.539123833179474,3008.651031315648652,22865747837.998931884765625,23319227374.538051605224609,0.001559313957881,0.000000036516950,Very Low,9688.302958273523473,0.000001505298959,11.440272087742994,9699.743230361262249,22.812479327522457,Relatively Moderate,18.785144447799102,Relatively Moderate,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.047775264838299,0.000109593070989,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +44,T15003001100,Hawaii,HI,15,Honolulu,County,003,15003,001100,15003001100,3862,219684000.000000000000000,0.000000000000000,0.319322956386000,14.853446127506061,Relatively Low,46.324530169510162,35.582822085889568,12.986544852705199,Very Low,26.978649692737044,14.417177914110429,110240.911709566149511,78625.488266191241564,0.004159924137286,31615.423443374911585,0.000000000000000,36.550301440839235,Relatively High,89.768281673186877,89.743589743589752,2.912000000000000,51.402797999999997,Relatively Low,13.649379573655743,60.000000000000000,2.570139900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000047845109139,0.000000004844912,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,287.000000000000000,15.944444444000000,0.000000000000000,0.000000000000000,0.000000408980651,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.002980735000880,219684000.000000000000000,3862.000000000000000,29351200000.000000000000000,29570884000.000000000000000,0.016750762052542,0.000139798843457,Very Low,78161.000000000000000,0.004112420000000,31254.392000000003463,109415.391999999992549,19.806210571473649,Relatively Moderate,25.545871996893208,Relatively Moderate,1.000000000000000,0.031250000002306,219684000.000000000000000,3862.000000000000000,29351200000.000000000000000,0.000000000000000,29570884000.000000000000000,0.000018022350010,0.000000021006339,0.000227577948569,Very Low,123.725685619995431,0.000002535202574,19.267539565938034,0.000000000000000,142.993225185933483,3.360987880375306,Very Low,4.099622446018152,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010000000000000,219684000.000000000000000,3862.000000000000000,29351200000.000000000000000,0.000000000000000,29570884000.000000000000000,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,56.095773992526041,0.000012653399005,96.165832439291989,0.000000000000000,152.261606431818024,2.168468663134027,Very Low,3.370272288594906,Very Low,0.000000000000000,0.014890000000000,219684000.000000000000000,3862.000000000000000,29351200000.000000000000000,29570884000.000000000000000,0.000005888299321,0.000000264000000,Very Low,19.261185054234655,0.000015181367520,115.378393151999973,134.639578206234688,6.988056949333552,Very Low,6.597528992844986,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000067892077568,0.000000058503599,0.000567088799505,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,1.000000000000000,0.031250000002306,219684000.000000000000000,3862.000000000000000,29351200000.000000000000000,0.000000000000000,29570884000.000000000000000,0.000000227257356,0.000000116345733,0.000021953615106,Very Low,1.560150156900430,0.000014041475653,106.715214959208140,0.000000000000000,108.275365116108588,4.599190891267872,Very Low,6.011646814712222,Very Low,0.000000000000000,0.000009510516026,219684000.000000000000000,3862.000000000000000,29351200000.000000000000000,0.000000000000000,29570884000.000000000000000,0.126283652659525,0.000084201609829,0.031480112893677,Very Low,263.845471367590619,0.000003092692534,23.504463258467620,0.000000000000000,287.349934626058257,4.701332470264026,Very Low,6.367604078157518,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.001559313957881,0.000000036516950,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.047775264838299,0.000109593070989,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +45,T15003001400,Hawaii,HI,15,Honolulu,County,003,15003,001400,15003001400,2550,280795000.000000000000000,0.000000000000000,0.194857185156000,13.078143223495839,Relatively Low,35.395042549388911,23.006134969325153,12.358507635551881,Very Low,23.189760651095011,12.883435582822086,95007.967535939533263,78209.030212265861337,0.002210386489957,16798.937323673668288,0.000000000000000,33.817344442134548,Relatively Moderate,71.538587804010618,69.800569800569804,1.203000000000000,51.402797999999997,Relatively Low,13.649379573655743,60.000000000000000,2.570139900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000047845109139,0.000000004844912,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,287.000000000000000,15.944444444000000,0.000000000000000,0.000000000000000,0.000000408980651,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.002940859000000,280795000.000000000000000,2550.000000000000000,19380000000.000000000000000,19660795000.000000000000000,0.016750762052542,0.000139798843457,Very Low,77555.800000000002910,0.002178660000000,16557.815999999998894,94113.616000000009080,18.836175945085980,Relatively Moderate,22.478152645037824,Relatively Moderate,1.000000000000000,0.031250000000000,280795000.000000000000000,2550.000000000000000,19380000000.000000000000000,0.000000000000000,19660795000.000000000000000,0.000018022350010,0.000000021006339,0.000227577948569,Very Low,158.143305344683455,0.000001673942663,12.721964238562499,0.000000000000000,170.865269583245976,3.566534186358297,Very Low,4.025055239936142,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010000000000000,280795000.000000000000000,2550.000000000000000,19380000000.000000000000000,0.000000000000000,19660795000.000000000000000,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,71.700318904569045,0.000008354781839,63.496341978299995,0.000000000000000,135.196660882869082,2.084226930331074,Very Low,2.997128614604653,Very Low,0.000000000000000,0.014890000000000,280795000.000000000000000,2550.000000000000000,19380000000.000000000000000,19660795000.000000000000000,0.000005888299321,0.000000264000000,Very Low,24.619200566740503,0.000010023948000,76.182004799999987,100.801205366740518,6.345328295472169,Very Low,5.542778277859929,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000067892077568,0.000000058503599,0.000567088799505,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,1.000000000000000,0.031250000000000,280795000.000000000000000,2550.000000000000000,19380000000.000000000000000,0.000000000000000,19660795000.000000000000000,0.000000227257356,0.000000116345733,0.000021953615106,Very Low,1.994147790815610,0.000009271300598,70.461884548125013,0.000000000000000,72.456032338940602,4.022811960987668,Very Low,4.865083437405572,Very Low,0.000000000000000,0.000010552757401,280795000.000000000000000,2550.000000000000000,19380000000.000000000000000,0.000000000000000,19660795000.000000000000000,0.133901995467274,0.000089281259611,0.031480112893677,Very Low,396.773239659057140,0.000002402516856,18.259128108682614,0.000000000000000,415.032367767739800,5.314281881331659,Very Low,6.659636942613494,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.001559313957881,0.000000036516950,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.047775264838299,0.000109593070989,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +46,T15003001901,Hawaii,HI,15,Honolulu,County,003,15003,001901,15003001901,837,1117472000.000000000000000,0.000000000000000,0.328277433970000,30.703348019074941,Relatively High,95.512723573323797,89.877300613496942,27.128678208244317,Relatively High,89.339968930010045,89.877300613496942,1004957.832085290225223,995747.395139887579717,0.001211899598079,9210.436945402680067,0.000000000000000,36.166504085842668,Relatively High,88.078953847837383,88.319088319088323,2.672000000000000,51.402797999999997,Relatively Low,13.649379573655743,60.000000000000000,2.570139900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.069971012000000,905020382.297171831130981,677.871177069969349,5151820945.731767654418945,6056841328.028939247131348,0.000036651799839,0.000000004609233,Very Low,2320.982263074510684,0.000000218622083,1.661527834553728,2322.643790909064592,4.365165503499579,Relatively Low,4.939055231774015,Relatively Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,154.000000000000000,8.555555555000000,0.000000000000000,0.000000000000000,0.000000408980651,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.006564019793434,1117472000.000000000000000,837.000000000000000,6361200000.000000000000000,7478672000.000000000000000,0.016750762052542,0.000139798843457,Very Low,577071.699999999953434,0.000940110000000,7144.835999999999331,584216.535999999963678,34.617832072608522,Relatively High,44.180921991769054,Very High,1.000000000000000,0.031250000000000,1117472000.000000000000000,837.000000000000000,6361200000.000000000000000,0.000000000000000,7478672000.000000000000000,0.000018022350010,0.000000021006339,0.000227577948569,Very Low,629.358484695717834,0.000000549447062,4.175797673598750,0.000000000000000,633.534282369316657,5.520162122509880,Very Low,6.662608840841392,Relatively Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010000000000000,1117472000.000000000000000,837.000000000000000,6361200000.000000000000000,0.000000000000000,7478672000.000000000000000,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,285.343751729648261,0.000002742334274,20.841740484642006,0.000000000000000,306.185492214290264,2.737061469299798,Very Low,4.209320147775486,Very Low,0.000000000000000,0.014890000000000,1117472000.000000000000000,837.000000000000000,6361200000.000000000000000,7478672000.000000000000000,0.000005888299321,0.000000264000000,Very Low,97.976343224475684,0.000003290213520,25.005622751999997,122.981965976475678,6.780254546427651,Very Low,6.334122211857859,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.000000000000000,6.375000000000000,870614950.654952287673950,698.418722255162038,5307982289.139231681823730,0.000000000000000,6178597239.794183731079102,0.000067892077568,0.000000058503599,0.000567088799505,Very Low,376812.593232671672013,0.000260482555598,1979.667422543333487,0.000000000000000,378792.260655215010047,32.674160078850761,Relatively High,34.733081895462583,Very High,1.000000000000000,0.031250000000000,1117472000.000000000000000,837.000000000000000,6361200000.000000000000000,0.000000000000000,7478672000.000000000000000,0.000000227257356,0.000000116345733,0.000021953615106,Very Low,7.936054132368101,0.000003043168079,23.128077398737506,0.000000000000000,31.064131531105598,3.033364654991821,Very Low,3.923306270681757,Very Low,0.000000000000000,0.000023559341670,1117472000.000000000000000,837.000000000000000,6361200000.000000000000000,0.000000000000000,7478672000.000000000000000,0.059977706228909,0.000039991078117,0.031480112893677,Relatively Low,1579.027353294345630,0.000000788590827,5.993290285085235,0.000000000000000,1585.020643579430953,8.306707247350300,Very Low,11.133261787462279,Very Low,5.000000000000000,0.022835221000000,1037497917.956459283828735,809.076377080774023,6148980465.813882827758789,7186478383.770341873168945,0.001559313957881,0.000000036516950,Relatively Low,36942.477657064824598,0.000000674666636,5.127466430729572,36947.605123495559383,35.627157479002214,Relatively High,35.494414252593117,Relatively High,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.047775264838299,0.000109593070989,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +47,T15003001904,Hawaii,HI,15,Honolulu,County,003,15003,001904,15003001904,3912,544584000.000000000000000,0.000000000000000,0.044551151474000,20.523232890047609,Relatively Moderate,73.615254540205385,76.380368098159508,21.178278321163770,Relatively Moderate,71.503595045298951,80.981595092024534,478116.675540232739877,435047.883100565115456,0.005666946373640,43068.792439667631697,0.000000000000000,30.967649081285074,Relatively Low,40.813339534374741,42.165242165242169,-0.579000000000000,51.402797999999997,Relatively Low,13.649379573655743,60.000000000000000,2.570139900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.057971012000000,538132301.355703830718994,3865.654449825028678,29378973818.670215606689453,29917106120.025920867919922,0.000046441092961,0.000000004688820,Very Low,1448.779777260998571,0.000001050745424,7.985665223629241,1456.765442484627556,3.736540736013321,Relatively Low,3.620050220328471,Relatively Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,154.000000000000000,8.555555555000000,0.000000000000000,0.000000000000000,0.000000408980651,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.007598724000000,544584000.000000000000000,3912.000000000000000,29731200000.000000000000000,30275784000.000000000000000,0.016750762052542,0.000139798843457,Very Low,200288.099999999976717,0.004206720000000,31971.072000000000116,232259.171999999991385,25.454596059674540,Relatively High,27.816521719944355,Relatively Moderate,1.000000000000000,0.031250000000000,544584000.000000000000000,3912.000000000000000,29731200000.000000000000000,0.000000000000000,30275784000.000000000000000,0.000018022350010,0.000000021006339,0.000227577948569,Very Low,306.708858055980670,0.000002568024979,19.516989843630000,0.000000000000000,326.225847899610756,4.424537857385013,Very Low,4.572588346613365,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010000000000000,544584000.000000000000000,3912.000000000000000,29731200000.000000000000000,0.000000000000000,30275784000.000000000000000,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,139.058197155668154,0.000012817218257,97.410858752592006,0.000000000000000,236.469055908260117,2.511198946339524,Very Low,3.306817546781156,Very Low,0.000000000000000,0.014890000000000,544584000.000000000000000,3912.000000000000000,29731200000.000000000000000,30275784000.000000000000000,0.000005888299321,0.000000264000000,Very Low,47.747369865694942,0.000015377915520,116.872157951999995,164.619527817694944,7.472386125087848,Very Low,5.977250418441376,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.000000000000000,6.375000000000000,527170866.743660986423492,3780.162392836836261,28729234185.559955596923828,0.000000000000000,29256405052.303615570068359,0.000067892077568,0.000000058503599,0.000567088799505,Very Low,228165.874276517162798,0.001409851038187,10714.867890223180439,0.000000000000000,238880.742166740325047,28.019762294544861,Relatively High,25.503808595362752,Relatively High,1.000000000000000,0.031250000000000,544584000.000000000000000,3912.000000000000000,29731200000.000000000000000,0.000000000000000,30275784000.000000000000000,0.000000227257356,0.000000116345733,0.000021953615106,Very Low,3.867522500448825,0.000014223265859,108.096820530300008,0.000000000000000,111.964343030748836,4.650840673939905,Very Low,5.150634804113468,Very Low,0.000000000000000,0.000010552757401,544584000.000000000000000,3912.000000000000000,29731200000.000000000000000,0.000000000000000,30275784000.000000000000000,0.133901995467274,0.000089281259611,0.031480112893677,Very Low,769.516401454754828,0.000003685743507,28.011650651437787,0.000000000000000,797.528052106192604,6.606923119298186,Very Low,7.581936939368314,Very Low,1.000000000000000,0.004567044000000,544584000.000000000000000,3912.000000000000000,29731200000.000000000000000,30275784000.000000000000000,0.001559313957881,0.000000036516950,Very Low,3878.230697754417633,0.000000652421907,4.958406490862900,3883.189104245280760,16.813130701508964,Relatively Moderate,14.342641233001896,Relatively Moderate,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.047775264838299,0.000109593070989,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +48,T15003002202,Hawaii,HI,15,Honolulu,County,003,15003,002202,15003002202,3400,291464000.000000000000000,0.000000000000000,0.092027411700000,17.034796231862707,Relatively Low,58.036266652002368,54.294478527607360,16.845281199821862,Relatively Low,50.318261180384660,55.828220858895705,240600.614438405755209,206514.828978866251418,0.004484971770992,34085.785459539503790,0.000000000000000,32.315737290710501,Relatively Moderate,55.968046398380430,58.404558404558401,0.264000000000000,51.402797999999997,Relatively Low,13.649379573655743,60.000000000000000,2.570139900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.057971012000000,172542690.386018663644791,2012.753366839347336,15296925587.979038238525391,15469468278.365056991577148,0.000070044798879,0.000000007139411,Very Low,700.621305881587887,0.000000833036139,6.331074659975267,706.952380541563230,2.936318974626325,Very Low,2.968615410383145,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,154.000000000000000,8.555555555000000,0.000000000000000,0.000000000000000,0.000000408980651,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.003975761877260,291464000.000000000000000,3400.000000000000000,25840000000.000000000000000,26131464000.000000000000000,0.016750762052542,0.000139798843457,Very Low,103980.900000000008731,0.003461090000000,26304.283999999999651,130285.184000000008382,20.992955990393792,Relatively Moderate,23.939553215515254,Relatively Moderate,1.000000000000000,0.031250000000000,291464000.000000000000000,3400.000000000000000,25840000000.000000000000000,0.000000000000000,26131464000.000000000000000,0.000018022350010,0.000000021006339,0.000227577948569,Very Low,164.152069477671688,0.000002231923551,16.962618984749998,0.000000000000000,181.114688462421697,3.636467274312445,Very Low,3.921748194526007,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010000000000000,291464000.000000000000000,3400.000000000000000,25840000000.000000000000000,0.000000000000000,26131464000.000000000000000,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,74.424622052391641,0.000011139709119,84.661789304400003,0.000000000000000,159.086411356791672,2.200395305471954,Very Low,3.023678797335211,Very Low,0.000000000000000,0.014890000000000,291464000.000000000000000,3400.000000000000000,25840000000.000000000000000,26131464000.000000000000000,0.000005888299321,0.000000264000000,Very Low,25.554624099376611,0.000013365264000,101.576006399999983,127.130630499376622,6.855654486665439,Very Low,5.722646235647691,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.000000000000000,6.375000000000000,219965392.448138594627380,2625.467844964404321,19953555621.729473114013672,0.000000000000000,20173521014.177612304687500,0.000067892077568,0.000000058503599,0.000567088799505,Very Low,95203.660225994928624,0.000979195648834,7441.886931135552004,0.000000000000000,102645.547157130466076,21.143851734841725,Relatively Moderate,20.083089810228060,Relatively High,1.000000000000000,0.031250000000000,291464000.000000000000000,3400.000000000000000,25840000000.000000000000000,0.000000000000000,26131464000.000000000000000,0.000000227257356,0.000000116345733,0.000021953615106,Very Low,2.069916813697825,0.000012361734131,93.949179397500018,0.000000000000000,96.019096211197819,4.418661719876594,Very Low,5.106529940522043,Very Low,0.000000000000000,0.000010552757401,291464000.000000000000000,3400.000000000000000,25840000000.000000000000000,0.000000000000000,26131464000.000000000000000,0.133901995467274,0.000089281259611,0.031480112893677,Very Low,411.848912993420242,0.000003203355809,24.345504144910151,0.000000000000000,436.194417138330380,5.403111935719465,Very Low,6.470278963965399,Very Low,3.000000000000000,0.013701132000000,278575886.571655213832855,3100.192696285711008,23561464491.771404266357422,23840040378.343059539794922,0.001559313957881,0.000000036516950,Very Low,5951.597301553179932,0.000001551099410,11.788355512414741,5963.385657065594387,19.397691189755481,Relatively Moderate,17.267776505313901,Relatively Moderate,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.047775264838299,0.000109593070989,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +49,T15003002600,Hawaii,HI,15,Honolulu,County,003,15003,002600,15003002600,4249,791449000.000000000000000,0.000000000000000,0.256362075450000,25.653065665589324,Relatively High,88.704821347557711,87.116564417177912,21.120867859564711,Relatively Moderate,71.274007066360539,80.674846625766875,474238.944278784038033,431102.878061861963943,0.005675798186437,43136.066216922059539,0.000000000000000,38.813106679673133,Relatively High,95.929198697781302,94.586894586894587,4.327000000000000,51.402797999999997,Relatively Low,13.649379573655743,60.000000000000000,2.570139900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.043478259000000,206319525.334431082010269,1107.654015793813187,8418170520.032979965209961,8624490045.367410659790039,0.000013547058172,0.000000001702011,Very Low,121.522717024978306,0.000000081966944,0.622948776745204,122.145665801723482,1.635432151832912,Very Low,1.985855182487318,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,154.000000000000000,8.555555555000000,0.000000000000000,0.000000000000000,0.000000408980651,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.003550237504721,791449000.000000000000000,4249.000000000000000,32292400000.000000000000000,33083849000.000000000000000,0.016750762052542,0.000139798843457,Very Low,427356.700000000011642,0.005622600000000,42731.760000000002037,470088.460000000020955,32.198461075888225,Relatively High,44.100335935115240,Very High,1.000000000000000,0.031250000000000,791449000.000000000000000,4249.000000000000000,32292400000.000000000000000,0.000000000000000,33083849000.000000000000000,0.000018022350010,0.000000021006339,0.000227577948569,Very Low,445.742840405792151,0.000002789247990,21.198284725353748,0.000000000000000,466.941125131145839,4.986347036936024,Very Low,6.458725984995830,Relatively Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010000000000000,791449000.000000000000000,4249.000000000000000,32292400000.000000000000000,0.000000000000000,33083849000.000000000000000,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,202.094573253449198,0.000013921360014,105.802336104233987,0.000000000000000,307.896909357683342,2.742151579193816,Very Low,4.525751871891877,Very Low,0.000000000000000,0.014890000000000,791449000.000000000000000,4249.000000000000000,32292400000.000000000000000,33083849000.000000000000000,0.000005888299321,0.000000264000000,Very Low,69.391697392568261,0.000016702649040,126.940132703999979,196.331830096568268,7.924327691252138,Very Low,7.944649485729133,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000067892077568,0.000000058503599,0.000567088799505,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,1.000000000000000,0.031250000000000,791449000.000000000000000,4249.000000000000000,32292400000.000000000000000,0.000000000000000,33083849000.000000000000000,0.000000227257356,0.000000116345733,0.000021953615106,Very Low,5.620706475874653,0.000015448531860,117.408842135287472,0.000000000000000,123.029548611162141,4.799264585369244,Very Low,6.661532615392646,Very Low,0.000000000000000,0.000010552757401,791449000.000000000000000,4249.000000000000000,32292400000.000000000000000,0.000000000000000,33083849000.000000000000000,0.133901995467274,0.000089281259611,0.031480112893677,Relatively Low,1118.345354279531648,0.000004003252597,30.424719738742127,0.000000000000000,1148.770074018273817,7.461537084013737,Very Low,10.732293762269963,Very Low,0.000000000000000,0.004587000000000,249345255.464215487241745,1499.541020185159141,11396511753.407209396362305,11645857008.871425628662109,0.001559313957881,0.000000036516950,Very Low,1783.460173029774523,0.000000251177992,1.908952737687387,1785.369125767462037,12.976624836576413,Relatively Moderate,13.874344185821478,Relatively Moderate,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.047775264838299,0.000109593070989,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +50,T15003002800,Hawaii,HI,15,Honolulu,County,003,15003,002800,15003002800,3678,390551000.000000000000000,0.000000000000000,0.889929974718000,13.276247682964325,Relatively Low,36.743700078362366,24.539877300613497,14.064037133548624,Relatively Low,33.796175366722117,23.926380368098162,140020.605068663397105,112962.045976416862686,0.003560336722664,27058.559092246530781,0.000000000000000,30.166472102729752,Relatively Low,32.637540010395867,35.897435897435898,-1.080000000000000,51.402797999999997,Relatively Low,13.649379573655743,60.000000000000000,2.570139900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000047845109139,0.000000004844912,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,287.000000000000000,15.944444444000000,0.000000000000000,0.000000000000000,0.000000408980651,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.002973850437417,390551000.000000000000000,3678.000000000000000,27952800000.000000000000000,28343351000.000000000000000,0.016750762052542,0.000139798843457,Very Low,110889.300000000002910,0.003506440000000,26648.943999999999505,137538.244000000006054,21.375506298438403,Relatively Moderate,22.754605490663529,Relatively Moderate,1.000000000000000,0.031250000000000,390551000.000000000000000,3678.000000000000000,27952800000.000000000000000,0.000000000000000,28343351000.000000000000000,0.000018022350010,0.000000021006339,0.000227577948569,Very Low,219.957713089251314,0.000002414416123,18.349562537645284,0.000000000000000,238.307275626896626,3.984809460197205,Very Low,4.011603818379190,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010000000000000,390551000.000000000000000,3678.000000000000000,27952800000.000000000000000,0.000000000000000,28343351000.000000000000000,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,99.726246010428767,0.000012050544159,91.584135606347999,0.000000000000000,191.310381616776766,2.339928177904926,Very Low,3.001566203337644,Very Low,0.000000000000000,0.014890000000000,390551000.000000000000000,3678.000000000000000,27952800000.000000000000000,28343351000.000000000000000,0.000005888299321,0.000000264000000,Very Low,34.242252891045325,0.000014458070880,109.881338688000000,144.123591579045325,7.148427994050732,Very Low,5.570176786615552,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.000000000000000,6.375000000000000,2748002.747491579037160,22.238464673140907,169012331.515870898962021,0.000000000000000,171760334.263362497091293,0.000067892077568,0.000000058503599,0.000567088799505,Very Low,1189.368550027573747,0.000008294067622,63.034913924764041,0.000000000000000,1252.403463952337916,4.867644134057248,Very Low,4.315942999031777,Very Low,1.000000000000000,0.031250000000000,390551000.000000000000000,3678.000000000000000,27952800000.000000000000000,0.000000000000000,28343351000.000000000000000,0.000000227257356,0.000000116345733,0.000021953615106,Very Low,2.773612115124101,0.000013372487687,101.630906422218942,0.000000000000000,104.404518537343037,4.543717427294877,Very Low,4.901814786202315,Very Low,0.000000000000000,0.000029760346482,390551000.000000000000000,3678.000000000000000,27952800000.000000000000000,0.000000000000000,28343351000.000000000000000,0.045313656950059,0.000030213592829,0.031480112893677,Very Low,526.677602283436045,0.000003307136193,25.134235067557906,0.000000000000000,551.811837350993983,5.843606114491608,Very Low,6.532372316220178,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.001559313957881,0.000000036516950,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.047775264838299,0.000109593070989,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +51,T15003003000,Hawaii,HI,15,Honolulu,County,003,15003,003000,15003003000,4321,523641000.000000000000000,0.000000000000000,0.575177693808000,14.305890596316724,Relatively Low,43.064930779911734,31.288343558282211,15.912217766117481,Relatively Low,45.063858452824483,44.171779141104295,202793.521994509210344,170878.397220439859666,0.004199358522904,31915.124774069339765,0.000000000000000,28.730430332784284,Relatively Low,20.352638634311820,23.646723646723647,-1.978000000000000,51.402797999999997,Relatively Low,13.649379573655743,60.000000000000000,2.570139900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.002000000000000,251966.934597335843137,2.079189987787603,15801843.907185781747103,16053810.841783117502928,0.000061599926845,0.000000006190176,Very Low,0.031042289477349,0.000000000025741,0.000195632380613,0.031237921857962,0.103808732702433,Very Low,0.093306662931611,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,154.000000000000000,8.555555555000000,0.000000000000000,0.000000000000000,0.000000408980651,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.002972914106239,523641000.000000000000000,4321.000000000000000,32839600000.000000000000000,33363241000.000000000000000,0.016750762052542,0.000139798843457,Very Low,166244.100000000005821,0.004124610000000,31347.036000000000058,197591.135999999998603,24.119283621495359,Relatively Moderate,24.453155645995647,Relatively Moderate,1.000000000000000,0.031250000000000,523641000.000000000000000,4321.000000000000000,32839600000.000000000000000,0.000000000000000,33363241000.000000000000000,0.000018022350010,0.000000021006339,0.000227577948569,Very Low,294.913793172938995,0.000002836512254,21.557493127383747,0.000000000000000,316.471286300322618,4.379991119170446,Very Low,4.199536050548944,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010000000000000,523641000.000000000000000,4321.000000000000000,32839600000.000000000000000,0.000000000000000,33363241000.000000000000000,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,133.710453147340388,0.000014157259736,107.595173995385991,0.000000000000000,241.305627142726422,2.528204293366901,Very Low,3.088696041498125,Very Low,0.000000000000000,0.014890000000000,523641000.000000000000000,4321.000000000000000,32839600000.000000000000000,33363241000.000000000000000,0.000005888299321,0.000000264000000,Very Low,45.911155127294158,0.000016985678160,129.091154015999962,175.002309143294156,7.626292317794972,Very Low,5.659648865478452,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.000000000000000,6.375000000000000,7892777.526380497962236,56.273123107252687,427675735.615120470523834,0.000000000000000,435568513.141500949859619,0.000067892077568,0.000000058503599,0.000567088799505,Very Low,3416.088783321043593,0.000020987648886,159.506131537376945,0.000000000000000,3575.594914858420907,6.905368145694684,Relatively Low,5.831245484989718,Relatively Low,1.000000000000000,0.031250000000000,523641000.000000000000000,4321.000000000000000,32839600000.000000000000000,0.000000000000000,33363241000.000000000000000,0.000000227257356,0.000000116345733,0.000021953615106,Very Low,3.718789662673754,0.000015710309759,119.398354169587492,0.000000000000000,123.117143832261277,4.800403316987086,Very Low,4.932202709144909,Very Low,0.000000000000000,0.000020154512251,523641000.000000000000000,4321.000000000000000,32839600000.000000000000000,0.000000000000000,33363241000.000000000000000,0.070110120058445,0.000046747024258,0.031480112893677,Very Low,739.923203719112962,0.000004071088367,30.940271591222565,0.000000000000000,770.863475310335502,6.532454901772948,Very Low,6.954840665087351,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.001559313957881,0.000000036516950,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.047775264838299,0.000109593070989,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +52,T15003003101,Hawaii,HI,15,Honolulu,County,003,15003,003101,15003003101,3687,492314000.000000000000000,0.000000000000000,2.078905600986001,16.613827471868291,Relatively Low,55.953477501752843,51.840490797546011,16.779410001070332,Relatively Low,49.951195369746628,55.214723926380373,237789.128395036852453,204090.585251820448320,0.004434018834634,33698.543143216418684,0.000000000000000,31.640893608174881,Relatively Moderate,48.234071074877576,50.142450142450144,-0.158000000000000,51.402797999999997,Relatively Low,13.649379573655743,60.000000000000000,2.570139900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.002000000000000,4891339.637564942240715,36.631843180778823,278402008.173919022083282,283293347.811484038829803,0.000098150207121,0.000000010209934,Very Low,0.960171997051334,0.000000000748017,0.005684932425829,0.965856929477163,0.325819778778573,Very Low,0.322524582730170,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,287.000000000000000,15.944444444000000,0.000000000000000,0.000000000000000,0.000000408980651,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.002968074192862,492314000.000000000000000,3687.000000000000000,28021200000.000000000000000,28513514000.000000000000000,0.016750762052542,0.000139798843457,Very Low,190812.299999999988358,0.004294790000000,32640.403999999994994,223452.703999999968801,25.128725172548013,Relatively High,28.057409688686487,Relatively Moderate,1.000000000000000,0.031250000000000,492314000.000000000000000,3687.000000000000000,28021200000.000000000000000,0.000000000000000,28513514000.000000000000000,0.000018022350010,0.000000021006339,0.000227577948569,Very Low,277.270475724835194,0.000002420324156,18.394463587689813,0.000000000000000,295.664939312524837,4.281819954830227,Very Low,4.521297610577800,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010000000000000,492314000.000000000000000,3687.000000000000000,28021200000.000000000000000,0.000000000000000,28513514000.000000000000000,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,125.711180046596311,0.000012080031624,91.808240342742010,0.000000000000000,217.519420389338336,2.442243863751706,Very Low,3.285932542469209,Very Low,0.000000000000000,0.014890000000000,492314000.000000000000000,3687.000000000000000,28021200000.000000000000000,28513514000.000000000000000,0.000005888299321,0.000000264000000,Very Low,43.164504737670846,0.000014493449520,110.150216351999987,153.314721089670826,7.297265380319177,Very Low,5.964070791213786,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,153.000000000000000,6.375000000000000,28382955.020452551543713,252.350117030061000,1917860889.428463459014893,0.000000000000000,1946243844.448916196823120,0.000067892077568,0.000000058503599,0.000567088799505,Very Low,12284.483372146607508,0.000094116611275,715.286245687004225,0.000000000000000,12999.769617833610027,10.618160491662012,Relatively Low,9.874847160780288,Relatively Low,1.000000000000000,0.031250000000000,492314000.000000000000000,3687.000000000000000,28021200000.000000000000000,0.000000000000000,28513514000.000000000000000,0.000000227257356,0.000000116345733,0.000021953615106,Very Low,3.496311813010054,0.000013405209924,101.879595425347659,0.000000000000000,105.375907238357726,4.557765662048376,Very Low,5.157292836063848,Very Low,0.000000000000000,0.000056881105479,492314000.000000000000000,3687.000000000000000,28021200000.000000000000000,0.000000000000000,28513514000.000000000000000,0.019397641813158,0.000012933682493,0.031480112893677,Very Low,543.199235354675011,0.000002712460117,20.614696889204421,0.000000000000000,563.813932243879322,5.885669414951596,Very Low,6.901013193838567,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.001559313957881,0.000000036516950,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.047775264838299,0.000109593070989,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +53,T15003003407,Hawaii,HI,15,Honolulu,County,003,15003,003407,15003003407,913,159228000.000000000000000,0.000000000000000,0.047791705560000,18.338669791219477,Relatively Moderate,64.305255777505877,65.337423312883431,12.143019400289997,Very Low,21.853476126974524,12.269938650306749,90124.320514779989026,80912.821625166630838,0.001212039327581,9211.498889613358187,0.000000000000000,48.260918235171822,Very High,99.659398681366781,100.000000000000000,10.234999999999999,51.402797999999997,Relatively Low,13.649379573655743,60.000000000000000,2.570139900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000047845109139,0.000000004844912,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,154.000000000000000,8.555555555000000,0.000000000000000,0.000000000000000,0.000000408980651,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.004633313000000,159228000.000000000000000,913.000000000000000,6938800000.000000000000000,7098028000.000000000000000,0.016750762052542,0.000139798843457,Very Low,80542.399999999994179,0.001200680000000,9125.167999999999665,89667.567999999999302,18.534763492199136,Relatively Moderate,31.565378850026804,Relatively High,1.000000000000000,0.031250000000000,159228000.000000000000000,913.000000000000000,6938800000.000000000000000,0.000000000000000,7098028000.000000000000000,0.000018022350010,0.000000021006339,0.000227577948569,Very Low,89.676960855511169,0.000000599337118,4.554962097963750,0.000000000000000,94.231922953474921,2.924788571578097,Very Low,4.710597645127246,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010000000000000,159228000.000000000000000,913.000000000000000,6938800000.000000000000000,0.000000000000000,7098028000.000000000000000,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,40.658481734136011,0.000002991339537,22.734180480857997,0.000000000000000,63.392662214994012,1.619208139099510,Very Low,3.322914255527678,Very Low,0.000000000000000,0.014890000000000,159228000.000000000000000,913.000000000000000,6938800000.000000000000000,7098028000.000000000000000,0.000005888299321,0.000000264000000,Very Low,13.960597830591562,0.000003588966480,27.276145248000002,41.236743078591566,4.710427319201076,Very Low,5.872050698826434,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000067892077568,0.000000058503599,0.000567088799505,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,1.000000000000000,0.031250000000000,159228000.000000000000000,913.000000000000000,6938800000.000000000000000,0.000000000000000,7098028000.000000000000000,0.000000227257356,0.000000116345733,0.000021953615106,Very Low,1.130804196784088,0.000003319489195,25.228117879387497,0.000000000000000,26.358922076171584,2.871755304617921,Very Low,4.956374020664602,Very Low,0.000000000000000,0.000010552757401,159228000.000000000000000,913.000000000000000,6938800000.000000000000000,0.000000000000000,7098028000.000000000000000,0.133901995467274,0.000089281259611,0.031480112893677,Relatively Low,224.994780549626370,0.000000860195251,6.537483907147931,0.000000000000000,231.532264456774300,4.374762060116375,Very Low,7.823914264542665,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.001559313957881,0.000000036516950,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.047775264838299,0.000109593070989,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +54,T15003003501,Hawaii,HI,15,Honolulu,County,003,15003,003501,15003003501,2282,361961000.000000000000000,0.000000000000000,0.114976928478000,19.821123843699507,Relatively Moderate,70.695225394905066,72.699386503067487,15.937848826685588,Relatively Low,45.231581407498041,44.785276073619634,203775.067774600553093,184706.943355753348442,0.002508963739322,19068.124418847211928,0.000000000000000,39.742216109893974,Relatively High,97.100101222881847,95.441595441595439,4.908000000000000,51.402797999999997,Relatively Low,13.649379573655743,60.000000000000000,2.570139900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000047845109139,0.000000004844912,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,154.000000000000000,8.555555555000000,0.000000000000000,0.000000000000000,0.000000408980651,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.004633313000000,361961000.000000000000000,2282.000000000000000,17343200000.000000000000000,17705161000.000000000000000,0.016750762052542,0.000139798843457,Very Low,183464.599999999976717,0.002480540000000,18852.103999999995722,202316.703999999997905,24.310048884723987,Relatively Moderate,34.093084074716806,Relatively High,1.000000000000000,0.031250000000000,361961000.000000000000000,2282.000000000000000,17343200000.000000000000000,0.000000000000000,17705161000.000000000000000,0.000018022350010,0.000000021006339,0.000227577948569,Very Low,203.855869747919172,0.000001498014571,11.384910742117501,0.000000000000000,215.240780490036684,3.851855430046710,Very Low,5.108671907335937,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010000000000000,361961000.000000000000000,2282.000000000000000,17343200000.000000000000000,0.000000000000000,17705161000.000000000000000,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,92.425859189147658,0.000007476710650,56.823000939012005,0.000000000000000,149.248860128159691,2.154071041560508,Very Low,3.640264822165544,Very Low,0.000000000000000,0.014890000000000,361961000.000000000000000,2282.000000000000000,17343200000.000000000000000,17705161000.000000000000000,0.000005888299321,0.000000264000000,Very Low,31.735573839769085,0.000008970450720,68.175425471999986,99.910999311769103,6.326593863250075,Very Low,6.494652892351067,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000067892077568,0.000000058503599,0.000567088799505,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,1.000000000000000,0.031250000000000,361961000.000000000000000,2282.000000000000000,17343200000.000000000000000,0.000000000000000,17705161000.000000000000000,0.000000227257356,0.000000116345733,0.000021953615106,Very Low,2.570571870978503,0.000008296905085,63.056478642675010,0.000000000000000,65.627050513653501,3.892236120045759,Very Low,5.531874494866536,Very Low,0.000000000000000,0.000010552757401,361961000.000000000000000,2282.000000000000000,17343200000.000000000000000,0.000000000000000,17705161000.000000000000000,0.133901995467274,0.000089281259611,0.031480112893677,Relatively Low,511.463660678544670,0.000002150017046,16.340129546672042,0.000000000000000,527.803790225216744,5.757599237467192,Very Low,8.479513545608231,Very Low,0.000000000000000,0.004587000000000,55964729.537551164627075,188.899325530666204,1435634874.033063173294067,1491599603.570614337921143,0.001559313957881,0.000000036516950,Very Low,400.291820426997447,0.000000031641251,0.240473504735829,400.532293931733363,7.884937494432461,Relatively Low,8.632222869239378,Relatively Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.047775264838299,0.000109593070989,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,November 2021 +55,T15003004600,Hawaii,HI,15,Honolulu,County,003,15003,004600,15003004600,3735,483204000.000000000000000,17799.935468580169982,2.639124545007999,16.463891298589171,Relatively Low,55.176727752649889,50.000000000000000,15.640660648479258,Relatively Low,43.485612944912631,41.104294478527606,192587.110331540083280,163440.914891236345284,0.003835001025750,29146.007795700392307,0.187644603341996,33.638239009802824,Relatively Moderate,69.886192651765938,68.091168091168086,1.091000000000000,51.402797999999997,Relatively Low,13.649379573655743,60.000000000000000,2.570139900000000,,,,,,,,,Not Applicable,,,,,,Not Applicable,,Not Applicable,,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000047845109139,0.000000004844912,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000002177434311,0.000002206235806,0.008046598621167,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000408980651,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,0.002921595597682,483204000.000000000000000,3735.000000000000000,28386000000.000000000000000,28869204000.000000000000000,0.016750762052542,0.000139798843457,Very Low,162417.500000000000000,0.003789050000000,28796.779999999998836,191214.279999999969732,23.856974111223749,Relatively Moderate,28.318939651540475,Relatively Moderate,1.000000000000000,0.031249999999722,483204000.000000000000000,3735.000000000000000,28386000000.000000000000000,17799.935468580169982,28869221799.935466766357422,0.000018022350010,0.000000021006339,0.000227577948569,Very Low,272.139737920999949,0.000002451833665,18.633935854151524,0.126589774958033,290.900263550109457,4.258694603993232,Very Low,4.780746351532737,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000001559128,0.000000100506003,0.000076183873440,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.010000000000000,483204000.000000000000000,3735.000000000000000,28386000000.000000000000000,17799.935468580169982,28869221799.935466766357422,0.000025534756283,0.000000327638504,0.000246079696318,Very Low,123.384963749224099,0.000012237298106,93.003465603509980,0.043802027145900,216.432231379880079,2.438168186819270,Very Low,3.487528684356699,Very Low,0.000000000000000,0.014890000000000,483204000.000000000000000,3735.000000000000000,28386000000.000000000000000,28869204000.000000000000000,0.000005888299321,0.000000264000000,Very Low,42.365769300205770,0.000014682135600,111.584230559999952,153.949999860205708,7.307330535711650,Very Low,6.349300957840333,Very Low,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,,,,,,,,,Insufficient Data,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000067892077568,0.000000058503599,0.000567088799505,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,1.000000000000000,0.031249999999722,483204000.000000000000000,3735.000000000000000,28386000000.000000000000000,17799.935468580169982,28869221799.935466766357422,0.000000227257356,0.000000116345733,0.000021953615106,Very Low,3.431614483999056,0.000013579728523,103.205936772916942,0.012211654130890,106.649762911046906,4.576057939965821,Very Low,5.504854264018030,Very Low,0.000000000000000,0.000079016482712,483204000.000000000000000,3735.000000000000000,28386000000.000000000000000,17799.935468580169982,28869221799.935466766357422,0.015245582313741,0.000010165231576,0.003584208365914,Very Low,582.092805781890547,0.000003000029857,22.800226909814590,0.005041147107173,604.898073838812479,6.025290600409063,Very Low,7.510753390839280,Very Low,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.001559313957881,0.000000036516950,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.047775264838299,0.000109593070989,No Rating,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,No Expected Annual Losses,0.000000000000000,No Rating,,,,,,,,,,,Insufficient Data,,,,,,,Insufficient Data,,Insufficient Data,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000085057095,0.000000105693624,0.000000000001782,No \ No newline at end of file diff --git a/data/data-pipeline/data_pipeline/tests/sources/national_risk_index/data/output.csv b/data/data-pipeline/data_pipeline/tests/sources/national_risk_index/data/output.csv index baf51468..c6b2ca87 100644 --- a/data/data-pipeline/data_pipeline/tests/sources/national_risk_index/data/output.csv +++ b/data/data-pipeline/data_pipeline/tests/sources/national_risk_index/data/output.csv @@ -1,6 +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) -05007040300,11.5,0.241594948,0.206607506,0.399500316 -05001020100,12.5,0.281343259,0.207119742,0.535089827 -15007040500,13.5,0.280726185,0.269219337,0.493093767 -15001021010,14.5,0.221568983,0.360886597,0.305051347 -15001021101,15.5,0.805488269,0.204161204,0.30618612 +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 diff --git a/data/data-pipeline/data_pipeline/tests/sources/national_risk_index/data/transform.csv b/data/data-pipeline/data_pipeline/tests/sources/national_risk_index/data/transform.csv index b627928f..a05fbe88 100644 --- a/data/data-pipeline/data_pipeline/tests/sources/national_risk_index/data/transform.csv +++ b/data/data-pipeline/data_pipeline/tests/sources/national_risk_index/data/transform.csv @@ -1,6 +1,56 @@ -TRACT,GEOID10_TRACT,RISK_SCORE,RISK_RATNG,RISK_NPCTL,FEMA Risk Index Expected Annual Loss Score,AVLN_EALT,CFLD_EALT,CWAV_EALT,DRGT_EALT,ERQK_EALT,HAIL_EALT,HWAV_EALT,HRCN_EALT,ISTM_EALT,LNDS_EALT,LTNG_EALT,RFLD_EALT,SWND_EALT,TRND_EALT,TSUN_EALT,VLCN_EALT,WFIR_EALT,WNTW_EALT,AVLN_EXPT,CFLD_EXPT,CWAV_EXPT,DRGT_EXPT,ERQK_EXPT,HAIL_EXPT,HWAV_EXPT,HRCN_EXPT,ISTM_EXPT,LNDS_EXPT,LTNG_EXPT,RFLD_EXPT,SWND_EXPT,TRND_EXPT,TSUN_EXPT,VLCN_EXPT,WFIR_EXPT,WNTW_EXPT,EAL_VALA,EAL_VALP,EAL_VALB,AGRIVALUE,POPULATION,BUILDVALUE,Expected population loss rate (Natural Hazards Risk Index),Expected agricultural loss rate (Natural Hazards Risk Index),Expected building loss rate (Natural Hazards Risk Index) -40300,05007040300,10.492015,Very Low,15.3494,11.5,12.5,13.5,14.5,15.5,16.5,17.5,18.5,19.5,20.5,21.5,22.5,23.5,24.5,25.5,26.5,27.5,28.5,29.5,30.5,31.5,32.5,33.5,34.5,35.5,36.5,37.5,38.5,39.5,40.5,41.5,42.5,43.5,44.5,45.5,46.5,47.5,48.5,49.5,50.5,234.7446176,204.8883901,126.4079101,0.24159494823420938,0.2066075060457531,0.39950031576386297 -20100,05001020100,14.705854,Relatively Low,36.725828,12.5,13.5,14.5,15.5,16.5,17.5,18.5,19.5,20.5,21.5,22.5,23.5,24.5,25.5,26.5,27.5,28.5,29.5,30.5,31.5,32.5,33.5,34.5,35.5,36.5,37.5,38.5,39.5,40.5,41.5,42.5,43.5,44.5,45.5,46.5,47.5,48.5,49.5,50.5,51.5,238.9921867,179.4960371,96.24552261,0.2813432586919213,0.20711974179363413,0.5350898265541664 -40500,15007040500,10.234981,Very Low,13.997993,13.5,14.5,15.5,16.5,17.5,18.5,19.5,20.5,21.5,22.5,23.5,24.5,25.5,26.5,27.5,28.5,29.5,30.5,31.5,32.5,33.5,34.5,35.5,36.5,37.5,38.5,39.5,40.5,41.5,42.5,43.5,44.5,45.5,46.5,47.5,48.5,49.5,50.5,51.5,52.5,187.5793934,183.4527834,106.4706219,0.28072618493724094,0.26921933739444537,0.4930937667416781 -21010,15001021010,21.537231,Relatively Moderate,59.488033,14.5,15.5,16.5,17.5,18.5,19.5,20.5,21.5,22.5,23.5,24.5,25.5,26.5,27.5,28.5,29.5,30.5,31.5,32.5,33.5,34.5,35.5,36.5,37.5,38.5,39.5,40.5,41.5,42.5,43.5,44.5,45.5,46.5,47.5,48.5,49.5,50.5,51.5,52.5,53.5,142.7041082,236.9465219,175.3803106,0.22156898349475204,0.3608865970965789,0.30505134708091913 -21101,15001021101,19.434585,Relatively Low,53.392265,15.5,16.5,17.5,18.5,19.5,20.5,21.5,22.5,23.5,24.5,25.5,26.5,27.5,28.5,29.5,30.5,31.5,32.5,33.5,34.5,35.5,36.5,37.5,38.5,39.5,40.5,41.5,42.5,43.5,44.5,45.5,46.5,47.5,48.5,49.5,50.5,51.5,52.5,53.5,54.5,257.1497377,66.41934096,177.9963115,0.8054882693313613,0.20416120377788743,0.30618612004215606 +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 diff --git a/data/data-pipeline/data_pipeline/tests/sources/national_risk_index/test_etl.py b/data/data-pipeline/data_pipeline/tests/sources/national_risk_index/test_etl.py index d58bd8ef..2fb2f86b 100644 --- a/data/data-pipeline/data_pipeline/tests/sources/national_risk_index/test_etl.py +++ b/data/data-pipeline/data_pipeline/tests/sources/national_risk_index/test_etl.py @@ -48,25 +48,23 @@ class TestNationalRiskIndexETL: etl = NationalRiskIndexETL() input_src = DATA_DIR / "input.csv" input_dst = etl.INPUT_CSV - acs_src = DATA_DIR / "acs.csv" - acs_dst = etl.BLOCK_GROUP_CSV - for src, dst in [(input_src, input_dst), (acs_src, acs_dst)]: + for src, dst in [(input_src, input_dst)]: copy_data_files(src, dst) # setup - read in sample output as dataframe TRACT_COL = etl.GEOID_TRACT_FIELD_NAME - BLOCK_COL = etl.GEOID_FIELD_NAME + expected = pd.read_csv( DATA_DIR / "transform.csv", - dtype={BLOCK_COL: "string", TRACT_COL: "string"}, + dtype={TRACT_COL: "string"}, ) # execution etl.transform() # validation - assert etl.df.shape == (5, 51) - pd.testing.assert_frame_equal(etl.df, expected) + 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 @@ -79,21 +77,22 @@ class TestNationalRiskIndexETL: # setup - input variables etl = NationalRiskIndexETL() TRACT_COL = etl.GEOID_TRACT_FIELD_NAME - BLOCK_COL = etl.GEOID_FIELD_NAME + output_path = etl.OUTPUT_DIR / "usa.csv" # setup - mock transform step df_transform = pd.read_csv( DATA_DIR / "transform.csv", - dtype={BLOCK_COL: "string", TRACT_COL: "string"}, + dtype={TRACT_COL: "string"}, ) etl.df = df_transform # setup - load expected output - expected = pd.read_csv(DATA_DIR / "output.csv", dtype={BLOCK_COL: str}) + expected = pd.read_csv(DATA_DIR / "output.csv", dtype={TRACT_COL: str}) # execution etl.load() - output = pd.read_csv(output_path, dtype={BLOCK_COL: str}) + + output = pd.read_csv(output_path, dtype={TRACT_COL: str}) # validation assert output_path.exists() - assert output.shape == (5, 5) - pd.testing.assert_frame_equal(output, expected) + assert output.shape == (55, 5) + pd.testing.assert_frame_equal(output, expected, rtol=1e-10, atol=1e-10) From 8cb1070d1ec0c4aeeedb77cc4aaed217a79366e3 Mon Sep 17 00:00:00 2001 From: Saran Ahluwalia Date: Fri, 3 Dec 2021 12:43:48 -0500 Subject: [PATCH 2/2] Integrate proximity to waste sites into pollution factors (#959) * add tsdf proximity into predicate to determine thresholds * strict inequality --> inclusive Co-authored-by: Saran Ahluwalia --- .../data_pipeline/score/score_l.py | 61 ++++++++++--------- 1 file changed, 32 insertions(+), 29 deletions(-) diff --git a/data/data-pipeline/data_pipeline/score/score_l.py b/data/data-pipeline/data_pipeline/score/score_l.py index a9477f8d..6904e6e3 100644 --- a/data/data-pipeline/data_pipeline/score/score_l.py +++ b/data/data-pipeline/data_pipeline/score/score_l.py @@ -70,21 +70,21 @@ class ScoreL(Score): field_names.EXPECTED_BUILDING_LOSS_RATE_FIELD_NAME + field_names.PERCENTILE_FIELD_SUFFIX ] - > self.ENVIRONMENTAL_BURDEN_THRESHOLD + >= self.ENVIRONMENTAL_BURDEN_THRESHOLD ) | ( self.df[ field_names.EXPECTED_AGRICULTURE_LOSS_RATE_FIELD_NAME + field_names.PERCENTILE_FIELD_SUFFIX ] - > self.ENVIRONMENTAL_BURDEN_THRESHOLD + >= self.ENVIRONMENTAL_BURDEN_THRESHOLD ) | ( self.df[ field_names.EXPECTED_POPULATION_LOSS_RATE_FIELD_NAME + field_names.PERCENTILE_FIELD_SUFFIX ] - > self.ENVIRONMENTAL_BURDEN_THRESHOLD + >= self.ENVIRONMENTAL_BURDEN_THRESHOLD ) ) @@ -93,7 +93,7 @@ class ScoreL(Score): field_names.POVERTY_LESS_THAN_200_FPL_FIELD + field_names.PERCENTILE_FIELD_SUFFIX ] - > self.LOW_INCOME_THRESHOLD + >= self.LOW_INCOME_THRESHOLD ) & climate_criteria def _energy_factor(self) -> bool: @@ -107,12 +107,12 @@ class ScoreL(Score): field_names.ENERGY_BURDEN_FIELD + field_names.PERCENTILE_FIELD_SUFFIX ] - > self.ENVIRONMENTAL_BURDEN_THRESHOLD + >= self.ENVIRONMENTAL_BURDEN_THRESHOLD ) | ( self.df[ field_names.PM25_FIELD + field_names.PERCENTILE_FIELD_SUFFIX ] - > self.ENVIRONMENTAL_BURDEN_THRESHOLD + >= self.ENVIRONMENTAL_BURDEN_THRESHOLD ) return ( @@ -120,7 +120,7 @@ class ScoreL(Score): field_names.POVERTY_LESS_THAN_200_FPL_FIELD + field_names.PERCENTILE_FIELD_SUFFIX ] - > self.LOW_INCOME_THRESHOLD + >= self.LOW_INCOME_THRESHOLD ) & energy_criteria def _transportation_factor(self) -> bool: @@ -137,12 +137,12 @@ class ScoreL(Score): self.df[ field_names.DIESEL_FIELD + field_names.PERCENTILE_FIELD_SUFFIX ] - > self.ENVIRONMENTAL_BURDEN_THRESHOLD + >= self.ENVIRONMENTAL_BURDEN_THRESHOLD ) | ( self.df[ field_names.TRAFFIC_FIELD + field_names.PERCENTILE_FIELD_SUFFIX ] - > self.ENVIRONMENTAL_BURDEN_THRESHOLD + >= self.ENVIRONMENTAL_BURDEN_THRESHOLD ) return ( @@ -150,7 +150,7 @@ class ScoreL(Score): field_names.POVERTY_LESS_THAN_200_FPL_FIELD + field_names.PERCENTILE_FIELD_SUFFIX ] - > self.LOW_INCOME_THRESHOLD + >= self.LOW_INCOME_THRESHOLD ) & transportation_criteria def _housing_factor(self) -> bool: @@ -172,28 +172,28 @@ class ScoreL(Score): field_names.LEAD_PAINT_FIELD + field_names.PERCENTILE_FIELD_SUFFIX ] - > self.ENVIRONMENTAL_BURDEN_THRESHOLD + >= self.ENVIRONMENTAL_BURDEN_THRESHOLD ) & ( self.df[ field_names.MEDIAN_HOUSE_VALUE_FIELD + field_names.PERCENTILE_FIELD_SUFFIX ] - < self.MEDIAN_HOUSE_VALUE_THRESHOLD + <= self.MEDIAN_HOUSE_VALUE_THRESHOLD ) ) | ( self.df[ field_names.HOUSING_BURDEN_FIELD + field_names.PERCENTILE_FIELD_SUFFIX ] - > self.ENVIRONMENTAL_BURDEN_THRESHOLD + >= self.ENVIRONMENTAL_BURDEN_THRESHOLD ) return ( self.df[ field_names.POVERTY_LESS_THAN_200_FPL_FIELD + field_names.PERCENTILE_FIELD_SUFFIX ] - > self.LOW_INCOME_THRESHOLD + >= self.LOW_INCOME_THRESHOLD ) & housing_criteria def _pollution_factor(self) -> bool: @@ -205,10 +205,13 @@ class ScoreL(Score): pollution_criteria = ( self.df[field_names.RMP_FIELD + field_names.PERCENTILE_FIELD_SUFFIX] - > self.ENVIRONMENTAL_BURDEN_THRESHOLD + >= self.ENVIRONMENTAL_BURDEN_THRESHOLD ) | ( self.df[field_names.NPL_FIELD + field_names.PERCENTILE_FIELD_SUFFIX] - > self.ENVIRONMENTAL_BURDEN_THRESHOLD + >= self.ENVIRONMENTAL_BURDEN_THRESHOLD + ) | ( + self.df[field_names.TSDF_FIELD + field_names.PERCENTILE_FIELD_SUFFIX] + >= self.ENVIRONMENTAL_BURDEN_THRESHOLD ) return pollution_criteria & ( @@ -216,7 +219,7 @@ class ScoreL(Score): field_names.POVERTY_LESS_THAN_200_FPL_FIELD + field_names.PERCENTILE_FIELD_SUFFIX ] - > self.LOW_INCOME_THRESHOLD + >= self.LOW_INCOME_THRESHOLD ) def _water_factor(self) -> bool: @@ -230,13 +233,13 @@ class ScoreL(Score): field_names.POVERTY_LESS_THAN_200_FPL_FIELD + field_names.PERCENTILE_FIELD_SUFFIX ] - > self.LOW_INCOME_THRESHOLD + >= self.LOW_INCOME_THRESHOLD ) & ( self.df[ field_names.WASTEWATER_FIELD + field_names.PERCENTILE_FIELD_SUFFIX ] - > self.ENVIRONMENTAL_BURDEN_THRESHOLD + >= self.ENVIRONMENTAL_BURDEN_THRESHOLD ) def _health_factor(self) -> bool: @@ -258,21 +261,21 @@ class ScoreL(Score): field_names.DIABETES_FIELD + field_names.PERCENTILE_FIELD_SUFFIX ] - > self.ENVIRONMENTAL_BURDEN_THRESHOLD + >= self.ENVIRONMENTAL_BURDEN_THRESHOLD ) | ( self.df[ field_names.ASTHMA_FIELD + field_names.PERCENTILE_FIELD_SUFFIX ] - > self.ENVIRONMENTAL_BURDEN_THRESHOLD + >= self.ENVIRONMENTAL_BURDEN_THRESHOLD ) | ( self.df[ field_names.HEART_DISEASE_FIELD + field_names.PERCENTILE_FIELD_SUFFIX ] - > self.ENVIRONMENTAL_BURDEN_THRESHOLD + >= self.ENVIRONMENTAL_BURDEN_THRESHOLD ) | ( self.df[ @@ -281,7 +284,7 @@ class ScoreL(Score): ] # Note: a high life expectancy is good, so take 1 minus the threshold to invert it, # and then look for life expenctancies lower than that (not greater than). - < 1 - self.ENVIRONMENTAL_BURDEN_THRESHOLD + <= 1 - self.ENVIRONMENTAL_BURDEN_THRESHOLD ) ) return ( @@ -289,7 +292,7 @@ class ScoreL(Score): field_names.POVERTY_LESS_THAN_200_FPL_FIELD + field_names.PERCENTILE_FIELD_SUFFIX ] - > self.LOW_INCOME_THRESHOLD + >= self.LOW_INCOME_THRESHOLD ) & health_criteria def _workforce_factor(self) -> bool: @@ -309,7 +312,7 @@ class ScoreL(Score): field_names.UNEMPLOYMENT_FIELD + field_names.PERCENTILE_FIELD_SUFFIX ] - > self.ENVIRONMENTAL_BURDEN_THRESHOLD + >= self.ENVIRONMENTAL_BURDEN_THRESHOLD ) | ( self.df[ @@ -318,23 +321,23 @@ class ScoreL(Score): ] # Note: a high median income as a % of AMI is good, so take 1 minus the threshold to invert it. # and then look for median income lower than that (not greater than). - < 1 - self.ENVIRONMENTAL_BURDEN_THRESHOLD + <= 1 - self.ENVIRONMENTAL_BURDEN_THRESHOLD ) | ( self.df[ field_names.POVERTY_LESS_THAN_100_FPL_FIELD + field_names.PERCENTILE_FIELD_SUFFIX ] - > self.ENVIRONMENTAL_BURDEN_THRESHOLD + >= self.ENVIRONMENTAL_BURDEN_THRESHOLD ) | ( self.df[ field_names.LINGUISTIC_ISO_FIELD + field_names.PERCENTILE_FIELD_SUFFIX ] - > self.ENVIRONMENTAL_BURDEN_THRESHOLD + >= self.ENVIRONMENTAL_BURDEN_THRESHOLD ) ) return ( - self.df[field_names.HIGH_SCHOOL_ED_FIELD] > 0.10 + self.df[field_names.HIGH_SCHOOL_ED_FIELD] >= 0.10 ) & workforce_criteria