diff --git a/.github/workflows/build_docs.yaml b/.github/workflows/build_docs.yaml
new file mode 100644
index 00000000..6bd56f4e
--- /dev/null
+++ b/.github/workflows/build_docs.yaml
@@ -0,0 +1,45 @@
+name: Build and deploy documentation
+on:
+ push:
+ branches:
+ - docs
+jobs:
+ build-docs:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v3
+
+ - name: Set up Python
+ uses: actions/setup-python@v3
+ with:
+ python-version: '3.10'
+
+ - name: Install dependencies
+ run: |
+ sudo apt-get update
+ sudo apt-get install -y pandoc
+ python -m pip install -r requirements.txt
+
+ - name: Compute cache key
+ id: compute-cache-key
+ run: |
+ cd doc/source/_extensions
+ key=$(python compute_global_hash.py)
+ cd ../../../
+ echo "key=$key" >> $GITHUB_OUTPUT
+
+ - name: Restore cache
+ uses: actions/cache@v3
+ with:
+ path: doc/cache
+ key: ${{ steps.compute-cache-key.outputs.key }}
+
+ - name: Build docs
+ run: cd doc && make html
+
+ - name: Deploy to GitHub Pages
+ uses: peaceiris/actions-gh-pages@v3
+ with:
+ github_token: ${{ secrets.GITHUB_TOKEN }}
+ publish_dir: doc/build/html
diff --git a/.github/format_and_lint.yaml b/.github/workflows/format_and_lint.yaml
similarity index 100%
rename from .github/format_and_lint.yaml
rename to .github/workflows/format_and_lint.yaml
diff --git a/.gitignore b/.gitignore
index c9efffd0..4fa32410 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,7 @@
/data_sources/HAZUS_MH_4.2_HU/output/
/data_sources/HAZUS_MH_4.2_HU/session.dill
+/doc/build/
+*.pyc
+/.ropeproject/
+/doc/cache/
+/doc/source/dl_doc/
diff --git a/doc/Makefile b/doc/Makefile
new file mode 100644
index 00000000..d0c3cbf1
--- /dev/null
+++ b/doc/Makefile
@@ -0,0 +1,20 @@
+# Minimal makefile for Sphinx documentation
+#
+
+# You can set these variables from the command line, and also
+# from the environment for the first two.
+SPHINXOPTS ?=
+SPHINXBUILD ?= sphinx-build
+SOURCEDIR = source
+BUILDDIR = build
+
+# Put it first so that "make" without argument is like "make help".
+help:
+ @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
+
+.PHONY: help Makefile
+
+# Catch-all target: route all unknown targets to Sphinx using the new
+# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
+%: Makefile
+ @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
diff --git a/doc/make.bat b/doc/make.bat
new file mode 100644
index 00000000..dc1312ab
--- /dev/null
+++ b/doc/make.bat
@@ -0,0 +1,35 @@
+@ECHO OFF
+
+pushd %~dp0
+
+REM Command file for Sphinx documentation
+
+if "%SPHINXBUILD%" == "" (
+ set SPHINXBUILD=sphinx-build
+)
+set SOURCEDIR=source
+set BUILDDIR=build
+
+%SPHINXBUILD% >NUL 2>NUL
+if errorlevel 9009 (
+ echo.
+ echo.The 'sphinx-build' command was not found. Make sure you have Sphinx
+ echo.installed, then set the SPHINXBUILD environment variable to point
+ echo.to the full path of the 'sphinx-build' executable. Alternatively you
+ echo.may add the Sphinx directory to PATH.
+ echo.
+ echo.If you don't have Sphinx installed, grab it from
+ echo.https://www.sphinx-doc.org/
+ exit /b 1
+)
+
+if "%1" == "" goto help
+
+%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
+goto end
+
+:help
+%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O%
+
+:end
+popd
diff --git a/doc/source/_extensions/compute_global_hash.py b/doc/source/_extensions/compute_global_hash.py
new file mode 100644
index 00000000..ae6a1a52
--- /dev/null
+++ b/doc/source/_extensions/compute_global_hash.py
@@ -0,0 +1,7 @@
+from generate_dl_doc import generate_md5, combine_md5_hashes
+from pathlib import Path
+
+resource_folder = Path('../../../')
+dlmls = resource_folder.rglob('*.csv')
+hashes = [generate_md5(dlml) for dlml in dlmls]
+print(combine_md5_hashes(hashes))
diff --git a/doc/source/_extensions/generate_dl_doc.py b/doc/source/_extensions/generate_dl_doc.py
new file mode 100644
index 00000000..5f224787
--- /dev/null
+++ b/doc/source/_extensions/generate_dl_doc.py
@@ -0,0 +1,642 @@
+import hashlib
+import json
+import os
+import shutil
+import subprocess
+import sys
+import time
+from copy import deepcopy
+from pathlib import Path
+from textwrap import dedent
+from zipfile import ZipFile
+
+import numpy as np
+from tqdm import tqdm
+
+from visuals import plot_fragility, plot_repair
+
+os.chdir('../')
+
+
+def generate_md5(file_path):
+ """
+ Generate an MD5 hash of a file.
+
+ Parameters
+ ----------
+ file_path : str
+ The path to the file for which to generate the MD5 hash.
+
+ Returns
+ -------
+ str
+ The MD5 hash of the file.
+ """
+ md5 = hashlib.md5()
+ with open(file_path, 'rb') as f:
+ for chunk in iter(lambda: f.read(4096), b''):
+ md5.update(chunk)
+ return md5.hexdigest()
+
+
+def combine_md5_hashes(md5_list):
+ """
+ Combine a list of MD5 hashes and generate a new MD5 hash.
+
+ Parameters
+ ----------
+ md5_list : list of str
+ A list of MD5 hashes.
+
+ Returns
+ -------
+ str
+ A new MD5 hash based on the combination of the given hashes.
+ """
+ combined_md5 = hashlib.md5()
+ for md5_hash in md5_list:
+ combined_md5.update(md5_hash.encode('utf-8'))
+ return combined_md5.hexdigest()
+
+
+def get_dlml_tag(dlml):
+ return '-'.join(str(dlml.parent).split('/')).replace(' ', '_')
+
+
+def create_component_group_directory(cmp_groups, root, dlml_tag):
+ member_ids = []
+
+ if isinstance(cmp_groups, dict):
+ for grp_name, grp_members in cmp_groups.items():
+ grp_id = f"{grp_name.split('-')[0].strip()}"
+
+ # create the first-level dirs
+ grp_dir = Path(root) / grp_id
+ grp_dir.mkdir(parents=True, exist_ok=True)
+
+ # call this function again to add subdirs
+ subgrp_ids = create_component_group_directory(
+ grp_members, grp_dir, dlml_tag=dlml_tag
+ )
+
+ grp_index_contents = dedent(
+ f"""
+
+ {"*" * len(grp_name)}
+ {grp_name}
+ {"*" * len(grp_name)}
+
+ The following models are available:
+
+ .. toctree::
+ :maxdepth: 8
+
+ """
+ )
+
+ for member_id in subgrp_ids:
+ grp_index_contents += f' {member_id}/index\n'
+
+ grp_index_path = grp_dir / 'index.rst'
+ with grp_index_path.open('w', encoding='utf-8') as f:
+ f.write(grp_index_contents)
+
+ member_ids.append(grp_id)
+
+ else:
+ for grp_name in cmp_groups:
+ grp_id = f"{grp_name.split('-')[0].strip()}"
+
+ grp_dir = Path(root) / grp_id
+
+ # create group dirs
+ grp_dir.mkdir(parents=True, exist_ok=True)
+
+ grp_index_contents = dedent(
+ f"""
+
+ {"*" * len(grp_name)}
+ {grp_name}
+ {"*" * len(grp_name)}
+
+ The following models are available:
+
+ """
+ )
+
+ grp_index_path = grp_dir / 'index.rst'
+ with grp_index_path.open('w', encoding='utf-8') as f:
+ f.write(grp_index_contents)
+
+ member_ids.append(grp_id)
+
+ return member_ids
+
+
+def generate_damage_docs(doc_folder: Path, cache_folder: Path):
+
+ doc_folder = doc_folder / 'damage'
+
+ resource_folder = Path()
+
+ # get all the available damage dlmls
+ damage_dlmls = list(resource_folder.rglob('fragility.csv'))
+
+ # create the main index file
+ damage_index_contents = dedent(
+ """\
+
+ *************
+ Damage Models
+ *************
+
+ The following collections are available in our Damage and Loss Model Library:
+
+ .. toctree::
+ :maxdepth: 8
+
+ """
+ )
+
+ # for each database
+ for dlml in (pbar := tqdm(damage_dlmls)):
+ pbar.set_postfix({'File': f'{str(dlml)[:80]:<80}'})
+
+ # blacklist
+ if ignore_file(dlml):
+ continue
+
+ # add dlml to main damage index file
+ damage_index_contents += f' {dlml.parent}/index\n'
+
+ # create a folder
+ (doc_folder / dlml.parent).mkdir(parents=True, exist_ok=True)
+
+ zip_hash = generate_md5(dlml)
+ zip_filepath = ((cache_folder) / zip_hash).with_suffix('.zip')
+
+ # if it doesn't exist in the cahce, craete it.
+ # otherwise it exists, obviously.
+ if not zip_filepath.is_file():
+ plot_fragility(
+ str(dlml),
+ str(zip_filepath),
+ create_zip='1',
+ )
+
+ # check if there are metadata available
+ dlml_json = dlml.with_suffix('.json')
+ if dlml_json.is_file():
+ with dlml_json.open('r', encoding='utf-8') as f:
+ dlml_meta = json.load(f)
+ else:
+ dlml_meta = None
+
+ if dlml_meta is not None:
+ dlml_general = dlml_meta.get('_GeneralInformation', {})
+
+ # create the top of the dlml index file
+ dlml_short_name = dlml_general.get('ShortName', dlml)
+
+ dlml_description = dlml_general.get(
+ 'Description', f'The following models are available in {dlml}:'
+ )
+
+ dlml_index_contents = dedent(
+ f"""
+
+ {"*" * len(dlml_short_name)}
+ {dlml_short_name}
+ {"*" * len(dlml_short_name)}
+
+ {dlml_description}
+
+ """
+ )
+
+ # check if there are component groups defined
+ dlml_cmp_groups = dlml_general.get('ComponentGroups', None)
+
+ # if yes, create the corresponding directory structure and index files
+ if dlml_cmp_groups is not None:
+ dlml_index_contents += dedent(
+ """
+ .. toctree::
+ :maxdepth: 8
+
+ """
+ )
+
+ # create the directory structure and index files
+ dlml_tag = '-'.join(str(dlml.parent).split('/')).replace(' ', '_')
+ grp_ids = create_component_group_directory(
+ dlml_cmp_groups,
+ root=(doc_folder / dlml.parent),
+ dlml_tag=dlml_tag,
+ )
+
+ for member_id in grp_ids:
+ dlml_index_contents += f' {member_id}/index\n'
+
+ else:
+ print(f'No metadata available for {dlml}')
+
+ # create the top of the dlml index file
+ dlml_index_contents = dedent(
+ f"""\
+
+ {"*" * len(dlml)}
+ {dlml}
+ {"*" * len(dlml)}
+
+ The following models are available in {dlml}:
+
+ """
+ )
+
+ dlml_index_path = doc_folder / dlml.parent / 'index.rst'
+ with dlml_index_path.open('w', encoding='utf-8') as f:
+ f.write(dlml_index_contents)
+
+ # now open the zip file
+ with ZipFile(zip_filepath, 'r') as zipObj:
+ # for each component
+ for comp in sorted(zipObj.namelist()):
+ if comp == 'fragility':
+ continue
+ comp = Path(comp).stem.removesuffix('.html')
+
+ # check where the component belongs
+ comp_labels = comp.split('.')
+ comp_path = doc_folder / dlml.parent
+ new_path = deepcopy(comp_path)
+
+ c_i = 0
+ while new_path.is_dir():
+ comp_path = new_path
+
+ if c_i > len(comp_labels):
+ break
+
+ new_path = comp_path / f"{'.'.join(comp_labels[:c_i])}"
+
+ c_i += 1
+
+ grp_index_path = comp_path / 'index.rst'
+
+ comp_meta = None
+ if dlml_meta is not None:
+ comp_meta = dlml_meta.get(comp, None)
+
+ with grp_index_path.open('a', encoding='utf-8') as f:
+ # add the component info to the docs
+
+ if comp_meta is None:
+ comp_contents = dedent(
+ f"""
+ {comp}
+ {"*" * len(comp)}
+
+ .. raw:: html
+ :file: {comp}.html
+
+
+ .. raw:: html
+
+
+
+ """
+ )
+
+ comp_comments = comp_meta.get('Comments', '').split('\n')
+
+ for comment_line in comp_comments:
+ if comment_line != '':
+ comp_contents += f'| {comment_line}\n'
+
+ if 'SuggestedComponentBlockSize' in comp_meta:
+ roundup = comp_meta.get(
+ 'RoundUpToIntegerQuantity', 'False'
+ )
+ if roundup == 'True':
+ roundup_text = '(round up to integer quantity)'
+ else:
+ roundup_text = ''
+
+ comp_contents += dedent(
+ f"""
+
+ Suggested Block Size: {comp_meta['SuggestedComponentBlockSize']} {roundup_text}
+
+ """
+ )
+
+ comp_contents += dedent(
+ f"""
+
+ .. raw:: html
+ :file: {comp}.html
+
+ .. raw:: html
+
+
+ """
+ )
+
+ f.write(comp_contents)
+
+ # copy the file from the zip to the dlml folder
+ zipObj.extract(f'{comp}.html', path=comp_path)
+
+ damage_index_path = doc_folder / 'index.rst'
+ with damage_index_path.open('w', encoding='utf-8') as f:
+ f.write(damage_index_contents)
+
+
+def generate_repair_docs(doc_folder: Path, cache_folder: Path):
+ resource_folder = Path()
+
+ doc_folder = doc_folder / 'repair'
+
+ # get all the available repair dlmls
+ repair_dlmls = list(resource_folder.rglob('consequence_repair.csv'))
+
+ # create the main index file
+ repair_index_contents = dedent(
+ """\
+
+ *************************
+ Repair Consequence Models
+ *************************
+
+ The following collections are available in our Damage and Loss Model Library:
+
+ .. toctree::
+ :maxdepth: 8
+
+ """
+ )
+
+ # for each database
+ for dlml in (pbar := tqdm(repair_dlmls)):
+ pbar.set_postfix({'File': f'{str(dlml)[:80]:<80}'})
+
+ # blacklist
+ if ignore_file(dlml):
+ continue
+
+ # add dlml to main repair index file
+ repair_index_contents += f' {dlml.parent}/index\n'
+
+ # create a folder
+ (doc_folder / dlml.parent).mkdir(parents=True, exist_ok=True)
+
+ zip_hash = generate_md5(dlml)
+ zip_filepath = ((cache_folder) / zip_hash).with_suffix('.zip')
+
+ # if it doesn't exist in the cahce, craete it.
+ # otherwise it exists, obviously.
+ if not zip_filepath.is_file():
+ plot_repair(
+ str(dlml),
+ str(zip_filepath),
+ create_zip='1',
+ )
+
+ # check if there is metadata available
+ dlml_json = dlml.with_suffix('.json')
+ if dlml_json.is_file():
+ with dlml_json.open('r', encoding='utf-8') as f:
+ dlml_meta = json.load(f)
+ else:
+ dlml_meta = None
+
+ if dlml_meta is not None:
+ dlml_general = dlml_meta.get('_GeneralInformation', {})
+
+ # create the top of the dlml index file
+ dlml_short_name = dlml_general.get('ShortName', dlml)
+
+ dlml_description = dlml_general.get(
+ 'Description', f'The following models are available in {dlml}:'
+ )
+
+ dlml_index_contents = dedent(
+ f"""
+
+ {"*" * len(dlml_short_name)}
+ {dlml_short_name}
+ {"*" * len(dlml_short_name)}
+
+ {dlml_description}
+
+ """
+ )
+
+ # check if there are component groups defined
+ dlml_cmp_groups = dlml_general.get('ComponentGroups', None)
+
+ # if yes, create the corresponding directory structure and index files
+ if dlml_cmp_groups is not None:
+ dlml_index_contents += dedent(
+ """
+ .. toctree::
+ :maxdepth: 8
+
+ """
+ )
+
+ # create the directory structure and index files
+ dlml_tag = get_dlml_tag(dlml)
+ grp_ids = create_component_group_directory(
+ dlml_cmp_groups,
+ root=(doc_folder / dlml.parent),
+ dlml_tag=dlml_tag,
+ )
+
+ for member_id in grp_ids:
+ dlml_index_contents += f' {member_id}/index\n'
+
+ else:
+ print(f'No metadata available for {dlml}')
+
+ # create the top of the dlml index file
+ dlml_index_contents = dedent(
+ f"""\
+
+ {"*" * len(dlml)}
+ {dlml}
+ {"*" * len(dlml)}
+
+ The following models are available in {dlml}:
+
+ """
+ )
+
+ dlml_index_path = doc_folder / dlml.parent / 'index.rst'
+ with dlml_index_path.open('w', encoding='utf-8') as f:
+ f.write(dlml_index_contents)
+
+ # now open the zip file
+ with ZipFile(zip_filepath, 'r') as zipObj:
+ html_files = [
+ Path(filepath).stem for filepath in sorted(zipObj.namelist())
+ ]
+
+ comp_ids = np.unique([c_id.split('-')[0] for c_id in html_files])
+
+ dv_types = np.unique([c_id.split('-')[1] for c_id in html_files])
+
+ # for each component
+ for comp in comp_ids:
+ comp_files = []
+ for dv_i in dv_types:
+ filename = f'{comp}-{dv_i}'
+ if filename in html_files:
+ comp_files.append(filename)
+
+ # check where the component belongs
+ comp_labels = comp.split('.')
+ comp_path = doc_folder / dlml.parent
+ new_path = deepcopy(comp_path)
+
+ c_i = 0
+ while new_path.is_dir():
+ comp_path = new_path
+
+ if c_i > len(comp_labels):
+ break
+
+ new_path = comp_path / f"{'.'.join(comp_labels[:c_i])}"
+
+ c_i += 1
+
+ grp_index_path = comp_path / 'index.rst'
+
+ comp_meta = None
+ if dlml_meta is not None:
+ comp_meta = dlml_meta.get(comp, None)
+
+ with grp_index_path.open('a', encoding='utf-8') as f:
+ # add the component info to the docs
+
+ if comp_meta is None:
+ comp_contents = dedent(
+ f"""
+ {comp}
+ {"*" * len(comp)}
+
+ """
+ )
+
+ else:
+ comp_contents = dedent(
+ f"""
+ .. raw:: html
+
+
{comp} | {comp_meta.get("Description", "")}
+
+
+ """
+ )
+
+ comp_comments = comp_meta.get('Comments', '').split('\n')
+
+ for comment_line in comp_comments:
+ if comment_line != '':
+ comp_contents += f'| {comment_line}\n'
+
+ if 'SuggestedComponentBlockSize' in comp_meta:
+ roundup = comp_meta.get(
+ 'RoundUpToIntegerQuantity', 'False'
+ )
+ if roundup == 'True':
+ roundup_text = '(round up to integer quantity)'
+ else:
+ roundup_text = ''
+
+ comp_contents += dedent(
+ f"""
+
+ Suggested Block Size: {comp_meta['SuggestedComponentBlockSize']} {roundup_text}
+
+ """
+ )
+
+ comp_contents += dedent(
+ """
+
+ The following repair consequences are available for this model:
+
+ """
+ )
+
+ for comp_file in comp_files:
+ dv_type = comp_file.split('-')[1]
+
+ comp_contents += dedent(
+ f"""
+
+ **{dv_type}**
+
+ .. raw:: html
+ :file: {comp_file}.html
+
+ """
+ )
+
+ # copy the file from the zip to the dlml folder
+ zipObj.extract(f'{comp_file}.html', path=comp_path)
+
+ comp_contents += dedent(
+ """
+
+ .. raw:: html
+
+
+
+ """
+ )
+
+ f.write(comp_contents)
+
+ repair_index_path = doc_folder / 'index.rst'
+ with repair_index_path.open('w', encoding='utf-8') as f:
+ f.write(repair_index_contents)
+
+
+def ignore_file(dlml):
+ """Ignore certain paths due to lack of support. To remove."""
+ if str(dlml.parent) in {
+ 'seismic/water_network/portfolio/Hazus v6.1',
+ 'flood/building/portfolio/Hazus v6.1',
+ }:
+ return True
+ return False
+
+
+def main():
+ cache_folder = Path('doc/cache')
+
+ doc_folder = Path('doc/source/dl_doc')
+ if os.path.exists(doc_folder):
+ shutil.rmtree(doc_folder)
+ doc_folder.mkdir(parents=True, exist_ok=True)
+
+ generate_damage_docs(doc_folder, cache_folder)
+ generate_repair_docs(doc_folder, cache_folder)
+
+
+if __name__ == '__main__':
+ main()
diff --git a/doc/source/_extensions/sphinx_generate_dl_doc.py b/doc/source/_extensions/sphinx_generate_dl_doc.py
new file mode 100644
index 00000000..9baa97f3
--- /dev/null
+++ b/doc/source/_extensions/sphinx_generate_dl_doc.py
@@ -0,0 +1,40 @@
+import os
+import subprocess
+
+from sphinx.application import Sphinx
+
+
+def run_script(app: Sphinx):
+ """
+ Run a custom Python script to generate files before Sphinx builds
+ the documentation.
+
+ Parameters
+ ----------
+ app: Sphinx
+ The Sphinx application instance.
+ """
+ script_path = os.path.join(app.srcdir, '_extensions', 'generate_dl_doc.py')
+
+ result = subprocess.run(['python', script_path], check=True)
+
+ if result.returncode != 0:
+ raise RuntimeError('Script execution failed')
+
+
+def setup(app: Sphinx):
+ """
+ Set up the custom Sphinx extension.
+
+ Parameters
+ ----------
+ app: Sphinx
+ The Sphinx application instance.
+ """
+ app.connect('builder-inited', run_script)
+
+ return {
+ 'version': '1.0',
+ 'parallel_read_safe': True,
+ 'parallel_write_safe': True,
+ }
diff --git a/doc/source/_extensions/visuals.py b/doc/source/_extensions/visuals.py
new file mode 100644
index 00000000..358b61e5
--- /dev/null
+++ b/doc/source/_extensions/visuals.py
@@ -0,0 +1,1114 @@
+# # noqa: D100
+# Copyright (c) 2023 Leland Stanford Junior University
+# Copyright (c) 2023 The Regents of the University of California
+#
+# This file is part of pelicun.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions are met:
+#
+# 1. Redistributions of source code must retain the above copyright notice,
+# this list of conditions and the following disclaimer.
+#
+# 2. Redistributions in binary form must reproduce the above copyright notice,
+# this list of conditions and the following disclaimer in the documentation
+# and/or other materials provided with the distribution.
+#
+# 3. Neither the name of the copyright holder nor the names of its contributors
+# may be used to endorse or promote products derived from this software without
+# specific prior written permission.
+#
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
+# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+# POSSIBILITY OF SUCH DAMAGE.
+#
+# You should have received a copy of the BSD 3-Clause License along with
+# pelicun. If not, see .
+#
+# Contributors:
+# Adam Zsarnóczay
+
+import argparse
+import json
+import os
+import shutil
+import sys
+from copy import deepcopy
+from pathlib import Path
+from textwrap import wrap
+from zipfile import ZipFile
+
+import colorlover as cl
+import numpy as np
+import pandas as pd
+from pelicun.base import convert_to_MultiIndex, pelicun_path
+from plotly import graph_objects as go
+from plotly.subplots import make_subplots
+from scipy.stats import norm
+
+
+def plot_fragility(comp_db_path, output_path, create_zip='0'): # noqa: C901, D103
+ if create_zip == '1':
+ output_path = output_path[:-4]
+
+ if os.path.exists(output_path): # noqa: PTH110
+ shutil.rmtree(output_path)
+
+ Path(output_path).mkdir(parents=True, exist_ok=True)
+ # frag_df = convert_to_MultiIndex(pd.read_csv(resource_dir + '/' + frag_DB_file, index_col=0), axis=1)
+ frag_df = convert_to_MultiIndex(pd.read_csv(comp_db_path, index_col=0), axis=1)
+
+ comp_db_meta = comp_db_path[:-3] + 'json'
+
+ if Path(comp_db_meta).is_file():
+ with open(comp_db_meta) as f: # noqa: PTH123
+ frag_meta = json.load(f)
+ else:
+ frag_meta = None
+
+ # for comp_id in frag_df.index[:20]:
+ # for comp_id in frag_df.index[400:420]:
+ # for comp_id in frag_df.index[438:439]:
+ # for comp_id in frag_df.index[695:705]:
+ for comp_id in frag_df.index:
+ comp_data = frag_df.loc[comp_id]
+ if frag_meta != None: # noqa: E711
+ if comp_id in frag_meta.keys(): # noqa: SIM118
+ comp_meta = frag_meta[comp_id]
+ else:
+ comp_meta = None
+ else:
+ comp_meta = None
+ # print(json.dumps(comp_meta, indent=2))
+
+ fig = go.Figure()
+ fig = make_subplots(
+ rows=1,
+ cols=2,
+ specs=[[{'type': 'xy'}, {'type': 'table'}]],
+ column_widths=[0.4, 0.6],
+ horizontal_spacing=0.02,
+ vertical_spacing=0.02,
+ )
+
+ limit_states = [
+ val for val in comp_data.index.unique(level=0) if 'LS' in val
+ ]
+
+ # mapping to a color in a sequential color scale
+ colors = {
+ 1: [
+ cl.scales['3']['seq']['Reds'][2],
+ ],
+ 2: cl.scales['3']['seq']['Reds'][1:],
+ 3: cl.scales['4']['seq']['Reds'][1:],
+ 4: cl.scales['5']['seq']['Reds'][1:],
+ 5: cl.scales['5']['seq']['Reds'],
+ }
+
+ if comp_data.loc[('Incomplete', '')] != 1: # noqa: RUF031, RUF100
+ p_min, p_max = 0.01, 0.9
+ d_min = np.inf
+ d_max = -np.inf
+
+ LS_count = 0 # noqa: N806
+ for LS in limit_states: # noqa: N806
+ if comp_data.loc[(LS, 'Family')] == 'normal': # noqa: RUF031, RUF100
+ d_min_i, d_max_i = norm.ppf(
+ [p_min, p_max],
+ loc=comp_data.loc[(LS, 'Theta_0')], # noqa: RUF031, RUF100
+ scale=comp_data.loc[(LS, 'Theta_1')] # noqa: RUF031, RUF100
+ * comp_data.loc[(LS, 'Theta_0')], # noqa: RUF031, RUF100
+ )
+ elif (
+ comp_data.loc[(LS, 'Family')] == 'lognormal'
+ ): # noqa: RUF031, RUF100
+ d_min_i, d_max_i = np.exp(
+ norm.ppf(
+ [p_min, p_max],
+ loc=np.log(
+ comp_data.loc[(LS, 'Theta_0')]
+ ), # noqa: RUF031, RUF100
+ scale=comp_data.loc[
+ (LS, 'Theta_1')
+ ], # noqa: RUF031, RUF100
+ )
+ )
+ else:
+ continue
+
+ LS_count += 1 # noqa: N806
+
+ d_min = np.min([d_min, d_min_i])
+ d_max = np.max([d_max, d_max_i])
+
+ demand_vals = np.linspace(d_min, d_max, num=100)
+
+ for i_ls, LS in enumerate(limit_states): # noqa: N806
+ if comp_data.loc[(LS, 'Family')] == 'normal': # noqa: RUF031, RUF100
+ cdf_vals = norm.cdf(
+ demand_vals,
+ loc=comp_data.loc[(LS, 'Theta_0')], # noqa: RUF031, RUF100
+ scale=comp_data.loc[(LS, 'Theta_1')] # noqa: RUF031, RUF100
+ * comp_data.loc[(LS, 'Theta_0')], # noqa: RUF031, RUF100
+ )
+ elif (
+ comp_data.loc[(LS, 'Family')] == 'lognormal'
+ ): # noqa: RUF031, RUF100
+ cdf_vals = norm.cdf(
+ np.log(demand_vals),
+ loc=np.log(
+ comp_data.loc[(LS, 'Theta_0')]
+ ), # noqa: RUF031, RUF100
+ scale=comp_data.loc[(LS, 'Theta_1')], # noqa: RUF031, RUF100
+ )
+ else:
+ continue
+
+ fig.add_trace(
+ go.Scatter(
+ x=demand_vals,
+ y=cdf_vals,
+ mode='lines',
+ line=dict(
+ width=3, color=colors[LS_count][i_ls]
+ ), # noqa: C408
+ name=LS,
+ ),
+ row=1,
+ col=1,
+ )
+
+ else:
+ fig.add_trace(
+ go.Scatter(
+ x=[
+ 0,
+ ],
+ y=[
+ 0,
+ ],
+ mode='lines',
+ line=dict(width=3, color=colors[1][0]), # noqa: C408
+ name='Incomplete Fragility Data',
+ ),
+ row=1,
+ col=1,
+ )
+
+ table_vals = []
+
+ for LS in limit_states: # noqa: N806
+ if (
+ np.all( # noqa: E712
+ pd.isna(
+ comp_data[LS][
+ ['Theta_0', 'Family', 'Theta_1', 'DamageStateWeights']
+ ].values
+ )
+ )
+ == False
+ ):
+ table_vals.append( # noqa: PERF401
+ np.insert(
+ comp_data[LS][
+ ['Theta_0', 'Family', 'Theta_1', 'DamageStateWeights']
+ ].values,
+ 0,
+ LS,
+ )
+ )
+
+ table_vals = np.array(table_vals).T
+
+ ds_list = []
+ ds_i = 1
+ for dsw in table_vals[-1]:
+ if pd.isna(dsw) == True: # noqa: E712
+ ds_list.append(f'DS{ds_i}')
+ ds_i += 1
+
+ else:
+ w_list = dsw.split('|')
+ ds_list.append(
+ '
'.join(
+ [
+ f'DS{ds_i + i} ({100.0 * float(w):.0f}%)'
+ for i, w in enumerate(w_list)
+ ]
+ )
+ )
+ ds_i += len(w_list)
+
+ for i in range(1, 5):
+ table_vals[-i] = table_vals[-i - 1]
+ table_vals[1] = np.array(ds_list)
+
+ font_size = 16
+ if ds_i > 8: # noqa: PLR2004
+ font_size = 8.5
+
+ fig.add_trace(
+ go.Table(
+ columnwidth=[50, 70, 65, 95, 80],
+ header=dict( # noqa: C408
+ values=[
+ 'Limit
State',
+ 'Damage State(s)',
+ ' Median
Capacity',
+ ' Capacity
Distribution',
+ ' Capacity
Dispersion',
+ ],
+ align=['center', 'left', 'center', 'center', 'center'],
+ fill=dict(color='rgb(200,200,200)'), # noqa: C408
+ line=dict(color='black'), # noqa: C408
+ font=dict(color='black', size=16), # noqa: C408
+ ),
+ cells=dict( # noqa: C408
+ values=table_vals,
+ height=30,
+ align=['center', 'left', 'center', 'center', 'center'],
+ fill=dict(color='rgba(0,0,0,0)'), # noqa: C408
+ line=dict(color='black'), # noqa: C408
+ font=dict(color='black', size=font_size), # noqa: C408
+ ),
+ ),
+ row=1,
+ col=2,
+ )
+
+ x_loc = 0.4928
+ y_loc = 0.697 + 0.123
+ ds_offset = 0.086
+ info_font_size = 10
+
+ if ds_i > 8: # noqa: PLR2004
+ x_loc = 0.4928
+ y_loc = 0.705 + 0.123
+ ds_offset = 0.0455
+ info_font_size = 9
+
+ for i_ls, ds_desc in enumerate(ds_list):
+ if comp_meta != None: # noqa: E711
+ ls_meta = comp_meta['LimitStates'][f'LS{i_ls + 1}']
+
+ y_loc = y_loc - 0.123
+
+ if '
' in ds_desc:
+ ds_vals = ds_desc.split('
')
+
+ for i_ds, ds_name in enumerate(ds_vals): # noqa: B007
+ ds_id = list(ls_meta.keys())[i_ds]
+
+ if (
+ ls_meta[ds_id].get('Description', False) != False
+ ): # noqa: E712
+ ds_description = '
'.join(
+ wrap(ls_meta[ds_id]['Description'], width=70)
+ )
+ else:
+ ds_description = ''
+
+ if (
+ ls_meta[ds_id].get('RepairAction', False) != False
+ ): # noqa: E712
+ ds_repair = '
'.join(
+ wrap(ls_meta[ds_id]['RepairAction'], width=70)
+ )
+ else:
+ ds_repair = ''
+
+ if ds_repair != '':
+ ds_text = f'{ds_id}
{ds_description}
Repair Action
{ds_repair}'
+ else:
+ ds_text = f'{ds_id}
{ds_description}'
+
+ y_loc_ds = y_loc - 0.018 - i_ds * ds_offset
+
+ fig.add_annotation(
+ text='*',
+ hovertext=ds_text,
+ xref='paper',
+ yref='paper',
+ axref='pixel',
+ ayref='pixel',
+ xanchor='left',
+ yanchor='bottom',
+ font=dict(size=info_font_size), # noqa: C408
+ showarrow=False,
+ ax=0,
+ ay=0,
+ x=x_loc,
+ y=y_loc_ds,
+ )
+
+ y_loc = y_loc_ds - 0.008
+
+ else:
+ # assuming a single Damage State
+ ds_id = list(ls_meta.keys())[0] # noqa: RUF015
+
+ if (
+ ls_meta[ds_id].get('Description', False) != False
+ ): # noqa: E712
+ ds_description = '
'.join(
+ wrap(ls_meta[ds_id]['Description'], width=70)
+ )
+ else:
+ ds_description = ''
+
+ if (
+ ls_meta[ds_id].get('RepairAction', False) != False
+ ): # noqa: E712
+ ds_repair = '
'.join(
+ wrap(ls_meta[ds_id]['RepairAction'], width=70)
+ )
+ else:
+ ds_repair = ''
+
+ if ds_repair != '':
+ ds_text = f'{ds_id}
{ds_description}
Repair Action
{ds_repair}'
+ else:
+ ds_text = f'{ds_id}
{ds_description}'
+
+ fig.add_annotation(
+ text='*',
+ hovertext=ds_text,
+ xref='paper',
+ yref='paper',
+ axref='pixel',
+ ayref='pixel',
+ xanchor='left',
+ yanchor='bottom',
+ font=dict(size=info_font_size), # noqa: C408
+ showarrow=False,
+ ax=0,
+ ay=0,
+ x=x_loc,
+ y=y_loc,
+ )
+
+ shared_ax_props = dict( # noqa: C408
+ showgrid=True,
+ linecolor='black',
+ gridwidth=0.05,
+ gridcolor='rgb(192,192,192)',
+ )
+
+ demand_unit = comp_data.loc[('Demand', 'Unit')] # noqa: RUF031, RUF100
+ if demand_unit == 'unitless':
+ demand_unit = '-'
+ fig.update_xaxes(
+ title_text=f"{comp_data.loc[('Demand', 'Type')]} [{demand_unit}]", # noqa: RUF031, RUF100
+ **shared_ax_props,
+ )
+
+ fig.update_yaxes(
+ title_text='P(LS≥lsi)', range=[0, 1.01], **shared_ax_props
+ )
+
+ fig.update_layout(
+ # title = f'{comp_id}',
+ margin=dict(b=5, r=5, l=5, t=5), # noqa: C408
+ height=300,
+ width=950,
+ paper_bgcolor='rgba(0,0,0,0)',
+ plot_bgcolor='rgba(0,0,0,0)',
+ showlegend=False,
+ )
+
+ with open(f'{output_path}/{comp_id}.html', 'w') as f: # noqa: PTH123
+ f.write(fig.to_html(full_html=False, include_plotlyjs='cdn'))
+
+ # rm: # store the source database file(s) in the output directory for future reference
+ # rm: shutil.copy(comp_db_path, Path(output_path) / Path(comp_db_path).name)
+
+ # rm: if frag_meta is not None:
+ # rm: shutil.copy(comp_db_meta, Path(output_path) / Path(comp_db_meta).name)
+
+ if create_zip == '1':
+ files = [f'{output_path}/{file}' for file in os.listdir(output_path)]
+
+ with ZipFile(output_path + '.zip', 'w') as zip: # noqa: A001
+ for file in files:
+ zip.write(file, arcname=Path(file).name)
+
+ shutil.rmtree(output_path)
+
+
+def plot_repair(
+ comp_db_path, output_path, create_zip='0'
+): # noqa: C901, D103, PLR0912, PLR0915
+ # TODO: # noqa: TD002
+ # change limit_states names
+
+ if create_zip == '1':
+ output_path = output_path[:-4]
+
+ # initialize the output dir
+
+ # if exists, remove it
+ if os.path.exists(output_path): # noqa: PTH110
+ shutil.rmtree(output_path)
+
+ # then create it
+ Path(output_path).mkdir(parents=True, exist_ok=True)
+ # open the input component database
+ repair_df = convert_to_MultiIndex(
+ convert_to_MultiIndex(pd.read_csv(comp_db_path, index_col=0), axis=1), axis=0
+ )
+
+ # The metadata is assumed to be stored at the same location under the same
+ # name, in a JSON file
+ comp_db_meta = comp_db_path[:-3] + 'json'
+
+ # check if the metadata is there and open it
+ if Path(comp_db_meta).is_file():
+ with open(comp_db_meta) as f: # noqa: PTH123
+ repair_meta = json.load(f)
+ else:
+ # otherwise, assign None to facilitate checks later
+ repair_meta = None
+
+ # perform the plotting for each component independently
+ for comp_id in repair_df.index.unique(level=0): # [410:418]:
+ # perform plotting for each repair consequence type independently
+ for c_type in repair_df.loc[comp_id].index:
+ # load the component-specific part of the database
+ comp_data = repair_df.loc[(comp_id, c_type)] # noqa: RUF031, RUF100
+
+ # and the component-specific metadata - if it exists
+ if repair_meta != None: # noqa: E711
+ if comp_id in repair_meta.keys(): # noqa: SIM118
+ comp_meta = repair_meta[comp_id]
+ else:
+ comp_meta = None
+ else:
+ comp_meta = None
+
+ # start plotting
+
+ # create a figure
+ fig = go.Figure()
+
+ # create two subplots, one for the curve and one for the tabular data
+ fig = make_subplots(
+ rows=1,
+ cols=3,
+ specs=[
+ [{'type': 'xy'}, {'type': 'xy'}, {'type': 'table'}],
+ ],
+ shared_yaxes=True,
+ column_widths=[0.45, 0.05, 0.52],
+ horizontal_spacing=0.02,
+ vertical_spacing=0.02,
+ )
+
+ # initialize the table collecting parameters
+ table_vals = []
+
+ # get all potential limit state labels
+ limit_states = [
+ val for val in comp_data.index.unique(level=0) if 'DS' in val
+ ]
+
+ # check for each limit state
+ for LS in limit_states: # noqa: N806
+ fields = ['Theta_0', 'Family', 'Theta_1']
+
+ comp_data_LS = comp_data[LS] # noqa: N806
+
+ for optional_label in ['Family', 'Theta_1']:
+ if optional_label not in comp_data_LS.index:
+ comp_data_LS[optional_label] = None
+
+ # if any of the fields above is set
+ if (
+ np.all(pd.isna(comp_data_LS[fields].values)) == False
+ ): # noqa: E712
+ # Then we assume that is valuable information that needs to be
+ # shown in the table while the other fields will show 'null'
+ table_vals.append(np.insert(comp_data_LS[fields].values, 0, LS))
+
+ # transpose the table to work well with plotly's API
+ table_vals = np.array(table_vals).T
+
+ # copy the collected parameters into another object
+ model_params = deepcopy(table_vals)
+
+ # replace parameters for multilinear functions with 'varies'
+ for ds_i, val in enumerate(table_vals[1]):
+ if '|' in str(val):
+ table_vals[1][ds_i] = 'varies'
+ elif pd.isna(val) == True: # noqa: E712
+ table_vals[1][ds_i] = 'N/A'
+ else:
+ conseq_val = float(val)
+ if conseq_val < 1:
+ table_vals[1][ds_i] = f'{conseq_val:.4g}'
+ elif conseq_val < 10: # noqa: PLR2004
+ table_vals[1][ds_i] = f'{conseq_val:.3g}'
+ elif conseq_val < 1e6: # noqa: PLR2004
+ table_vals[1][ds_i] = f'{conseq_val:.0f}'
+ else:
+ table_vals[1][ds_i] = f'{conseq_val:.3g}'
+
+ # round dispersion parameters to 2 digits
+ table_vals[-1] = [
+ f'{float(sig):.2f}' if pd.isna(sig) == False else 'N/A' # noqa: E712
+ for sig in table_vals[-1]
+ ]
+
+ # replace missing distribution labels with N/A
+ table_vals[-2] = [
+ family if pd.isna(family) == False else 'N/A' # noqa: E712
+ for family in table_vals[-2]
+ ]
+
+ # converted simultaneous damage models might have a lot of DSs
+ if table_vals.shape[1] > 8: # noqa: PLR2004
+ lots_of_ds = True
+ else:
+ lots_of_ds = False
+
+ # set the font size
+ font_size = 16 if lots_of_ds == False else 11 # noqa: E712
+
+ # create the table
+
+ # properties shared between consequence types
+ c_pad = (9 - len(c_type)) * ' ' # noqa: F841
+ table_header = [
+ 'Damage
State',
+ 'Median
Conseq.',
+ ' Conseq.
Distribution',
+ ' Conseq.
Dispersion',
+ ]
+ cell_alignment = ['center', 'center', 'center', 'center']
+ column_widths = [45, 45, 60, 55]
+
+ fig.add_trace(
+ go.Table(
+ columnwidth=column_widths,
+ header=dict( # noqa: C408
+ values=table_header,
+ align=cell_alignment,
+ fill=dict(color='rgb(200,200,200)'), # noqa: C408
+ line=dict(color='black'), # noqa: C408
+ font=dict(color='black', size=16), # noqa: C408
+ ),
+ cells=dict( # noqa: C408
+ values=table_vals,
+ height=30 if lots_of_ds == False else 19, # noqa: E712
+ align=cell_alignment,
+ fill=dict(color='rgba(0,0,0,0)'), # noqa: C408
+ line=dict(color='black'), # noqa: C408
+ font=dict(color='black', size=font_size), # noqa: C408
+ ),
+ ),
+ row=1,
+ col=3,
+ )
+
+ # get the number (and label) of damage states
+ limit_states = model_params[0]
+
+ # mapping to a color in a sequential color scale
+ colors = {
+ 1: [
+ cl.scales['3']['seq']['PuBu'][2],
+ ],
+ 2: cl.scales['3']['seq']['PuBu'][1:],
+ 3: cl.scales['4']['seq']['PuBu'][1:],
+ 4: cl.scales['6']['seq']['PuBu'][2:],
+ 5: cl.scales['7']['seq']['PuBu'][2:],
+ 6: cl.scales['7']['seq']['PuBu'][1:],
+ 7: cl.scales['7']['seq']['PuBu'],
+ # Simultaneous elevators have a lot of DSs and need special
+ # treatment
+ 15: (
+ cl.scales['9']['seq']['PuBu']
+ + cl.scales['8']['seq']['YlGnBu'][::-1][1:-1]
+ ),
+ }
+
+ if comp_data.loc[('Incomplete', '')] != 1: # noqa: RUF031, RUF100
+ # set the parameters for displaying uncertainty
+ p_min, p_max = 0.16, 0.84 # +- 1 std # noqa: F841
+
+ # initialize quantity limits
+ q_min = 0
+ q_max = -np.inf
+
+ # walk through median parameters
+ for mu_capacity in model_params[1]:
+ # if any of them is quantity dependent
+ if '|' in str(mu_capacity):
+ # then parse the quantity limits
+ q_lims = np.array(
+ mu_capacity.split('|')[1].split(','), dtype=float
+ )
+
+ # Add the lower and upper limits to get a q_max that
+ # will lead to a nice plot
+ q_max = np.max([np.sum(q_lims), q_max])
+
+ # if none of the medians is quantity-dependent,
+ if q_max == -np.inf:
+ # Set q_max to 1.0 to scale the plot appropriately
+ q_max = 1.0
+
+ # anchor locations for annotations providing DS information
+ x_loc = 0.533 if lots_of_ds == False else 0.535 # noqa: E712
+ y_space = 0.088 if lots_of_ds == False else 0.0543 # noqa: E712
+ y_loc = (
+ 0.784 + y_space if lots_of_ds == False else 0.786 + y_space
+ ) # noqa: E712
+ info_font_size = 10 if lots_of_ds == False else 9 # noqa: E712
+
+ # x anchor for annotations providing median function data
+ x_loc_func = 0.697 if lots_of_ds == False else 0.689 # noqa: E712
+
+ need_x_axis = False
+
+ for ds_i, mu_capacity in enumerate(model_params[1]):
+ # first, check if the median is a function:
+ if '|' in str(mu_capacity):
+ need_x_axis = True
+
+ # get the consequence (Y) and quantity (X) values
+ c_vals, q_vals = np.array(
+ [vals.split(',') for vals in mu_capacity.split('|')],
+ dtype=float,
+ )
+
+ else:
+ c_vals = np.array(
+ [
+ mu_capacity,
+ ],
+ dtype=float,
+ )
+ q_vals = np.array(
+ [
+ 0.0,
+ ],
+ dtype=float,
+ )
+
+ # add one more value to each end to represent the
+ # constant parts
+ q_vals = np.insert(q_vals, 0, q_min)
+ c_vals = np.insert(c_vals, 0, c_vals[0])
+
+ q_vals = np.append(q_vals, q_max)
+ c_vals = np.append(c_vals, c_vals[-1])
+
+ # plot the median consequence
+ fig.add_trace(
+ go.Scatter(
+ x=q_vals,
+ y=c_vals,
+ mode='lines',
+ line=dict( # noqa: C408
+ width=3,
+ color=colors[np.min([len(model_params[1]), 7])][
+ ds_i % 7
+ ],
+ ),
+ name=model_params[0][ds_i],
+ legendgroup=model_params[0][ds_i],
+ ),
+ row=1,
+ col=1,
+ )
+
+ # check if dispersion is prescribed for this consequence
+ dispersion = model_params[3][ds_i]
+ if (pd.isna(dispersion) == False) and (
+ dispersion != 'N/A'
+ ): # noqa: E712
+ dispersion = float(dispersion)
+
+ if model_params[2][ds_i] == 'normal':
+ std_plus = c_vals * (1 + dispersion)
+ std_minus = c_vals * (1 - dispersion)
+
+ std_plus_label = 'mu + std'
+ std_minus_label = 'mu - std'
+ elif model_params[2][ds_i] == 'lognormal':
+ std_plus = np.exp(np.log(c_vals) + dispersion)
+ std_minus = np.exp(np.log(c_vals) - dispersion)
+
+ std_plus_label = 'mu + lnstd'
+ std_minus_label = 'mu - lnstd'
+ else:
+ continue
+
+ # plot the std lines
+ fig.add_trace(
+ go.Scatter(
+ x=q_vals,
+ y=std_plus,
+ mode='lines',
+ line=dict( # noqa: C408
+ width=1,
+ color=colors[np.min([len(model_params[1]), 7])][
+ ds_i % 7
+ ],
+ dash='dash',
+ ),
+ name=model_params[0][ds_i] + ' ' + std_plus_label,
+ legendgroup=model_params[0][ds_i],
+ showlegend=False,
+ ),
+ row=1,
+ col=1,
+ )
+
+ fig.add_trace(
+ go.Scatter(
+ x=q_vals,
+ y=std_minus,
+ mode='lines',
+ line=dict( # noqa: C408
+ width=1,
+ color=colors[np.min([len(model_params[1]), 7])][
+ ds_i % 7
+ ],
+ dash='dash',
+ ),
+ name=model_params[0][ds_i] + ' ' + std_minus_label,
+ legendgroup=model_params[0][ds_i],
+ showlegend=False,
+ ),
+ row=1,
+ col=1,
+ )
+
+ # and plot distribution pdfs on top
+ if model_params[2][ds_i] == 'normal':
+ sig = c_vals[-1] * dispersion
+ q_pdf = np.linspace(
+ np.max(
+ [norm.ppf(0.025, loc=c_vals[-1], scale=sig), 0]
+ ),
+ norm.ppf(0.975, loc=c_vals[-1], scale=sig),
+ num=100,
+ )
+ c_pdf = norm.pdf(q_pdf, loc=c_vals[-1], scale=sig)
+
+ elif model_params[2][ds_i] == 'lognormal':
+ q_pdf = np.linspace(
+ np.exp(
+ norm.ppf(
+ 0.025,
+ loc=np.log(c_vals[-1]),
+ scale=dispersion,
+ )
+ ),
+ np.exp(
+ norm.ppf(
+ 0.975,
+ loc=np.log(c_vals[-1]),
+ scale=dispersion,
+ )
+ ),
+ num=100,
+ )
+ c_pdf = norm.pdf(
+ np.log(q_pdf),
+ loc=np.log(c_vals[-1]),
+ scale=dispersion,
+ )
+
+ c_pdf /= np.max(c_pdf)
+
+ fig.add_trace(
+ go.Scatter(
+ x=c_pdf,
+ y=q_pdf,
+ mode='lines',
+ line=dict( # noqa: C408
+ width=1,
+ color=colors[np.min([len(model_params[1]), 7])][
+ ds_i % 7
+ ],
+ ),
+ fill='tozeroy',
+ name=model_params[0][ds_i] + ' pdf',
+ legendgroup=model_params[0][ds_i],
+ showlegend=False,
+ ),
+ row=1,
+ col=2,
+ )
+
+ # adjust y_loc for annotations
+ y_loc = y_loc - y_space
+
+ # add annotations for median function parameters, if needed
+ if '|' in str(mu_capacity):
+ c_vals, q_vals = (
+ vals.split(',') for vals in mu_capacity.split('|')
+ )
+
+ func_text = f'Multilinear Function Breakpoints
Medians: {", ".join(c_vals)}
Quantities: {", ".join(q_vals)}'
+
+ fig.add_annotation(
+ text='*',
+ hovertext=func_text,
+ xref='paper',
+ yref='paper',
+ axref='pixel',
+ ayref='pixel',
+ xanchor='left',
+ yanchor='bottom',
+ font=dict(size=info_font_size), # noqa: C408
+ showarrow=False,
+ ax=0,
+ ay=0,
+ x=x_loc_func,
+ y=y_loc,
+ )
+
+ # check if metadata is available
+ if comp_meta != None: # noqa: E711
+ ds_meta = comp_meta['DamageStates'][f'DS{ds_i + 1}']
+
+ if ds_meta.get('Description', False) != False: # noqa: E712
+ ds_description = '
'.join(
+ wrap(ds_meta['Description'], width=55)
+ )
+ else:
+ ds_description = ''
+
+ if ds_meta.get('RepairAction', False) != False: # noqa: E712
+ ds_repair = '
'.join(
+ wrap(ds_meta['RepairAction'], width=55)
+ )
+ else:
+ ds_repair = ''
+
+ if ds_repair != '':
+ ds_text = f'{model_params[0][ds_i]}
{ds_description}
Repair Action
{ds_repair}'
+ else:
+ ds_text = (
+ f'{model_params[0][ds_i]}
{ds_description}'
+ )
+
+ fig.add_annotation(
+ text='*',
+ hovertext=ds_text,
+ xref='paper',
+ yref='paper',
+ axref='pixel',
+ ayref='pixel',
+ xanchor='left',
+ yanchor='bottom',
+ font=dict(size=info_font_size), # noqa: C408
+ showarrow=False,
+ ax=0,
+ ay=0,
+ x=x_loc,
+ y=y_loc,
+ )
+
+ else:
+ # add an empty figure still; to highlight incomplete data
+ fig.add_trace(
+ go.Scatter(
+ x=[
+ 0,
+ ],
+ y=[
+ 0,
+ ],
+ mode='lines',
+ line=dict(width=3, color=colors[1][0]), # noqa: C408
+ name=f'Incomplete Repair {c_type} Consequence Data',
+ ),
+ row=1,
+ col=2,
+ )
+
+ shared_ax_props = dict( # noqa: C408
+ showgrid=True,
+ linecolor='black',
+ gridwidth=0.05,
+ gridcolor='rgb(220,220,220)',
+ )
+
+ quantity_unit = comp_data.loc['Quantity', 'Unit']
+ if quantity_unit in ['unitless', '1 EA', '1 ea']:
+ quantity_unit = '-'
+ elif quantity_unit.split()[0] == '1':
+ quantity_unit = quantity_unit.split()[1]
+
+ dv_unit = comp_data.loc[('DV', 'Unit')] # noqa: RUF031, RUF100
+ if dv_unit == 'unitless':
+ dv_unit = '-'
+
+ # layout settings
+ fig.update_layout(
+ # minimize margins
+ margin=dict(b=50, r=5, l=5, t=5), # noqa: C408
+ # height and width targets single-column web view
+ height=400,
+ width=950,
+ # transparent background and paper
+ paper_bgcolor='rgba(0,0,0,0)',
+ plot_bgcolor='rgba(0,0,0,0)',
+ # legend on to allow turning DSs off
+ showlegend=True,
+ xaxis1=(
+ dict(
+ title_text=f'Damage Quantity [{quantity_unit}]',
+ range=[q_min, q_max],
+ **shared_ax_props,
+ )
+ if need_x_axis == True # noqa: E712
+ else dict(showgrid=False, showticklabels=False)
+ ), # noqa: C408
+ yaxis1=dict(
+ title_text=f'{c_type} [{dv_unit}]',
+ rangemode='tozero',
+ **shared_ax_props,
+ ),
+ xaxis2=dict( # noqa: C408
+ showgrid=False,
+ showticklabels=False,
+ title_text='',
+ ),
+ yaxis2=dict(showgrid=False, showticklabels=False), # noqa: C408
+ # position legend to top of the figure
+ legend=dict( # noqa: C408
+ yanchor='top',
+ xanchor='right',
+ font=dict(size=12), # noqa: C408
+ orientation='v',
+ y=1.0,
+ x=-0.08,
+ ),
+ )
+
+ # save figure to html
+ with open(
+ f'{output_path}/{comp_id}-{c_type}.html', 'w'
+ ) as f: # noqa: PTH123
+ # Minimize size by not saving javascript libraries which means
+ # internet connection is required to view the figure.
+ f.write(fig.to_html(full_html=False, include_plotlyjs='cdn'))
+
+ # rm: # store the source database file(s) in the output directory for future reference
+ # rm: shutil.copy(comp_db_path, Path(output_path) / Path(comp_db_path).name)
+
+ # rm: if repair_meta is not None:
+ # rm: shutil.copy(comp_db_meta, Path(output_path) / Path(comp_db_meta).name)
+
+ if create_zip == '1':
+ files = [f'{output_path}/{file}' for file in os.listdir(output_path)]
+
+ with ZipFile(output_path + '.zip', 'w') as zip: # noqa: A001
+ for file in files:
+ zip.write(file, arcname=Path(file).name)
+
+ shutil.rmtree(output_path)
+
+
+def check_diff(comp_db_path, output_path): # noqa: D103
+ # if the output path already exists
+ if os.path.exists(output_path): # noqa: PTH110
+ # check for both the csv and json files
+ for ext in ['csv', 'json']:
+ comp_db = comp_db_path[:-3] + ext
+
+ if not Path(comp_db).is_file():
+ continue
+
+ # get the name of the db file
+ source_path = Path(comp_db).parents[0]
+ comp_db = Path(comp_db).name
+
+ # check if a file with the same name exists in the output dir
+ if comp_db in os.listdir(output_path):
+ # open the two files and compare them
+ with open(Path(source_path) / comp_db) as f1, open( # noqa: PTH123
+ Path(output_path) / comp_db
+ ) as f2:
+ if ext == 'csv':
+ new_file = f1.readlines()
+ old_file = f2.readlines()
+
+ # compare every line in the new file with the old file
+ # if every line exists in the old file, continue with the next file
+ if new_file == old_file:
+ continue
+
+ # if at least one line does not match, we need to generate
+ else: # noqa: RET507
+ return True
+
+ elif ext == 'json':
+ new_file = json.load(f1)
+ old_file = json.load(f2)
+
+ # if the two dicts are identical, continue with the next file
+ if sorted(new_file.items()) == sorted(old_file.items()):
+ continue
+
+ # otherwise, we need to generate
+ else: # noqa: RET507
+ return True
+
+ # if there is no db file in the output dir, we need to generate
+ else:
+ return True
+
+ # if both files were identical, there is no need to generate
+ return False
+
+ # if the output path does not exist, we need to generate
+ else: # noqa: RET505
+ return True
+
+
+def main(args): # noqa: D103
+ parser = argparse.ArgumentParser()
+ parser.add_argument('viz_type')
+ parser.add_argument('comp_db_path')
+ parser.add_argument(
+ '-o', '--output_path', default='./comp_viz/'
+ ) # replace with None
+ parser.add_argument('-z', '--zip', default='0')
+
+ args = parser.parse_args(args)
+
+ viz_type = args.viz_type
+ comp_db_path = args.comp_db_path
+ output_path = args.output_path
+ create_zip = args.zip
+
+ if viz_type == 'fragility':
+ plot_fragility(comp_db_path, output_path, create_zip)
+
+ elif viz_type == 'repair':
+ plot_repair(comp_db_path, output_path, create_zip)
+
+ elif viz_type == 'query':
+ if comp_db_path == 'default_db':
+ print(pelicun_path) # noqa: T201
+
+ raise ValueError(f'Invalid `viz_type`: {viz_type}')
+
+
+if __name__ == '__main__':
+ main(sys.argv[1:])
diff --git a/doc/source/_static/css/custom.css b/doc/source/_static/css/custom.css
new file mode 100644
index 00000000..d1967bc2
--- /dev/null
+++ b/doc/source/_static/css/custom.css
@@ -0,0 +1,33 @@
+.wy-nav-content {
+ max-width: 1200px;
+}
+
+
+.math {
+ text-align: left;
+}
+
+.eqno {
+ float: right;
+}
+
+
+#div.wy-side-scroll{
+# background:#cb463f;
+#}
+
+div.wy-menu.wy-menu-vertical > .caption {
+ color: #cb463f;
+}
+
+# LIGHT BLUE background:#0099ff
+# BLUE: background:#0B619C
+# ADAM RED: background:#cb463f;
+
+span.caption.caption-text{
+ color: #000000;
+}
+
+td{
+ white-space: normal !important;
+}
diff --git a/doc/source/_templates/custom-class-template.rst b/doc/source/_templates/custom-class-template.rst
new file mode 100644
index 00000000..b29757c5
--- /dev/null
+++ b/doc/source/_templates/custom-class-template.rst
@@ -0,0 +1,32 @@
+{{ fullname | escape | underline}}
+
+.. currentmodule:: {{ module }}
+
+.. autoclass:: {{ objname }}
+ :members:
+ :show-inheritance:
+ :inherited-members:
+
+ {% block methods %}
+ .. automethod:: __init__
+
+ {% if methods %}
+ .. rubric:: {{ _('Methods') }}
+
+ .. autosummary::
+ {% for item in methods %}
+ ~{{ name }}.{{ item }}
+ {%- endfor %}
+ {% endif %}
+ {% endblock %}
+
+ {% block attributes %}
+ {% if attributes %}
+ .. rubric:: {{ _('Attributes') }}
+
+ .. autosummary::
+ {% for item in attributes %}
+ ~{{ name }}.{{ item }}
+ {%- endfor %}
+ {% endif %}
+ {% endblock %}
diff --git a/doc/source/_templates/custom-module-template.rst b/doc/source/_templates/custom-module-template.rst
new file mode 100644
index 00000000..dc535564
--- /dev/null
+++ b/doc/source/_templates/custom-module-template.rst
@@ -0,0 +1,63 @@
+{{ fullname | escape | underline}}
+
+.. automodule:: {{ fullname }}
+ :members:
+
+ {% block attributes %}
+ {% if attributes %}
+ .. rubric:: {{ _('Module Attributes') }}
+
+ .. autosummary::
+ {% for item in attributes %}
+ {{ item }}
+ {%- endfor %}
+ {% endif %}
+ {% endblock %}
+
+ {% block functions %}
+ {% if functions %}
+ .. rubric:: {{ _('Functions') }}
+
+ .. autosummary::
+ {% for item in functions %}
+ {{ item }}
+ {%- endfor %}
+ {% endif %}
+ {% endblock %}
+
+ {% block classes %}
+ {% if classes %}
+ .. rubric:: {{ _('Classes') }}
+
+ .. autosummary::
+ :template: custom-class-template.rst
+ {% for item in classes %}
+ {{ item }}
+ {%- endfor %}
+ {% endif %}
+ {% endblock %}
+
+ {% block exceptions %}
+ {% if exceptions %}
+ .. rubric:: {{ _('Exceptions') }}
+
+ .. autosummary::
+ {% for item in exceptions %}
+ {{ item }}
+ {%- endfor %}
+ {% endif %}
+ {% endblock %}
+
+{% block modules %}
+{% if modules %}
+.. rubric:: Modules
+
+.. autosummary::
+ :toctree:
+ :template: custom-module-template.rst
+ :recursive:
+{% for item in modules %}
+ {{ item }}
+{%- endfor %}
+{% endif %}
+{% endblock %}
diff --git a/doc/source/about/about.rst b/doc/source/about/about.rst
new file mode 100644
index 00000000..8d06edae
--- /dev/null
+++ b/doc/source/about/about.rst
@@ -0,0 +1,11 @@
+.. _about:
+
+.. admonition:: Coming soon
+
+ This section is under construction.
+
+*******
+ About
+*******
+
+About the damage and loss model library.
diff --git a/doc/source/conf.py b/doc/source/conf.py
new file mode 100644
index 00000000..007f64c7
--- /dev/null
+++ b/doc/source/conf.py
@@ -0,0 +1,100 @@
+"""Damage and Loss Model Library Sphinx configuration."""
+
+# Configuration file for the Sphinx documentation builder.
+#
+# This file only contains a selection of the most common options. For a full
+# list see the documentation:
+# https://www.sphinx-doc.org/en/master/usage/configuration.html
+
+# -- Path setup --------------------------------------------------------------
+
+# If extensions (or modules to document with autodoc) are in another directory,
+# add these directories to sys.path here. If the directory is relative to the
+# documentation root, use os.path.abspath to make it absolute, like shown here.
+#
+from datetime import datetime
+import os
+import sys
+
+sys.path.insert(0, os.path.abspath('./_extensions'))
+
+# -- Project information -----------------------------------------------------
+project = 'Damage and Loss Model Library'
+copyright = (
+ f'{datetime.now().year}, Leland Stanford Junior '
+ f'University and The Regents of the University of California'
+)
+
+# -- General configuration ---------------------------------------------------
+
+# Add any Sphinx extension module names here, as strings. They can be
+# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
+# ones.
+extensions = [
+ 'numpydoc',
+ 'sphinx_design',
+ 'sphinxcontrib.bibtex',
+ 'sphinx.ext.autodoc',
+ 'sphinx.ext.intersphinx',
+ 'sphinx.ext.mathjax',
+ 'sphinx.ext.viewcode',
+ 'sphinx.ext.githubpages',
+ 'sphinx.ext.autosummary',
+ 'sphinx.ext.intersphinx',
+ 'sphinx.ext.doctest',
+ 'sphinx_generate_dl_doc',
+]
+
+# Add any paths that contain templates here, relative to this directory.
+templates_path = ['_templates']
+
+# Add any paths that contain custom static files (such as style sheets) here,
+# relative to this directory. They are copied after the builtin static files,
+# so a file named "default.css" will overwrite the builtin "default.css".
+html_static_path = ['_static']
+
+html_css_files = ['css/custom.css']
+
+# List of patterns, relative to source directory, that match files and
+# directories to ignore when looking for source files.
+# This pattern also affects html_static_path and html_extra_path.
+exclude_patterns = []
+
+# Extension configuration
+
+autosummary_generate = True # Turn on sphinx.ext.autosummary
+
+intersphinx_mapping = {
+ 'python': ('https://docs.python.org/3/', None),
+ 'numpy': ('https://numpy.org/doc/stable/objects.inv', None),
+ 'scipy': ('https://docs.scipy.org/doc/scipy/objects.inv', None),
+}
+
+numpydoc_show_class_members = False # TODO(JVM): remove and extend docstrings
+
+nbsphinx_custom_formats = {
+ '.pct.py': ['jupytext.reads', {'fmt': 'py:percent'}],
+}
+
+# -- Options for HTML output -------------------------------------------------
+
+# The theme to use for HTML and HTML Help pages. See the documentation for
+# a list of builtin themes.
+#
+html_theme = 'sphinx_rtd_theme'
+
+html_theme_options = {
+ 'analytics_id': None, # TODO (AZ): Add analytics ID.
+ 'logo_only': True,
+ 'collapse_navigation': False,
+ 'prev_next_buttons_location': None,
+ 'navigation_depth': 8,
+ 'style_nav_header_background': '#F2F2F2',
+}
+html_show_sphinx = False # Removes "Built with Sphinx using a theme [...]"
+html_show_sourcelink = (
+ False # Remove 'view source code' from top of page (for html, not python)
+)
+numfig = True
+bibtex_bibfiles = ['references.bib']
+bibtex_style = 'plain'
diff --git a/doc/source/index.rst b/doc/source/index.rst
new file mode 100644
index 00000000..2d1714e4
--- /dev/null
+++ b/doc/source/index.rst
@@ -0,0 +1,20 @@
+:notoc:
+
+===============================
+ Damage and Loss Model Library
+===============================
+
+.. warning::
+
+ Development Preview Only.
+ This documentation is intended for internal review and demonstration purposes.
+ It is not finalized or ready for public use.
+
+.. toctree::
+ :caption: About
+ :maxdepth: 8
+
+ about/about.rst
+ release_notes/index.rst
+ dl_doc/damage/index.rst
+ dl_doc/repair/index.rst
diff --git a/doc/source/references.bib b/doc/source/references.bib
new file mode 100644
index 00000000..e69de29b
diff --git a/doc/source/release_notes/index.rst b/doc/source/release_notes/index.rst
new file mode 100644
index 00000000..aade0af6
--- /dev/null
+++ b/doc/source/release_notes/index.rst
@@ -0,0 +1,16 @@
+.. _release_notes:
+
+*************
+Release Notes
+*************
+
+The following sections document the notable changes of each release.
+The sequence of all changes is available in the `commit logs `_.
+
+Version 1
+-----------
+
+.. toctree::
+ :maxdepth: 2
+
+ v1.0
diff --git a/doc/source/release_notes/v1.0.rst b/doc/source/release_notes/v1.0.rst
new file mode 100644
index 00000000..7d988c25
--- /dev/null
+++ b/doc/source/release_notes/v1.0.rst
@@ -0,0 +1,10 @@
+.. _changes_v1_0:
+
+==========================
+Version 1.0 (May 19, 2023)
+==========================
+
+Initial Release.
+
+- FEMA P-58 2nd edition.
+- Hazus Earthquake Model for Buildings.
diff --git a/flood/building/portfolio/Hazus v6.1/consequence_repair.csv b/flood/building/portfolio/Hazus v6.1/consequence_repair.csv
new file mode 100644
index 00000000..7758b770
--- /dev/null
+++ b/flood/building/portfolio/Hazus v6.1/consequence_repair.csv
@@ -0,0 +1,819 @@
+ID,Incomplete,Demand-Type,Demand-Unit,Demand-Offset,Demand-Directional,DV-Unit,LossFunction-Theta_0
+RES1.FIA.contents.one_floor.no_basement.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 12.0, 25.0, 35.0, 36.0, 38.0, 41.0, 45.0, 50.0, 55.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FIA.contents.one_floor.with_basement.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 7.0, 8.0, 16.0, 20.0, 22.0, 28.0, 33.0, 39.0, 44.0, 50.0, 55.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FIA.contents.two_floors.no_basement.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 8.0, 11.0, 19.0, 23.0, 28.0, 33.0, 39.0, 44.0, 50.0, 54.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FIA-Modified.contents.two_floors.with_basement.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 7.0, 8.0, 16.0, 18.0, 25.0, 29.0, 33.0, 37.0, 42.0, 46.0, 52.0, 55.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FIA-Modified.contents.three_or_more_floors.no_basement.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 7.0, 15.0, 21.0, 22.0, 23.0, 25.0, 27.0, 30.0, 35.0, 40.0, 43.0, 45.0, 48.0, 50.0, 52.0, 54.0, 56.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FIA-Modified.contents.three_or_more_floors.with_basement.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 7.0, 8.0, 15.0, 22.0, 27.0, 28.0, 29.0, 30.0, 32.0, 35.0, 39.0, 43.0, 46.0, 47.0, 50.0, 52.0, 53.0, 55.0, 57.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FIA.contents.split_level.no_basement.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 8.0, 11.0, 19.0, 23.0, 28.0, 33.0, 39.0, 44.0, 50.0, 54.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FIA-Modified.contents.split_level.with_basement.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 7.0, 8.0, 16.0, 18.0, 25.0, 29.0, 33.0, 37.0, 42.0, 46.0, 52.0, 55.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FIA.contents.one_floor.no_basement.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 17.0, 23.0, 29.0, 35.0, 40.0, 45.0, 50.0, 55.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FIA.contents.one_floor.with_basement.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 7.0, 8.0, 15.0, 20.0, 22.0, 28.0, 33.0, 39.0, 44.0, 50.0, 55.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FIA.contents.two_floors.no_basement.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 7.0, 9.0, 17.0, 22.0, 28.0, 33.0, 39.0, 44.0, 50.0, 54.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FIA-Modified.contents.two_floors.with_basement.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 7.0, 8.0, 15.0, 17.0, 23.0, 28.0, 33.0, 37.0, 42.0, 46.0, 52.0, 55.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FIA-Modified.contents.three_or_more_floors.no_basement.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 6.0, 11.0, 15.0, 19.0, 23.0, 26.0, 29.0, 32.0, 35.0, 41.0, 43.0, 45.0, 48.0, 50.0, 52.0, 54.0, 56.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FIA-Modified.contents.three_or_more_floors.with_basement.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 7.0, 8.0, 14.0, 18.0, 22.0, 25.0, 29.0, 31.0, 34.0, 36.0, 39.0, 44.0, 46.0, 47.0, 50.0, 52.0, 53.0, 55.0, 57.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FIA.contents.split_level.no_basement.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 7.0, 9.0, 17.0, 22.0, 28.0, 33.0, 39.0, 44.0, 50.0, 54.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FIA-Modified.contents.split_level.with_basement.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 7.0, 8.0, 15.0, 17.0, 23.0, 28.0, 33.0, 37.0, 42.0, 46.0, 52.0, 55.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE_IWR.contents.one_story.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 4.0, 16.0, 26.0, 36.0, 44.0, 52.0, 58.0, 64.0, 68.0, 72.0, 74.0, 76.0, 78.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE_IWR.contents.two_or_more_stories.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 2.0, 10.0, 18.0, 24.0, 32.0, 38.0, 42.0, 48.0, 52.0, 56.0, 60.0, 64.0, 66.0, 70.0, 72.0, 72.0, 74.0, 74.0, 76.0, 76.0, 78.0, 78.0, 80.0, 80.0, 82.0, 82.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE_IWR.contents.split_level.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 4.0, 6.0, 10.0, 16.0, 22.0, 30.0, 40.0, 50.0, 62.0, 72.0, 82.0, 92.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE_Chicago.contents.one_story.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 12.0, 24.0, 33.0, 35.0, 37.0, 41.0, 45.0, 50.0, 55.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE_Chicago.contents.one_story.with_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 6.0, 7.0, 8.0, 15.0, 19.0, 22.0, 28.0, 33.0, 39.0, 43.0, 49.0, 54.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE_Chicago.contents.split_level.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 19.0, 32.0, 41.0, 47.0, 51.0, 53.0, 55.0, 56.0, 62.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE_Chicago.contents.split_level.with_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 10.0, 15.0, 18.0, 31.0, 44.0, 52.0, 58.0, 61.0, 63.0, 64.0, 66.0, 69.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE_Chicago.contents.two_story.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 8.0, 11.0, 18.0, 23.0, 28.0, 33.0, 39.0, 44.0, 50.0, 54.0, 58.0, 62.0, 66.0, 70.0, 74.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE_Chicago.contents.two_story.with_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 6.0, 9.0, 11.0, 17.0, 22.0, 28.0, 33.0, 39.0, 44.0, 49.0, 55.0, 61.0, 64.0, 71.0, 76.0, 78.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE_Galveston.contents.one_&_1/2_story.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 22.0, 36.0, 45.0, 57.0, 66.0, 71.0, 77.0, 79.0, 82.0, 84.0, 86.0, 87.0, 89.0, 90.0, 91.0, 92.0, 92.0, 92.0, 93.0, 93.0, 93.0, 93.0, 93.0, 93.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE_Galveston.contents.one_story.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 8.0, 42.0, 60.0, 71.0, 77.0, 82.0, 85.0, 86.0, 87.0, 88.0, 88.0, 88.0, 89.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE_Galveston.contents.two_story.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 4.0, 24.0, 34.0, 40.0, 47.0, 53.0, 56.0, 58.0, 58.0, 58.0, 61.0, 66.0, 68.0, 76.0, 81.0, 86.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE_New-Orleans.contents.one_story.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 63.0, 82.0, 85.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE_New-Orleans.contents.one_story.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE_New-Orleans.contents.two_story.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 37.0, 51.0, 51.0, 55.0, 55.0, 55.0, 55.0, 55.0, 73.0, 81.0, 87.0, 90.0, 93.0, 93.0, 93.0, 93.0, 93.0, 93.0, 93.0, 93.0, 93.0, 93.0, 93.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE_New-Orleans.contents.two_story.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE_St-Paul.contents.one_story-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 44.0, 54.0, 63.0, 68.0, 73.0, 75.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE_St-Paul.contents.two_story-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 44.0, 54.0, 63.0, 68.0, 73.0, 75.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE_Wilmington.contents.one_&_1/2_story.pile_foundation-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"6.0, 7.0, 8.0, 9.0, 9.0, 21.0, 31.0, 43.0, 54.0, 67.0, 70.0, 73.0, 76.0, 78.0, 81.0, 82.0, 84.0, 85.0, 86.0, 87.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE_Wilmington.contents.one_&_1/2_story-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 9.0, 21.0, 31.0, 37.0, 43.0, 51.0, 57.0, 63.0, 68.0, 74.0, 80.0, 81.0, 83.0, 84.0, 86.0, 87.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE_Wilmington.contents.one_&_1/2_story_with_1/2_living_area_below-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 6.0, 10.0, 15.0, 18.0, 21.0, 23.0, 24.0, 28.0, 34.0, 44.0, 54.0, 63.0, 73.0, 76.0, 79.0, 82.0, 85.0, 86.0, 87.0, 88.0, 89.0, 90.0, 91.0, 92.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE_Wilmington.contents.one_story.pile_foundation-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"9.0, 10.0, 13.0, 13.0, 14.0, 26.0, 38.0, 52.0, 64.0, 78.0, 81.0, 85.0, 88.0, 91.0, 95.0, 96.0, 97.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE_Wilmington.contents.one_story-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 11.0, 24.0, 36.0, 43.0, 46.0, 52.0, 59.0, 66.0, 73.0, 80.0, 87.0, 88.0, 90.0, 92.0, 94.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE_Wilmington.contents.one_story_with_1/2_living_area_below-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 11.0, 16.0, 20.0, 24.0, 28.0, 30.0, 32.0, 38.0, 46.0, 54.0, 63.0, 72.0, 82.0, 85.0, 89.0, 92.0, 95.0, 96.0, 97.0, 98.0, 98.0, 99.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE_Wilmington.contents.one_story_with_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"10.0, 12.0, 13.0, 13.0, 20.0, 34.0, 48.0, 52.0, 64.0, 78.0, 81.0, 85.0, 88.0, 91.0, 95.0, 96.0, 98.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE_Wilmington.contents.split_level-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 3.0, 15.0, 21.0, 25.0, 32.0, 44.0, 50.0, 55.0, 61.0, 66.0, 72.0, 75.0, 79.0, 83.0, 87.0, 91.0, 94.0, 94.0, 95.0, 96.0, 97.0, 98.0, 99.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE_Wilmington.contents.two_story.pile_foundation-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"6.0, 7.0, 8.0, 9.0, 10.0, 19.0, 29.0, 38.0, 45.0, 53.0, 55.0, 57.0, 59.0, 61.0, 63.0, 67.0, 71.0, 75.0, 78.0, 82.0, 86.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE_Wilmington.contents.two_story-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 7.0, 18.0, 26.0, 30.0, 40.0, 50.0, 52.0, 53.0, 55.0, 56.0, 58.0, 63.0, 68.0, 72.0, 77.0, 82.0, 86.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE_Wilmington.contents.two_story_with_1/2_living_area_below-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 10.0, 13.0, 15.0, 18.0, 19.0, 21.0, 25.0, 33.0, 40.0, 47.0, 54.0, 56.0, 59.0, 62.0, 65.0, 67.0, 71.0, 75.0, 79.0, 83.0, 87.0, 91.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES2.FIA.contents.mobile_home.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 3.0, 27.0, 49.0, 64.0, 70.0, 76.0, 78.0, 79.0, 81.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES2.FIA.contents.mobile_home.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 3.0, 27.0, 50.0, 65.0, 71.0, 76.0, 78.0, 79.0, 81.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES2.USACE_Chicago.contents.mobile_home-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 3.0, 27.0, 49.0, 64.0, 70.0, 76.0, 78.0, 79.0, 81.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES2.USACE_Galveston.contents.mobile_home-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 3.0, 23.0, 36.0, 43.0, 55.0, 66.0, 78.0, 86.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES2.USACE_New-Orleans.contents.mobile_home.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 39.0, 54.0, 75.0, 77.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES2.USACE_New-Orleans.contents.mobile_home.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES2.USACE_Wilmington.contents.mobile_home-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 6.0, 22.0, 32.0, 37.0, 50.0, 63.0, 74.0, 82.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3.USACE_Chicago.contents.apartment_unit_grade-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 12.0, 24.0, 33.0, 35.0, 37.0, 41.0, 45.0, 50.0, 55.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3.USACE_Chicago.contents.apartment_unit_sub_grade-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 6.0, 7.0, 8.0, 15.0, 19.0, 22.0, 28.0, 33.0, 39.0, 43.0, 49.0, 54.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3.USACE_Galveston.contents.apartment.living_area_on_one_floor-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 6.0, 34.0, 44.0, 55.0, 67.0, 77.0, 87.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3.USACE_Galveston.contents.condominium.living_area_on_multiple_floors-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 4.0, 24.0, 34.0, 40.0, 47.0, 53.0, 56.0, 58.0, 58.0, 58.0, 61.0, 66.0, 68.0, 76.0, 81.0, 86.0, 91.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES4.USACE_Galveston.contents.average_hotel/motel.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 19.0, 25.0, 29.0, 34.0, 39.0, 44.0, 49.0, 56.0, 65.0, 74.0, 82.0, 88.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES4.USACE_Galveston.contents.hotel.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 22.0, 28.0, 33.0, 37.0, 41.0, 44.0, 46.0, 49.0, 54.0, 60.0, 69.0, 81.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES4.USACE_Galveston.contents.motel_unit.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 16.0, 21.0, 25.0, 30.0, 36.0, 43.0, 52.0, 63.0, 76.0, 88.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES5.USACE_Galveston.contents.average_institutional_dormitory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 38.0, 60.0, 73.0, 81.0, 88.0, 94.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES6.USACE_Galveston.contents.nursing_home.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 38.0, 60.0, 73.0, 81.0, 88.0, 94.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.average_retail_trade_equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 26.0, 42.0, 56.0, 68.0, 78.0, 83.0, 85.0, 87.0, 88.0, 89.0, 90.0, 91.0, 92.0, 92.0, 92.0, 93.0, 93.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.antique.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 20.0, 75.0, 78.0, 85.0, 90.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.appliance_sales.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 16.0, 28.0, 58.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.appliance_sales.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 83.0, 91.0, 94.0, 95.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.large_auto_dealer.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 20.0, 50.0, 90.0, 95.0, 98.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.bait_stand.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 7.0, 11.0, 16.0, 22.0, 29.0, 36.0, 44.0, 52.0, 60.0, 69.0, 79.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.bakery.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 14.0, 35.0, 70.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.bakery.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 55.0, 65.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.boat_sales/service.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 41.0, 65.0, 83.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.boat_sales/service.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 13.0, 24.0, 43.0, 82.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.book_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 14.0, 21.0, 27.0, 35.0, 42.0, 49.0, 57.0, 65.0, 73.0, 82.0, 92.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.camera_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 33.0, 65.0, 88.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.carpet_and_paint_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 60.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.carpet_and_paint_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 40.0, 60.0, 80.0, 95.0, 97.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.mens_clothing.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 41.0, 60.0, 78.0, 94.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.mens_clothing.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 6.0, 37.0, 50.0, 75.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.crafts.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.crafts.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 30.0, 50.0, 70.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.chain_drug_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.fabric_store.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 30.0, 40.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.fabric_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 30.0, 50.0, 75.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.feed_store.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.feed_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 15.0, 15.0, 15.0, 25.0, 25.0, 25.0, 25.0, 50.0, 50.0, 50.0, 50.0, 75.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.florist.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 49.0, 60.0, 75.0, 78.0, 79.0, 82.0, 85.0, 89.0, 93.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.florist.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 85.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.fruit_stand.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 80.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.large_furniture_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 20.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.gas/butane_supply.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 46.0, 65.0, 75.0, 81.0, 86.0, 90.0, 94.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.gift_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 54.0, 63.0, 75.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.greenhouse.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 34.0, 50.0, 66.0, 80.0, 92.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.greenhouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 66.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.small_grocery.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 20.0, 20.0, 20.0, 20.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.small_grocery.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 35.0, 50.0, 65.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.medium_grocery.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 4.0, 80.0, 90.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.medium_grocery.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 4.0, 22.0, 44.0, 74.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.gun_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 30.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.gun_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 39.0, 58.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.hardware.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 12.0, 20.0, 29.0, 40.0, 50.0, 59.0, 67.0, 75.0, 84.0, 92.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.hardware.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 8.0, 33.0, 52.0, 70.0, 75.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.hobby_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 87.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.hobby_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 49.0, 64.0, 77.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.lawnmower.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 24.0, 46.0, 57.0, 65.0, 72.0, 79.0, 86.0, 91.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.lawnmower.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.liquor_store.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 4.0, 9.0, 16.0, 84.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.liquor_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 40.0, 60.0, 81.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.meat_market.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 78.0, 81.0, 84.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.meat_market.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.motorcycle_dealer.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 60.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.motorcycle_dealer.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 45.0, 65.0, 85.0, 85.0, 85.0, 85.0, 85.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.music_center.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 52.0, 72.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.music_center.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 66.0, 72.0, 75.0, 80.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.plant_nursery.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 4.0, 8.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.plant_nursery.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 20.0, 79.0, 88.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.paint_store.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 25.0, 30.0, 35.0, 40.0, 45.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.paint_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 40.0, 60.0, 70.0, 73.0, 76.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.pawn_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 60.0, 70.0, 70.0, 70.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.pawn_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 40.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.remnant_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.remnant_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 40.0, 60.0, 80.0, 90.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.service_station.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 39.0, 59.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.service_station.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 42.0, 62.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.shoe_repair.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 28.0, 38.0, 41.0, 44.0, 47.0, 47.0, 47.0, 47.0, 47.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.shoe_repair.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 23.0, 35.0, 48.0, 60.0, 74.0, 87.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.toy_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 40.0, 70.0, 85.0, 90.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.tractor_sales.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 4.0, 18.0, 28.0, 36.0, 44.0, 48.0, 52.0, 56.0, 60.0, 65.0, 70.0, 74.0, 79.0, 84.0, 88.0, 93.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.tractor_sales.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 17.0, 29.0, 44.0, 59.0, 70.0, 77.0, 81.0, 84.0, 88.0, 92.0, 95.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.trailer_sales.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 37.0, 60.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.trophy_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 35.0, 38.0, 56.0, 60.0, 60.0, 60.0, 60.0, 60.0, 61.0, 62.0, 64.0, 66.0, 68.0, 71.0, 76.0, 84.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.trophy_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 5.0, 12.0, 31.0, 66.0, 82.0, 92.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.upholstery_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 10.0, 10.0, 10.0, 30.0, 35.0, 40.0, 45.0, 50.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.upholstery_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 30.0, 40.0, 45.0, 50.0, 53.0, 56.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.used_appliances/cloth.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 40.0, 50.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.used_appliances/cloth.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 35.0, 40.0, 50.0, 60.0, 80.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.used_furniture.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 40.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.used_furniture.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 30.0, 45.0, 65.0, 80.0, 80.0, 85.0, 85.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.vacuum_cleaner_sales.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 25.0, 30.0, 35.0, 40.0, 40.0, 40.0, 60.0, 60.0, 60.0, 60.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.vacuum_cleaner_sales.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 70.0, 80.0, 90.0, 95.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.video_games.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 10.0, 20.0, 30.0, 45.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 75.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_Galveston.contents.video_games.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_New-Orleans.contents.bakery.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 98.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_New-Orleans.contents.bakery.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 74.0, 81.0, 85.0, 88.0, 96.0, 96.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_New-Orleans.contents.candy_store.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 98.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_New-Orleans.contents.candy_store.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 74.0, 81.0, 85.0, 88.0, 96.0, 96.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_New-Orleans.contents.clothing_store.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_New-Orleans.contents.clothing_store.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 48.0, 54.0, 54.0, 55.0, 55.0, 55.0, 55.0, 55.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_New-Orleans.contents.convenience_store.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 98.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_New-Orleans.contents.convenience_store.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 74.0, 81.0, 85.0, 88.0, 96.0, 96.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_New-Orleans.contents.department_store.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_New-Orleans.contents.department_store.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 48.0, 54.0, 54.0, 55.0, 55.0, 55.0, 55.0, 55.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_New-Orleans.contents.furniture_store.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_New-Orleans.contents.furniture_store.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 48.0, 54.0, 54.0, 55.0, 55.0, 55.0, 55.0, 55.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_New-Orleans.contents.gas_stations.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 98.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_New-Orleans.contents.gas_stations.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 74.0, 81.0, 85.0, 88.0, 96.0, 96.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_New-Orleans.contents.large_grocery.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 98.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_New-Orleans.contents.large_grocery.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 74.0, 81.0, 85.0, 88.0, 96.0, 96.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_New-Orleans.contents.neighborhood_grocery.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 98.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_New-Orleans.contents.neighborhood_grocery.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 74.0, 81.0, 85.0, 88.0, 96.0, 96.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_New-Orleans.contents.home_repair_store.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 88.0, 88.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_New-Orleans.contents.home_repair_store.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 45.0, 60.0, 65.0, 86.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_New-Orleans.contents.liquor_store.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 98.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_New-Orleans.contents.liquor_store.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 74.0, 81.0, 85.0, 88.0, 96.0, 96.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_New-Orleans.contents.shoe_store.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_New-Orleans.contents.shoe_store.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 48.0, 54.0, 54.0, 55.0, 55.0, 55.0, 55.0, 55.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_New-Orleans.contents.wine_store.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 98.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE_New-Orleans.contents.wine_store.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 74.0, 81.0, 85.0, 88.0, 96.0, 96.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.average_wholesale_trade-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 3.0, 16.0, 27.0, 36.0, 49.0, 57.0, 63.0, 69.0, 72.0, 76.0, 80.0, 82.0, 84.0, 86.0, 87.0, 87.0, 88.0, 89.0, 89.0, 89.0, 89.0, 89.0, 89.0, 89.0, 89.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.auto_parts.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 30.0, 59.0, 70.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.auto_parts/mufflers.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 40.0, 60.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.heavy_equipment_storage.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 14.0, 17.0, 20.0, 23.0, 25.0, 29.0, 35.0, 38.0, 42.0, 51.0, 63.0, 77.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.food_warehouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 40.0, 55.0, 70.0, 85.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.highway_material_storage.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 10.0, 10.0, 25.0, 25.0, 50.0, 50.0, 50.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.jewelry.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 15.0, 24.0, 33.0, 39.0, 45.0, 51.0, 56.0, 61.0, 65.0, 70.0, 74.0, 79.0, 83.0, 87.0, 92.0, 95.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.lumber_yard.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 30.0, 45.0, 60.0, 75.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.medical_supplies.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.medical_supplies.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 20.0, 27.0, 35.0, 43.0, 50.0, 57.0, 65.0, 73.0, 80.0, 88.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.municipal_storage_warehouse.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 40.0, 58.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.municipal_storage_warehouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 16.0, 19.0, 21.0, 23.0, 28.0, 35.0, 47.0, 67.0, 85.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.paper_products_warehouse.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 42.0, 58.0, 75.0, 87.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.paper_products_warehouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 27.0, 36.0, 44.0, 52.0, 59.0, 67.0, 73.0, 80.0, 90.0, 98.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.safety_equipment.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 25.0, 37.0, 50.0, 62.0, 75.0, 87.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.safety_equipment.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 25.0, 37.0, 50.0, 62.0, 75.0, 85.0, 93.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.sporting_goods.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.sporting_goods.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 30.0, 50.0, 53.0, 55.0, 57.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.sporting_goods_warehouse.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 50.0, 63.0, 75.0, 87.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.sporting_goods_warehouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 50.0, 63.0, 75.0, 87.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.storage_chemicals.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 15.0, 20.0, 25.0, 35.0, 45.0, 55.0, 65.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.storage_chemicals.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 20.0, 30.0, 40.0, 50.0, 60.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.storage_machine_parts.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 30.0, 40.0, 50.0, 50.0, 50.0, 75.0, 75.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.t.v._station.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 9.0, 9.0, 9.0, 9.0, 11.0, 13.0, 15.0, 18.0, 22.0, 26.0, 30.0, 35.0, 43.0, 54.0, 70.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.t.v._repair.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 7.0, 10.0, 11.0, 13.0, 16.0, 21.0, 27.0, 34.0, 42.0, 52.0, 63.0, 74.0, 86.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.t.v._repair.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.trailer_parts.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 50.0, 50.0, 50.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.trailer_parts.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 16.0, 28.0, 32.0, 40.0, 43.0, 46.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.warehouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 16.0, 19.0, 21.0, 23.0, 28.0, 35.0, 47.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.beer_warehouse.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 40.0, 55.0, 70.0, 85.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.beer_warehouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.bottled_gases_warehouse.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 35.0, 50.0, 50.0, 50.0, 60.0, 60.0, 60.0, 60.0, 60.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.bottled_gases_warehouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.cement_warehouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 40.0, 60.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.detergents_warehouse.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 10.0, 15.0, 20.0, 25.0, 35.0, 35.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.detergents_warehouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.heavy_machinery_warehouse.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 11.0, 17.0, 20.0, 23.0, 25.0, 29.0, 35.0, 42.0, 51.0, 63.0, 77.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.heavy_machinery_warehouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 25.0, 25.0, 35.0, 40.0, 50.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 85.0, 85.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.petroleum_warehouse.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 35.0, 50.0, 50.0, 50.0, 50.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.petroleum_warehouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 40.0, 60.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.western_auto.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 8.0, 16.0, 59.0, 65.0, 70.0, 73.0, 77.0, 81.0, 84.0, 87.0, 90.0, 93.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_Galveston.contents.western_auto.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 50.0, 75.0, 87.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_New-Orleans.contents.warehouse.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 70.0, 80.0, 96.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_New-Orleans.contents.warehouse.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 19.0, 31.0, 40.0, 45.0, 49.0, 54.0, 58.0, 63.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE_St-Paul.contents.warehouse.fresh_water-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 15.0, 31.0, 43.0, 53.0, 61.0, 67.0, 71.0, 73.0, 76.0, 77.0, 78.0, 79.0, 80.0, 81.0, 82.0, 83.0, 84.0, 85.0, 86.0, 87.0, 88.0, 89.0, 90.0, 91.0, 92.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_Galveston.contents.average_personal/repair_services.invetory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 4.0, 29.0, 46.0, 67.0, 79.0, 85.0, 91.0, 92.0, 92.0, 93.0, 94.0, 96.0, 96.0, 97.0, 97.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_Galveston.contents.auto_repair.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 56.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_Galveston.contents.auto_repair.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 50.0, 80.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_Galveston.contents.auto_service.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 40.0, 60.0, 85.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_Galveston.contents.barber_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 22.0, 29.0, 37.0, 48.0, 62.0, 78.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_Galveston.contents.barber_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 50.0, 75.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_Galveston.contents.beauty_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 70.0, 87.0, 94.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_Galveston.contents.beauty_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 31.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_Galveston.contents.boat_service.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 12.0, 20.0, 29.0, 40.0, 50.0, 59.0, 67.0, 75.0, 84.0, 92.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_Galveston.contents.boat_service.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 8.0, 33.0, 52.0, 70.0, 75.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_Galveston.contents.car_wash.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 25.0, 40.0, 50.0, 60.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_Galveston.contents.car_wash.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_Galveston.contents.cemetary_complex.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 34.0, 76.0, 88.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_Galveston.contents.cemetary_complex.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 92.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_Galveston.contents.cleaners.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 30.0, 50.0, 75.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_Galveston.contents.cleaners_substation.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 10.0, 75.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_Galveston.contents.cleaners_substation.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 49.0, 75.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_Galveston.contents.private_day_care.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_Galveston.contents.private_day_care.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_Galveston.contents.funeral_home.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 30.0, 60.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_Galveston.contents.laundry.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 10.0, 13.0, 16.0, 19.0, 22.0, 27.0, 33.0, 40.0, 47.0, 56.0, 65.0, 74.0, 84.0, 94.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_Galveston.contents.photo_studio.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 10.0, 10.0, 10.0, 60.0, 60.0, 60.0, 60.0, 60.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_Galveston.contents.photo_studio.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 80.0, 80.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_Galveston.contents.truck_mfg_&_sales.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 65.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_Galveston.contents.truck_mfg_&_sales.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 34.0, 50.0, 57.0, 65.0, 71.0, 76.0, 80.0, 88.0, 89.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_Galveston.contents.washateria.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 55.0, 78.0, 83.0, 86.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_New-Orleans.contents.auto_repair.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 88.0, 88.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_New-Orleans.contents.auto_repair.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 45.0, 60.0, 65.0, 86.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_New-Orleans.contents.barber_shop.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_New-Orleans.contents.barber_shop.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 48.0, 54.0, 54.0, 55.0, 55.0, 55.0, 55.0, 55.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_New-Orleans.contents.beauty_salon.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_New-Orleans.contents.beauty_salon.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 48.0, 54.0, 54.0, 55.0, 55.0, 55.0, 55.0, 55.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_New-Orleans.contents.funeral_home.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_New-Orleans.contents.funeral_home.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 46.0, 94.0, 97.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_New-Orleans.contents.laundromat.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_New-Orleans.contents.laundromat.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 48.0, 54.0, 54.0, 55.0, 55.0, 55.0, 55.0, 55.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_New-Orleans.contents.reupholstery.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 88.0, 88.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_New-Orleans.contents.reupholstery.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 45.0, 60.0, 65.0, 86.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_New-Orleans.contents.watch_repair.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 88.0, 88.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE_New-Orleans.contents.watch_repair.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 45.0, 60.0, 65.0, 86.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.USACE_Galveston.contents.average_prof/tech_services.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 18.0, 25.0, 35.0, 43.0, 49.0, 52.0, 55.0, 57.0, 58.0, 60.0, 65.0, 67.0, 68.0, 69.0, 70.0, 71.0, 71.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.USACE_Galveston.contents.airport.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.USACE_Galveston.contents.airport.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 40.0, 48.0, 55.0, 75.0, 78.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.USACE_Galveston.contents.boat_stalls.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 6.0, 8.0, 11.0, 13.0, 15.0, 17.0, 19.0, 21.0, 22.0, 24.0, 25.0, 27.0, 28.0, 29.0, 31.0, 32.0, 33.0, 34.0, 35.0, 36.0, 37.0, 38.0, 39.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.USACE_Galveston.contents.boat_storage.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 1.0, 4.0, 7.0, 12.0, 18.0, 24.0, 32.0, 40.0, 48.0, 54.0, 58.0, 63.0, 66.0, 68.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.USACE_Galveston.contents.business.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 6.0, 10.0, 15.0, 19.0, 24.0, 28.0, 33.0, 38.0, 44.0, 49.0, 55.0, 62.0, 69.0, 78.0, 86.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.USACE_Galveston.contents.import_sales.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.USACE_Galveston.contents.import_sales.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 65.0, 70.0, 75.0, 80.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.USACE_Galveston.contents.large_commercial_office.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 21.0, 24.0, 25.0, 26.0, 28.0, 31.0, 36.0, 42.0, 50.0, 71.0, 84.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.USACE_Galveston.contents.real_estate_office.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 9.0, 42.0, 75.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.USACE_Galveston.contents.real_estate_office.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 25.0, 43.0, 63.0, 70.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.USACE_Galveston.contents.transport_comapny.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 75.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.USACE_Galveston.contents.utility_company.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 30.0, 40.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.USACE_Galveston.contents.utility_company.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 5.0, 7.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 15.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.USACE_Galveston.contents.water_supply.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.USACE_New-Orleans.contents.accounting_firm.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.USACE_New-Orleans.contents.accounting_firm.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 46.0, 94.0, 97.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.USACE_New-Orleans.contents.legal_office.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.USACE_New-Orleans.contents.legal_office.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 46.0, 94.0, 97.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.USACE_New-Orleans.contents.real_estate_office.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.USACE_New-Orleans.contents.real_estate_office.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 46.0, 94.0, 97.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.USACE_New-Orleans.contents.utility_company.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.USACE_New-Orleans.contents.utility_company.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 18.0, 50.0, 50.0, 52.0, 58.0, 58.0, 58.0, 58.0, 58.0, 59.0, 69.0, 70.0, 70.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.USACE_St-Paul.contents.professional.fresh_water-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 15.0, 31.0, 43.0, 53.0, 61.0, 67.0, 71.0, 73.0, 76.0, 77.0, 78.0, 79.0, 80.0, 81.0, 82.0, 83.0, 84.0, 85.0, 86.0, 87.0, 88.0, 89.0, 90.0, 91.0, 92.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM5.USACE_Galveston.contents.bank-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 74.0, 83.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM5.USACE_Galveston.contents.bank.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 60.0, 70.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM5.USACE_Galveston.contents.bank.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 87.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM5.USACE_New-Orleans.contents.bank.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM5.USACE_New-Orleans.contents.bank.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 46.0, 94.0, 97.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM6.USACE_Galveston.contents.hospital-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 30.0, 65.0, 72.0, 78.0, 85.0, 95.0, 95.0, 95.0, 95.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM6.USACE_Galveston.contents.hospital.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0, 95.0, 95.0, 95.0, 95.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM6.USACE_Galveston.contents.hospital.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 80.0, 83.0, 86.0, 89.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM7.USACE_Galveston.contents.average_medical_offic/clinic.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 51.0, 60.0, 63.0, 67.0, 71.0, 72.0, 74.0, 77.0, 81.0, 86.0, 92.0, 94.0, 97.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM7.USACE_Galveston.contents.doctor's_office.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 12.0, 15.0, 16.0, 18.0, 22.0, 27.0, 34.0, 43.0, 57.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM7.USACE_Galveston.contents.dentist's_office.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM7.USACE_Galveston.contents.dentist's_office.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 21.0, 40.0, 55.0, 70.0, 85.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM7.USACE_Galveston.contents.chiropractic_clinic.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 30.0, 30.0, 30.0, 31.0, 32.0, 35.0, 38.0, 42.0, 47.0, 54.0, 62.0, 72.0, 84.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM7.USACE_Galveston.contents.x_ray_service.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM7.USACE_New-Orleans.contents.medical_office.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM7.USACE_New-Orleans.contents.medical_office.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 46.0, 94.0, 97.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM7.USACE_New-Orleans.contents.dentist's_office.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM7.USACE_New-Orleans.contents.dentist's_office.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 46.0, 94.0, 97.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE_Galveston.contents.average_entertainment/recreation.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 13.0, 45.0, 55.0, 64.0, 73.0, 77.0, 80.0, 82.0, 83.0, 85.0, 87.0, 89.0, 90.0, 91.0, 92.0, 93.0, 94.0, 95.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE_Galveston.contents.fishing_party_boat.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 24.0, 24.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE_Galveston.contents.fishing_party_boat.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 40.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE_Galveston.contents.bowling_alley.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 22.0, 25.0, 27.0, 27.0, 28.0, 30.0, 32.0, 35.0, 39.0, 45.0, 51.0, 58.0, 67.0, 76.0, 86.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE_Galveston.contents.country_club.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 38.0, 41.0, 44.0, 47.0, 52.0, 56.0, 62.0, 67.0, 74.0, 80.0, 87.0, 94.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE_Galveston.contents.country_club.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 19.0, 27.0, 34.0, 42.0, 48.0, 55.0, 62.0, 68.0, 73.0, 78.0, 84.0, 89.0, 94.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE_Galveston.contents.physical_fitness.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 45.0, 75.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE_Galveston.contents.private_pool.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE_Galveston.contents.private_club.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 45.0, 49.0, 52.0, 55.0, 59.0, 63.0, 68.0, 74.0, 85.0, 90.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE_Galveston.contents.private_club.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 21.0, 28.0, 35.0, 41.0, 47.0, 54.0, 62.0, 71.0, 83.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE_Galveston.contents.radio_station.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE_Galveston.contents.recreation_facilities.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 10.0, 20.0, 30.0, 45.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 75.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE_Galveston.contents.recreation_facilities.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE_Galveston.contents.tavern.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 36.0, 62.0, 73.0, 88.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE_Galveston.contents.tavern.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 42.0, 53.0, 78.0, 92.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE_Galveston.contents.telephone_exchange.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE_Galveston.contents.ymca_inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 33.0, 33.0, 33.0, 33.0, 33.0, 33.0, 33.0, 33.0, 33.0, 35.0, 35.0, 35.0, 36.0, 36.0, 37.0, 37.0, 38.0, 38.0, 39.0, 39.0, 40.0, 40.0, 40.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE_Galveston.contents.cafeteria_restaurant.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 57.0, 70.0, 71.0, 75.0, 82.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE_Galveston.contents.cafeteria_restaurant.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 73.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE_Galveston.contents.drive_in_restaurant.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 82.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE_Galveston.contents.drive_in_restaurant.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 52.0, 60.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE_New-Orleans.contents.bowling_alley.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 83.0, 88.0, 93.0, 94.0, 94.0, 94.0, 94.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE_New-Orleans.contents.bowling_alley.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 61.0, 81.0, 89.0, 90.0, 92.0, 92.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE_New-Orleans.contents.fast_food_restaurant.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 83.0, 88.0, 93.0, 94.0, 94.0, 94.0, 94.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE_New-Orleans.contents.fast_food_restaurant.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 61.0, 81.0, 89.0, 90.0, 92.0, 92.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE_New-Orleans.contents.full_service_restaurant.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 83.0, 88.0, 93.0, 94.0, 94.0, 94.0, 94.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE_New-Orleans.contents.full_service_restaurant.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 61.0, 81.0, 89.0, 90.0, 92.0, 92.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE_New-Orleans.contents.lounge.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 83.0, 88.0, 93.0, 94.0, 94.0, 94.0, 94.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE_New-Orleans.contents.lounge.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 61.0, 81.0, 89.0, 90.0, 92.0, 92.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE_St-Paul.contents.recreation.fresh_water-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 15.0, 31.0, 43.0, 53.0, 61.0, 67.0, 71.0, 73.0, 76.0, 77.0, 78.0, 79.0, 80.0, 81.0, 82.0, 83.0, 84.0, 85.0, 86.0, 87.0, 88.0, 89.0, 90.0, 91.0, 92.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM9.USACE_Galveston.contents.theater.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 6.0, 8.0, 9.0, 10.0, 12.0, 17.0, 22.0, 30.0, 41.0, 57.0, 66.0, 73.0, 79.0, 84.0, 90.0, 97.0, 98.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM9.USACE_Galveston.contents.private_hall.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 8.0, 10.0, 12.0, 14.0, 18.0, 24.0, 32.0, 44.0, 60.0, 85.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM9.USACE_Galveston.contents.indoor_theater.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 4.0, 5.0, 6.0, 6.0, 6.0, 9.0, 12.0, 16.0, 22.0, 28.0, 37.0, 46.0, 57.0, 68.0, 80.0, 93.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM9.USACE_New-Orleans.contents.movie_theater.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 83.0, 88.0, 93.0, 94.0, 94.0, 94.0, 94.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM9.USACE_New-Orleans.contents.movie_theater.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 61.0, 81.0, 89.0, 90.0, 92.0, 92.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM10.USACE_Galveston.contents.garage.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 17.0, 20.0, 23.0, 25.0, 29.0, 35.0, 42.0, 51.0, 63.0, 77.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND1.USACE_Galveston.contents.average_heavy_industrial.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 24.0, 34.0, 41.0, 47.0, 52.0, 57.0, 60.0, 63.0, 64.0, 66.0, 68.0, 69.0, 72.0, 73.0, 73.0, 73.0, 74.0, 74.0, 74.0, 74.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND1.USACE_Galveston.contents.boiler_building.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 10.0, 10.0, 10.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND1.USACE_Galveston.contents.cabinet_shop_mfg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 25.0, 30.0, 35.0, 40.0, 45.0, 50.0, 55.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND1.USACE_Galveston.contents.cabinet_shop_mfg.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 4.0, 8.0, 10.0, 11.0, 12.0, 13.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND1.USACE_Galveston.contents.concrete_mfg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 50.0, 51.0, 53.0, 54.0, 55.0, 55.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND1.USACE_Galveston.contents.door_mfg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 25.0, 45.0, 70.0, 80.0, 90.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND1.USACE_Galveston.contents.door_mfg.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 40.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND1.USACE_Galveston.contents.engine_room.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 25.0, 30.0, 35.0, 40.0, 45.0, 50.0, 55.0, 65.0, 65.0, 65.0, 65.0, 65.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND1.USACE_Galveston.contents.fabrication_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 75.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND1.USACE_Galveston.contents.heat_exchanger_mfg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 22.0, 32.0, 40.0, 46.0, 52.0, 55.0, 58.0, 60.0, 63.0, 71.0, 80.0, 85.0, 91.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND1.USACE_Galveston.contents.heat_exchanger_mfg.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 15.0, 17.0, 19.0, 21.0, 23.0, 24.0, 26.0, 28.0, 29.0, 32.0, 34.0, 36.0, 38.0, 39.0, 41.0, 43.0, 45.0, 47.0, 49.0, 51.0, 53.0, 55.0, 57.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND1.USACE_Galveston.contents.lock_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 12.0, 20.0, 29.0, 40.0, 50.0, 59.0, 67.0, 75.0, 84.0, 92.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND1.USACE_Galveston.contents.lock_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 8.0, 33.0, 52.0, 70.0, 75.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND1.USACE_Galveston.contents.lumber_mill.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND1.USACE_Galveston.contents.heavy_machine_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 16.0, 24.0, 33.0, 41.0, 49.0, 58.0, 66.0, 74.0, 82.0, 91.0, 98.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND1.USACE_Galveston.contents.heavy_machine_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 5.0, 10.0, 15.0, 20.0, 25.0, 30.0, 40.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND1.USACE_Galveston.contents.light_machine_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 12.0, 18.0, 27.0, 35.0, 42.0, 42.0, 42.0, 55.0, 55.0, 55.0, 65.0, 65.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND1.USACE_Galveston.contents.metal_coatings_serv.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 50.0, 63.0, 75.0, 87.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND1.USACE_Galveston.contents.metal_coatings_serv.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND1.USACE_Galveston.contents.pipe_threader_facility.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 25.0, 50.0, 50.0, 50.0, 50.0, 75.0, 75.0, 75.0, 75.0, 90.0, 90.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND1.USACE_Galveston.contents.pressure_test_facility.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 20.0, 25.0, 25.0, 30.0, 30.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND1.USACE_Galveston.contents.metal_recycling.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 20.0, 20.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND1.USACE_Galveston.contents.machine_research_lab.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 25.0, 30.0, 35.0, 40.0, 42.0, 44.0, 46.0, 48.0, 50.0, 50.0, 50.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND1.USACE_Galveston.contents.machine_research_lab.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 40.0, 60.0, 80.0, 85.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND1.USACE_Galveston.contents.scale_bldg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 15.0, 25.0, 40.0, 50.0, 75.0, 85.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND1.USACE_Galveston.contents.welding_machine.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 6.0, 15.0, 18.0, 20.0, 21.0, 22.0, 24.0, 27.0, 30.0, 33.0, 37.0, 41.0, 45.0, 49.0, 54.0, 59.0, 63.0, 68.0, 72.0, 76.0, 80.0, 84.0, 88.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND2.USACE_Galveston.contents.average_light_industrial.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 23.0, 35.0, 44.0, 52.0, 58.0, 62.0, 65.0, 68.0, 70.0, 73.0, 74.0, 77.0, 78.0, 78.0, 79.0, 80.0, 80.0, 80.0, 80.0, 81.0, 81.0, 81.0, 81.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND2.USACE_Galveston.contents.battery_mfg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 30.0, 40.0, 60.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND2.USACE_Galveston.contents.battery_mfg.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 15.0, 15.0, 20.0, 20.0, 25.0, 25.0, 30.0, 30.0, 30.0, 30.0, 40.0, 40.0, 40.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND2.USACE_Galveston.contents.control_bldg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 75.0, 75.0, 85.0, 85.0, 90.0, 90.0, 90.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND2.USACE_Galveston.contents.electronic_equip_mfg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND2.USACE_Galveston.contents.electronic_equip_mfg.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 40.0, 55.0, 70.0, 85.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND2.USACE_Galveston.contents.frame_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 45.0, 80.0, 88.0, 93.0, 95.0, 98.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND2.USACE_Galveston.contents.furniture_mfg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND2.USACE_Galveston.contents.furniture_mfg.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 50.0, 60.0, 70.0, 80.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND2.USACE_Galveston.contents.instrument_mfg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 13.0, 20.0, 27.0, 34.0, 42.0, 48.0, 57.0, 71.0, 80.0, 85.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND2.USACE_Galveston.contents.instrument_mfg.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 50.0, 61.0, 73.0, 82.0, 90.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND2.USACE_Galveston.contents.leather_goods_mfg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 6.0, 9.0, 12.0, 15.0, 18.0, 21.0, 24.0, 27.0, 30.0, 33.0, 36.0, 39.0, 42.0, 45.0, 48.0, 51.0, 54.0, 57.0, 60.0, 63.0, 66.0, 69.0, 72.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND2.USACE_Galveston.contents.leather_goods_mfg.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 12.0, 16.0, 20.0, 23.0, 26.0, 27.0, 29.0, 30.0, 30.0, 36.0, 39.0, 41.0, 44.0, 46.0, 49.0, 51.0, 54.0, 57.0, 60.0, 63.0, 66.0, 69.0, 72.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND2.USACE_Galveston.contents.industrial_loading_dock.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 25.0, 40.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND2.USACE_Galveston.contents.industrial_loading_dock.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 20.0, 20.0, 20.0, 20.0, 20.0, 30.0, 30.0, 30.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND2.USACE_Galveston.contents.locker_bldg.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 5.0, 25.0, 55.0, 75.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND2.USACE_Galveston.contents.maint_bldg_mfg_facilility.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 15.0, 20.0, 25.0, 35.0, 45.0, 45.0, 45.0, 45.0, 50.0, 50.0, 50.0, 55.0, 55.0, 55.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND2.USACE_Galveston.contents.newspaper_print_plant.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 8.0, 11.0, 13.0, 16.0, 20.0, 25.0, 31.0, 39.0, 48.0, 59.0, 70.0, 82.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND2.USACE_Galveston.contents.newspaper_sales_office.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 9.0, 18.0, 33.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND2.USACE_Galveston.contents.newspaper_sales_office.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 46.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND2.USACE_Galveston.contents.manuf_facility_office.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND2.USACE_Galveston.contents.manuf_facility_office.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 21.0, 30.0, 40.0, 45.0, 50.0, 60.0, 75.0, 85.0, 90.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND2.USACE_Galveston.contents.commercial_printing.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND2.USACE_Galveston.contents.commercial_printing.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 35.0, 50.0, 70.0, 73.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND3.USACE_Galveston.contents.average_food/drugs/chemicals.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 20.0, 41.0, 51.0, 62.0, 67.0, 71.0, 73.0, 76.0, 78.0, 79.0, 82.0, 83.0, 84.0, 86.0, 87.0, 87.0, 88.0, 88.0, 88.0, 88.0, 88.0, 88.0, 88.0, 88.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND3.USACE_Galveston.contents.chemical_plant.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 38.0, 44.0, 52.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND3.USACE_Galveston.contents.chemical_plant.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND3.USACE_Galveston.contents.chemical_plant_bonding.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 38.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND3.USACE_Galveston.contents.chemical_plant_bonding.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND3.USACE_Galveston.contents.chemical_refinery.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 45.0, 60.0, 75.0, 90.0, 93.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND3.USACE_Galveston.contents.chemical_refinery.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND3.USACE_Galveston.contents.deodorizer_bldg_chemical.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 15.0, 20.0, 20.0, 20.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND3.USACE_Galveston.contents.deodorizer_bldg_chem.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 75.0, 75.0, 90.0, 90.0, 90.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND3.USACE_Galveston.contents.feed_mill.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND3.USACE_Galveston.contents.feed_mill.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 22.0, 24.0, 26.0, 28.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 50.0, 55.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND3.USACE_Galveston.contents.food_processor.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 27.0, 33.0, 40.0, 50.0, 60.0, 70.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND3.USACE_Galveston.contents.food_processor.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND3.USACE_Galveston.contents.chemical_laboratory.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 25.0, 50.0, 50.0, 60.0, 70.0, 80.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND3.USACE_Galveston.contents.chemical_laboratory.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 43.0, 60.0, 60.0, 60.0, 60.0, 70.0, 70.0, 80.0, 80.0, 90.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND3.USACE_Galveston.contents.detergent_manuf._facility.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 21.0, 24.0, 25.0, 26.0, 28.0, 31.0, 36.0, 42.0, 50.0, 71.0, 84.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND3.USACE_Galveston.contents.detergent_manuf._facility.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 40.0, 55.0, 70.0, 85.0, 90.0, 90.0, 90.0, 90.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND3.USACE_Galveston.contents.meat_packing.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 30.0, 30.0, 70.0, 75.0, 85.0, 90.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND3.USACE_Galveston.contents.meat_packing.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND3.USACE_Galveston.contents.detergent_mixer_bldg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 25.0, 25.0, 25.0, 25.0, 25.0, 35.0, 35.0, 45.0, 45.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND3.USACE_Galveston.contents.detergent_mixer_bldg.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND3.USACE_Galveston.contents.plastic_mfg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0, 90.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND3.USACE_Galveston.contents.plastic_mfg.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 30.0, 40.0, 47.0, 55.0, 62.0, 67.0, 72.0, 77.0, 80.0, 92.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND3.USACE_Galveston.contents.caustic_materials_refinery.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 38.0, 50.0, 75.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND3.USACE_Galveston.contents.caustic_materials_refinery.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 30.0, 30.0, 40.0, 40.0, 50.0, 50.0, 60.0, 60.0, 70.0, 70.0, 80.0, 80.0, 90.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND4.USACE_Galveston.contents.average_metals/minerals_processing.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 15.0, 20.0, 26.0, 31.0, 37.0, 40.0, 44.0, 48.0, 53.0, 56.0, 57.0, 60.0, 62.0, 63.0, 63.0, 63.0, 64.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND4.USACE_Galveston.contents.foundry.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 17.0, 24.0, 29.0, 34.0, 38.0, 43.0, 45.0, 50.0, 58.0, 62.0, 67.0, 70.0, 75.0, 78.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND4.USACE_Galveston.contents.foundry.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 11.0, 16.0, 19.0, 21.0, 23.0, 28.0, 35.0, 47.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND4.USACE_Galveston.contents.lead_refinery.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND4.USACE_Galveston.contents.lead_refinery.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 21.0, 30.0, 40.0, 45.0, 50.0, 60.0, 75.0, 85.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND4.USACE_Galveston.contents.sand_&_gravel.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 10.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND4.USACE_Galveston.contents.sand_&_gravel.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 6.0, 10.0, 13.0, 16.0, 19.0, 24.0, 27.0, 30.0, 45.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND4.USACE_Galveston.contents.sheet_metal.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 24.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND4.USACE_Galveston.contents.sheet_metal.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND5.USACE_Galveston.contents.average_high_technology.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 20.0, 41.0, 51.0, 62.0, 67.0, 71.0, 73.0, 76.0, 78.0, 79.0, 82.0, 83.0, 84.0, 86.0, 87.0, 87.0, 88.0, 88.0, 88.0, 88.0, 88.0, 88.0, 88.0, 88.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND6.USACE_Galveston.contents.average_construction.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 35.0, 47.0, 56.0, 59.0, 66.0, 69.0, 71.0, 72.0, 78.0, 79.0, 80.0, 80.0, 81.0, 81.0, 81.0, 82.0, 82.0, 82.0, 83.0, 83.0, 83.0, 83.0, 83.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND6.USACE_Galveston.contents.carpet_tile_flooring.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 42.0, 54.0, 65.0, 75.0, 85.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND6.USACE_Galveston.contents.carpet_tile_flooring.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 70.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND6.USACE_Galveston.contents.contractor_roofing.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 27.0, 36.0, 43.0, 48.0, 50.0, 50.0, 50.0, 50.0, 50.0, 51.0, 51.0, 51.0, 52.0, 52.0, 52.0, 52.0, 53.0, 53.0, 53.0, 54.0, 54.0, 54.0, 55.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND6.USACE_Galveston.contents.contractor_roofing.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 27.0, 36.0, 43.0, 48.0, 53.0, 57.0, 59.0, 60.0, 66.0, 69.0, 72.0, 76.0, 79.0, 83.0, 86.0, 90.0, 93.0, 97.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND6.USACE_Galveston.contents.contractor_electric.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 10.0, 10.0, 40.0, 40.0, 40.0, 40.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND6.USACE_Galveston.contents.pier_drilling_co.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 23.0, 39.0, 55.0, 55.0, 56.0, 56.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND6.USACE_Galveston.contents.plumbing_co.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 45.0, 55.0, 63.0, 70.0, 76.0, 82.0, 87.0, 92.0, 98.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND6.USACE_Galveston.contents.plumbing_co.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 25.0, 35.0, 44.0, 53.0, 61.0, 69.0, 77.0, 85.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND6.USACE_Galveston.contents.sandblasting_co.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 45.0, 68.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND6.USACE_Galveston.contents.water_well_service.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND6.USACE_New-Orleans.contents.carpeting_service.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 70.0, 80.0, 96.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND6.USACE_New-Orleans.contents.carpeting_service.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 19.0, 31.0, 40.0, 45.0, 49.0, 54.0, 58.0, 63.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND6.USACE_New-Orleans.contents.heating_&_air_conditioning_service.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 70.0, 80.0, 96.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND6.USACE_New-Orleans.contents.heating_&_air_conditioning_service.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 19.0, 31.0, 40.0, 45.0, 49.0, 54.0, 58.0, 63.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND6.USACE_New-Orleans.contents.plumbing_services.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 70.0, 80.0, 96.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND6.USACE_New-Orleans.contents.plumbing_services.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 19.0, 31.0, 40.0, 45.0, 49.0, 54.0, 58.0, 63.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+AGR1.USACE_Galveston.contents.average_agriculture.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 6.0, 20.0, 43.0, 58.0, 65.0, 66.0, 66.0, 67.0, 70.0, 75.0, 76.0, 76.0, 76.0, 77.0, 77.0, 77.0, 78.0, 78.0, 78.0, 79.0, 79.0, 79.0, 79.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+AGR1.USACE_Galveston.contents.dairy_processing.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 50.0, 50.0, 50.0, 50.0, 60.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+AGR1.USACE_Galveston.contents.dairy_processing.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+AGR1.USACE_Galveston.contents.horse_stalls.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 6.0, 8.0, 11.0, 13.0, 15.0, 17.0, 19.0, 21.0, 22.0, 24.0, 25.0, 27.0, 28.0, 29.0, 31.0, 32.0, 33.0, 34.0, 34.0, 36.0, 37.0, 38.0, 39.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+AGR1.USACE_Galveston.contents.veterinary_clinic.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+AGR1.USACE_New-Orleans.contents.veterinary_office.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+AGR1.USACE_New-Orleans.contents.veterinary_office.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 46.0, 94.0, 97.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+REL1.USACE_Galveston.contents.church-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 52.0, 72.0, 85.0, 92.0, 95.0, 98.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+REL1.USACE_Galveston.contents.church.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 75.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+REL1.USACE_Galveston.contents.church.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 28.0, 54.0, 70.0, 84.0, 90.0, 95.0, 97.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+REL1.USACE_New-Orleans.contents.civic_association.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+REL1.USACE_New-Orleans.contents.civic_association.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 18.0, 50.0, 50.0, 52.0, 58.0, 58.0, 58.0, 58.0, 58.0, 59.0, 69.0, 70.0, 70.0, 79.0, 88.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+GOV1.USACE_Galveston.contents.average_govt_services.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 59.0, 74.0, 83.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+GOV1.USACE_Galveston.contents.city_hall.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 75.0, 85.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+GOV1.USACE_Galveston.contents.post_office.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 43.0, 63.0, 70.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+GOV1.USACE_New-Orleans.contents.government_facility.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+GOV1.USACE_New-Orleans.contents.government_facility.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 18.0, 50.0, 50.0, 52.0, 58.0, 58.0, 58.0, 58.0, 58.0, 59.0, 69.0, 70.0, 70.0, 79.0, 88.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+GOV2.USACE_Galveston.contents.average_emergency_response.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 20.0, 38.0, 55.0, 70.0, 81.0, 89.0, 98.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+GOV2.USACE_Galveston.contents.fire_station.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 25.0, 50.0, 75.0, 91.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+GOV2.USACE_Galveston.contents.police_station.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 15.0, 25.0, 35.0, 48.0, 62.0, 78.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+EDU1.USACE_Galveston.contents.average_school.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 38.0, 53.0, 64.0, 68.0, 70.0, 72.0, 75.0, 79.0, 83.0, 88.0, 94.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+EDU1.USACE_Galveston.contents.commercial_school.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 26.0, 30.0, 33.0, 35.0, 39.0, 44.0, 50.0, 58.0, 66.0, 76.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+EDU1.USACE_Galveston.contents.library.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 50.0, 75.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+EDU1.USACE_New-Orleans.contents.elementary_school.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+EDU1.USACE_New-Orleans.contents.elementary_school.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 18.0, 50.0, 50.0, 52.0, 58.0, 58.0, 58.0, 58.0, 58.0, 59.0, 69.0, 70.0, 70.0, 79.0, 88.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+EDU2.USACE_Galveston.contents.average_college/university.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 38.0, 53.0, 64.0, 68.0, 70.0, 72.0, 75.0, 79.0, 83.0, 88.0, 94.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+EDU2.USACE_New-Orleans.contents.college.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+EDU2.USACE_New-Orleans.contents.college.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 18.0, 50.0, 50.0, 52.0, 58.0, 58.0, 58.0, 58.0, 58.0, 59.0, 69.0, 70.0, 70.0, 79.0, 88.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.BCAR_Jan-201.contents.all_floors.slab_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 30.0, 45.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3A.BCAR_Jan-201.contents.1to2_stories.slab_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 30.0, 45.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3B.BCAR_Jan-201.contents.1to2_stories.slab_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 30.0, 45.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.BCAR_Jan-201.contents.all_floors.wall_2ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 20.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3A.BCAR_Jan-201.contents.1to2_stories.wall_2ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 20.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3B.BCAR_Jan-201.contents.1to2_stories.wall_2ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 20.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.BCAR_Jan-201.contents.all_floors.wall_3ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 10.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3A.BCAR_Jan-201.contents.1to2_stories.wall_3ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 10.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3B.BCAR_Jan-201.contents.1to2_stories.wall_3ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 10.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES2.BCAR_Jan-201.contents.manufactured_home_mobile.structure.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.BCAR_Jan-201.contents.all_floors.elevated_open+2ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 45.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_open+2ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 45.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_open+2ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 45.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.BCAR_Jan-201.contents.all_floors.elevated_open+4ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 35.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_open+4ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 35.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_open+4ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 35.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.BCAR_Jan-201.contents.all_floors.elevated_open+6ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 30.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_open+6ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 30.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_open+6ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 30.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.BCAR_Jan-201.contents.all_floors.elevated_open+8ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 25.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_open+8ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 25.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_open+8ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 25.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.BCAR_Jan-201.contents.all_floors.elevated_open+10ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"25.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_open+10ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"25.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_open+10ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"25.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.BCAR_Jan-201.contents.all_floors.elevated_open+12ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"65.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_open+12ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"65.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_open+12ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"65.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.BCAR_Jan-201.contents.all_floors.elevated_obstr+2ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 2.0, 3.0, 48.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+2ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 2.0, 3.0, 48.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+2ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 2.0, 3.0, 48.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.BCAR_Jan-201.contents.all_floors.elevated_obstr+4ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"2.0, 3.0, 3.0, 38.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+4ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"2.0, 3.0, 3.0, 38.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+4ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"2.0, 3.0, 3.0, 38.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.BCAR_Jan-201.contents.all_floors.elevated_obstr+6ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"3.0, 3.0, 33.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+6ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"3.0, 3.0, 33.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+6ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"3.0, 3.0, 33.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.BCAR_Jan-201.contents.all_floors.elevated_obstr+8ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"3.0, 28.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+8ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"3.0, 28.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+8ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"3.0, 28.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.BCAR_Jan-201.contents.all_floors.elevated_obstr+10ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"28.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+10ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"28.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+10ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"28.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.BCAR_Jan-201.contents.all_floors.elevated_obstr+12ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"68.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+12ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"68.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+12ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"68.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3.USACE_Chicago.contents.apartment_unit_grade-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 12.0, 24.0, 33.0, 35.0, 37.0, 41.0, 45.0, 50.0, 55.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.BCAR_Jan-201.contents.one_story.with_basement.b14-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 11.0, 13.0, 16.0, 19.0, 22.0, 25.0, 27.0, 30.0, 32.0, 35.0, 36.0, 38.0, 39.0, 39.0, 39.0, 39.0, 39.0, 39.0, 39.0, 39.0, 39.0, 39.0, 39.0, 39.0, 39.0, 39.0, 39.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+AGR1.USACE-Sacramento.contents.usace_sacramento_farms.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 30.0, 76.0, 76.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+AGR1.USACE-Sacramento.contents.usace_sacramento_farms.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 56.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+AGR1.USACE-Sacramento.contents.usace_sacramento_farms.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 27.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM.USACE-NACCS.contents.naccs_2_commercial_engineeered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 3.5, 24.0, 33.25, 40.0, 42.75, 45.5, 52.75, 60.0, 61.66667, 63.33333, 65.0, 66.66667, 68.33333, 70.0, 71.66667, 73.33333, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM.USACE-NACCS.contents.naccs_2_commercial_engineeered_waves-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 15.0, 26.25, 38.5, 52.375, 66.25, 73.125, 80.0, 82.0, 84.0, 86.0, 88.0, 90.0, 92.0, 94.0, 96.0, 97.5, 97.5, 97.5, 97.5, 97.5, 97.5, 97.5, 97.5, 97.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM.USACE-NACCS.contents.naccs_3_commercial_non/pre_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 1.0, 21.0, 29.75, 44.5, 49.75, 55.0, 59.75, 64.5, 67.5, 70.5, 73.5, 76.5, 79.5, 82.5, 85.5, 88.5, 90.5, 90.5, 90.5, 90.5, 90.5, 90.5, 90.5, 90.5, 90.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM.USACE-NACCS.contents.naccs_3_commercial_non/pre_engineered_waves-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.5, 21.0, 33.75, 52.5, 67.5, 82.5, 91.25, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_furniture_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 46.85714, 61.85714, 68.14286, 79.14286, 85.71429, 90.71429, 97.14286, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_electronics_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 34.14286, 44.28571, 67.0, 77.71429, 86.71429, 95.42857, 97.42857, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_clothing_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 46.28571, 55.42857, 70.0, 79.0, 89.0, 95.71429, 97.85714, 97.85714, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_service_station_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.35714, 16.42857, 28.92857, 40.85714, 57.71429, 63.28571, 70.71429, 79.28571, 84.28571, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_convenience_store_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.14286, 39.85714, 52.85714, 70.71429, 79.28571, 88.0, 94.14286, 95.71429, 97.14286, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_grocery_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.71429, 40.92857, 52.85714, 64.0, 75.42857, 87.28571, 98.85714, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_furniture_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 46.85714, 61.85714, 68.14286, 79.14286, 85.71429, 90.71429, 97.14286, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_electronics_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 34.14286, 44.28571, 67.0, 77.71429, 86.71429, 95.42857, 97.42857, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_clothing_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 46.28571, 55.42857, 70.0, 79.0, 89.0, 95.71429, 97.85714, 97.85714, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_service_station_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.35714, 16.42857, 28.92857, 40.85714, 57.71429, 63.28571, 70.71429, 79.28571, 84.28571, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_convenience_store_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.14286, 39.85714, 52.85714, 70.71429, 79.28571, 88.0, 94.14286, 95.71429, 97.14286, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_grocery_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.71429, 40.92857, 52.85714, 64.0, 75.42857, 87.28571, 98.85714, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_furniture_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 46.85714, 61.85714, 68.14286, 79.14286, 85.71429, 90.71429, 97.14286, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_electronics_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 34.14286, 44.28571, 67.0, 77.71429, 86.71429, 95.42857, 97.42857, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_clothing_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 46.28571, 55.42857, 70.0, 79.0, 89.0, 95.71429, 97.85714, 97.85714, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_service_station_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.35714, 16.42857, 28.92857, 40.85714, 57.71429, 63.28571, 70.71429, 79.28571, 84.28571, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_convenience_store_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.14286, 39.85714, 52.85714, 70.71429, 79.28571, 88.0, 94.14286, 95.71429, 97.14286, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_grocery_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.71429, 40.92857, 52.85714, 64.0, 75.42857, 87.28571, 98.85714, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_furniture_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 46.85714, 61.85714, 68.14286, 79.14286, 85.71429, 90.71429, 97.14286, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_electronics_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 34.14286, 44.28571, 67.0, 77.71429, 86.71429, 95.42857, 97.42857, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_clothing_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 46.28571, 55.42857, 70.0, 79.0, 89.0, 95.71429, 97.85714, 97.85714, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_service_station_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.35714, 16.42857, 28.92857, 40.85714, 57.71429, 63.28571, 70.71429, 79.28571, 84.28571, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_convenience_store_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.14286, 39.85714, 52.85714, 70.71429, 79.28571, 88.0, 94.14286, 95.71429, 97.14286, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_grocery_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.71429, 40.92857, 52.85714, 64.0, 75.42857, 87.28571, 98.85714, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.convenience_store.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 23.14286, 39.85714, 52.85714, 70.71429, 79.28571, 88.0, 94.14286, 95.71429, 97.14286, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.convenience_store.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 23.14286, 39.85714, 52.85714, 70.71429, 79.28571, 88.0, 94.14286, 95.71429, 97.14286, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.grocery.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.71429, 40.92857, 52.85714, 64.0, 75.42857, 87.28571, 98.85714, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.grocery.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.71429, 40.92857, 52.85714, 64.0, 75.42857, 87.28571, 98.85714, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.retail_clothing.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 46.28571, 55.42857, 70.0, 79.0, 89.0, 95.71429, 97.85714, 97.85714, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.retail_clothing.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 46.28571, 55.42857, 70.0, 79.0, 89.0, 95.71429, 97.85714, 97.85714, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.retail_electronics.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 34.14286, 44.28571, 67.0, 77.71429, 86.71429, 95.42857, 97.42857, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.retail_electronics.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 34.14286, 44.28571, 67.0, 77.71429, 86.71429, 95.42857, 97.42857, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.retail_furniture.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 46.85714, 61.85714, 68.14286, 79.14286, 85.71429, 90.71429, 97.14286, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.retail_furniture.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 46.85714, 61.85714, 68.14286, 79.14286, 85.71429, 90.71429, 97.14286, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.service_station.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.35714, 16.42857, 28.92857, 40.85714, 57.71429, 63.28571, 70.71429, 79.28571, 84.28571, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.FEMA-BCA-Toolkit.contents.service_station.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.35714, 16.42857, 28.92857, 40.85714, 57.71429, 63.28571, 70.71429, 79.28571, 84.28571, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE-New-Orleans.contents.usace_new_orleans_department_store.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.3, 48.2, 54.1, 54.3, 54.8, 54.8, 54.8, 54.8, 54.8, 98.9, 99.9, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE-New-Orleans.contents.usace_new_orleans_department_store.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 99.5, 99.8, 99.9, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE-New-Orleans.contents.usace_new_orleans_large_grocery.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 73.6, 81.4, 84.8, 87.6, 96.3, 96.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE-New-Orleans.contents.usace_new_orleans_large_grocery.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 97.5, 99.1, 99.4, 99.7, 99.7, 99.7, 99.7, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE-Sacramento.contents.usace_sacramento_food_stores.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 29.0, 96.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE-Sacramento.contents.usace_sacramento_furniture_retail.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 80.0, 80.0, 96.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE-Sacramento.contents.usace_sacramento_grocery_store.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 32.0, 89.0, 89.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE-Sacramento.contents.usace_sacramento_retail.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 80.0, 80.0, 96.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE-Sacramento.contents.usace_sacramento_shopping_centers.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 33.0, 72.0, 72.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE-Sacramento.contents.usace_sacramento_food_stores.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 25.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE-Sacramento.contents.usace_sacramento_furniture_retail.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 42.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE-Sacramento.contents.usace_sacramento_grocery_store.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 27.0, 49.0, 49.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE-Sacramento.contents.usace_sacramento_retail.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 19.0, 19.0, 36.0, 36.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE-Sacramento.contents.usace_sacramento_shopping_centers.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 28.0, 40.0, 40.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE-Sacramento.contents.usace_sacramento_food_stores.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 78.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE-Sacramento.contents.usace_sacramento_furniture_retail.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 98.0, 98.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE-Sacramento.contents.usace_sacramento_grocery_store.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 87.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE-Sacramento.contents.usace_sacramento_retail.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 80.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE-Sacramento.contents.usace_sacramento_shopping_centers.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 96.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE-Sacramento.contents.usace_sacramento_food_stores.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 38.0, 38.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE-Sacramento.contents.usace_sacramento_furniture_retail.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 47.0, 47.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE-Sacramento.contents.usace_sacramento_grocery_store.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 42.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE-Sacramento.contents.usace_sacramento_retail.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 38.0, 38.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM1.USACE-Sacramento.contents.usace_sacramento_shopping_centers.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 46.0, 46.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.FEMA-BCA-Toolkit.contents.bca_toolkit_warehouse.refrig_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.71429, 48.0, 59.14286, 65.71429, 74.28571, 79.71429, 84.0, 89.85714, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.FEMA-BCA-Toolkit.contents.bca_toolkit_warehouse.non_refrig_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.71429, 33.71429, 47.42857, 56.85714, 65.57143, 73.57143, 81.28571, 88.42857, 91.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.FEMA-BCA-Toolkit.contents.bca_toolkit_warehouse.refrig_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.71429, 48.0, 59.14286, 65.71429, 74.28571, 79.71429, 84.0, 89.85714, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.FEMA-BCA-Toolkit.contents.bca_toolkit_warehouse.non_refrig_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.71429, 33.71429, 47.42857, 56.85714, 65.57143, 73.57143, 81.28571, 88.42857, 91.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.FEMA-BCA-Toolkit.contents.bca_toolkit_warehouse.refrig_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.71429, 48.0, 59.14286, 65.71429, 74.28571, 79.71429, 84.0, 89.85714, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.FEMA-BCA-Toolkit.contents.bca_toolkit_warehouse.non_refrig_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.71429, 33.71429, 47.42857, 56.85714, 65.57143, 73.57143, 81.28571, 88.42857, 91.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.FEMA-BCA-Toolkit.contents.bca_toolkit_warehouse.refrig_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.71429, 48.0, 59.14286, 65.71429, 74.28571, 79.71429, 84.0, 89.85714, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.FEMA-BCA-Toolkit.contents.bca_toolkit_warehouse.non_refrig_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.71429, 33.71429, 47.42857, 56.85714, 65.57143, 73.57143, 81.28571, 88.42857, 91.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE-New-Orleans.contents.usace_new_orleans_warehouse.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 19.2, 30.7, 39.7, 44.5, 48.8, 54.1, 58.3, 62.6, 71.6, 71.6, 71.6, 71.6, 71.6, 71.6, 71.6, 71.6, 71.6, 71.6, 71.6, 71.6, 71.6, 71.6, 71.6, 71.6|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE-New-Orleans.contents.usace_new_orleans_warehouse.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 69.9, 79.9, 96.3, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.FEMA-BCA-Toolkit.contents.warehouse.non_refrig_default.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.71429, 33.71429, 47.42857, 56.85714, 65.57143, 73.57143, 81.28571, 88.42857, 91.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.FEMA-BCA-Toolkit.contents.warehouse.non_refrig_default.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.71429, 33.71429, 47.42857, 56.85714, 65.57143, 73.57143, 81.28571, 88.42857, 91.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.FEMA-BCA-Toolkit.contents.warehouse.refrig_default.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 29.71429, 48.0, 59.14286, 65.71429, 74.28571, 79.71429, 84.0, 89.85714, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.FEMA-BCA-Toolkit.contents.warehouse.refrig_default.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 29.71429, 48.0, 59.14286, 65.71429, 74.28571, 79.71429, 84.0, 89.85714, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE-Sacramento.contents.usace_sacramento_warehouse.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 23.0, 69.0, 69.0, 96.0, 96.0, 96.0, 96.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE-Sacramento.contents.usace_sacramento_warehouse.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 20.0, 38.0, 38.0, 48.0, 48.0, 48.0, 48.0, 48.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE-Sacramento.contents.usace_sacramento_warehouse.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 84.0, 84.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM2.USACE-Sacramento.contents.usace_sacramento_warehouse.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 40.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.FEMA-BCA-Toolkit.contents.protective_services.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 14.28571, 24.71429, 36.71429, 46.57143, 55.28571, 62.85714, 74.42857, 82.71429, 84.42857, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.FEMA-BCA-Toolkit.contents.protective_services.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 14.28571, 24.71429, 36.71429, 46.57143, 55.28571, 62.85714, 74.42857, 82.71429, 84.42857, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE-Sacramento.contents.usace_sacramento_service_auto.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 9.0, 10.0, 23.0, 23.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE-Sacramento.contents.usace_sacramento_service_auto.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 8.0, 8.0, 19.0, 19.0, 37.0, 37.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE-Sacramento.contents.usace_sacramento_service_auto.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 10.0, 10.0, 74.0, 74.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM3.USACE-Sacramento.contents.usace_sacramento_service_auto.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 5.0, 5.0, 35.0, 35.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.FEMA-BCA-Toolkit.contents.bca_toolkit_protective_services_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.28571, 24.71429, 36.71429, 46.57143, 55.28571, 62.85714, 74.42857, 82.71429, 84.42857, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.FEMA-BCA-Toolkit.contents.bca_toolkit_office_one_story_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.71429, 0.71429, 1.0, 20.0, 34.28571, 45.42857, 55.0, 63.85714, 73.28571, 76.42857, 83.42857, 89.28571, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.FEMA-BCA-Toolkit.contents.bca_toolkit_protective_services_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.28571, 24.71429, 36.71429, 46.57143, 55.28571, 62.85714, 74.42857, 82.71429, 84.42857, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.FEMA-BCA-Toolkit.contents.bca_toolkit_office_one_story_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.71429, 0.71429, 1.0, 20.0, 34.28571, 45.42857, 55.0, 63.85714, 73.28571, 76.42857, 83.42857, 89.28571, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.FEMA-BCA-Toolkit.contents.bca_toolkit_protective_services_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.28571, 24.71429, 36.71429, 46.57143, 55.28571, 62.85714, 74.42857, 82.71429, 84.42857, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.FEMA-BCA-Toolkit.contents.bca_toolkit_office_one_story_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.71429, 0.71429, 1.0, 20.0, 34.28571, 45.42857, 55.0, 63.85714, 73.28571, 76.42857, 83.42857, 89.28571, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.FEMA-BCA-Toolkit.contents.bca_toolkit_protective_services_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.28571, 24.71429, 36.71429, 46.57143, 55.28571, 62.85714, 74.42857, 82.71429, 84.42857, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.FEMA-BCA-Toolkit.contents.bca_toolkit_office_one_story_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.71429, 0.71429, 1.0, 20.0, 34.28571, 45.42857, 55.0, 63.85714, 73.28571, 76.42857, 83.42857, 89.28571, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.FEMA-BCA-Toolkit.contents.office_one_story.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.71429, 0.71429, 1.0, 20.0, 34.28571, 45.42857, 55.0, 63.85714, 73.28571, 76.42857, 83.42857, 89.28571, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.FEMA-BCA-Toolkit.contents.office_one_story.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.71429, 0.71429, 1.0, 20.0, 34.28571, 45.42857, 55.0, 63.85714, 73.28571, 76.42857, 83.42857, 89.28571, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.USACE-New-Orleans.contents.usace_new_orleans_utility_company.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.1, 17.5, 49.8, 50.1, 51.8, 57.6, 57.6, 57.6, 57.6, 57.8, 59.4, 69.2, 69.6, 69.7, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.USACE-New-Orleans.contents.usace_new_orleans_utility_company.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.USACE-Sacramento.contents.usace_sacramento_office.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 35.0, 90.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.USACE-Sacramento.contents.usace_sacramento_office.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 29.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.USACE-Sacramento.contents.usace_sacramento_office.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 97.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM4.USACE-Sacramento.contents.usace_sacramento_office.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 46.0, 46.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM6.FEMA-BCA-Toolkit.contents.bca_toolkit_hospital_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.625, 27.0, 37.0, 53.375, 70.0, 79.125, 85.625, 92.5, 95.625, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM6.FEMA-BCA-Toolkit.contents.bca_toolkit_hospital_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.625, 27.0, 37.0, 53.375, 70.0, 79.125, 85.625, 92.5, 95.625, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM6.FEMA-BCA-Toolkit.contents.bca_toolkit_hospital_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.625, 27.0, 37.0, 53.375, 70.0, 79.125, 85.625, 92.5, 95.625, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM6.FEMA-BCA-Toolkit.contents.bca_toolkit_hospital_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.625, 27.0, 37.0, 53.375, 70.0, 79.125, 85.625, 92.5, 95.625, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM6.FEMA-BCA-Toolkit.contents.hospital.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 14.625, 27.0, 37.0, 53.375, 70.0, 79.125, 85.625, 92.5, 95.625, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM6.FEMA-BCA-Toolkit.contents.hospital.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 14.625, 27.0, 37.0, 53.375, 70.0, 79.125, 85.625, 92.5, 95.625, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM6.USACE-New-Orleans.contents.usace_new_orleans_medical_office.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.8, 45.7, 94.1, 96.9, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM6.USACE-New-Orleans.contents.usace_new_orleans_medical_office.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 98.5, 98.5, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM6.USACE-Sacramento.contents.usace_sacramento_medical.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 33.0, 89.0, 89.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM6.USACE-Sacramento.contents.usace_sacramento_medical.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 28.0, 49.0, 49.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM6.USACE-Sacramento.contents.usace_sacramento_medical.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 75.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM6.USACE-Sacramento.contents.usace_sacramento_medical.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 36.0, 36.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM7.FEMA-BCA-Toolkit.contents.bca_toolkit_medical_office_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.25, 26.875, 40.375, 57.125, 67.25, 75.375, 82.25, 91.25, 96.25, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM7.FEMA-BCA-Toolkit.contents.bca_toolkit_medical_office_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.25, 26.875, 40.375, 57.125, 67.25, 75.375, 82.25, 91.25, 96.25, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM7.FEMA-BCA-Toolkit.contents.bca_toolkit_medical_office_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.25, 26.875, 40.375, 57.125, 67.25, 75.375, 82.25, 91.25, 96.25, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM7.FEMA-BCA-Toolkit.contents.bca_toolkit_medical_office_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.25, 26.875, 40.375, 57.125, 67.25, 75.375, 82.25, 91.25, 96.25, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM7.FEMA-BCA-Toolkit.contents.medical_office.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 14.25, 26.875, 40.375, 57.125, 67.25, 75.375, 82.25, 91.25, 96.25, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM7.FEMA-BCA-Toolkit.contents.medical_office.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 14.25, 26.875, 40.375, 57.125, 67.25, 75.375, 82.25, 91.25, 96.25, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_fast_food_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.28571, 38.57143, 52.71429, 62.57143, 73.0, 79.28571, 88.28571, 94.85714, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_non_fast_food_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.71429, 48.85714, 57.28571, 71.85714, 79.71429, 84.85714, 92.85714, 93.42857, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_recreation_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.71429, 43.71429, 62.71429, 72.85714, 80.0, 84.0, 91.14286, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_fast_food_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.28571, 38.57143, 52.71429, 62.57143, 73.0, 79.28571, 88.28571, 94.85714, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_non_fast_food_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.71429, 48.85714, 57.28571, 71.85714, 79.71429, 84.85714, 92.85714, 93.42857, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_recreation_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.71429, 43.71429, 62.71429, 72.85714, 80.0, 84.0, 91.14286, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_fast_food_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.28571, 38.57143, 52.71429, 62.57143, 73.0, 79.28571, 88.28571, 94.85714, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_non_fast_food_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.71429, 48.85714, 57.28571, 71.85714, 79.71429, 84.85714, 92.85714, 93.42857, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_recreation_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.71429, 43.71429, 62.71429, 72.85714, 80.0, 84.0, 91.14286, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_fast_food_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.28571, 38.57143, 52.71429, 62.57143, 73.0, 79.28571, 88.28571, 94.85714, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_non_fast_food_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.71429, 48.85714, 57.28571, 71.85714, 79.71429, 84.85714, 92.85714, 93.42857, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_recreation_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.71429, 43.71429, 62.71429, 72.85714, 80.0, 84.0, 91.14286, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.FEMA-BCA-Toolkit.contents.fast_food.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 21.28571, 38.57143, 52.71429, 62.57143, 73.0, 79.28571, 88.28571, 94.85714, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.FEMA-BCA-Toolkit.contents.fast_food.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 21.28571, 38.57143, 52.71429, 62.57143, 73.0, 79.28571, 88.28571, 94.85714, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.FEMA-BCA-Toolkit.contents.non_fast_food.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 27.71429, 48.85714, 57.28571, 71.85714, 79.71429, 84.85714, 92.85714, 93.42857, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.FEMA-BCA-Toolkit.contents.non_fast_food.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 27.71429, 48.85714, 57.28571, 71.85714, 79.71429, 84.85714, 92.85714, 93.42857, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.FEMA-BCA-Toolkit.contents.recreation.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.71429, 43.71429, 62.71429, 72.85714, 80.0, 84.0, 91.14286, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.FEMA-BCA-Toolkit.contents.recreation.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.71429, 43.71429, 62.71429, 72.85714, 80.0, 84.0, 91.14286, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE-Sacramento.contents.usace_sacramento_restaurant.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 30.0, 96.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE-Sacramento.contents.usace_sacramento_restaurant_fast_food.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 23.0, 90.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE-Sacramento.contents.usace_sacramento_recreation.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 38.0, 38.0, 95.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE-Sacramento.contents.usace_sacramento_restaurant.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 25.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE-Sacramento.contents.usace_sacramento_restaurant_fast_food.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 20.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE-Sacramento.contents.usace_sacramento_recreation.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 32.0, 49.0, 49.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE-Sacramento.contents.usace_sacramento_restaurant.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 91.0, 91.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE-Sacramento.contents.usace_sacramento_restaurant_fast_food.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 88.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE-Sacramento.contents.usace_sacramento_recreation.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 98.0, 98.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE-Sacramento.contents.usace_sacramento_restaurant.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 44.0, 44.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE-Sacramento.contents.usace_sacramento_restaurant_fast_food.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 42.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+COM8.USACE-Sacramento.contents.usace_sacramento_recreation.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 47.0, 47.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+EDU1.FEMA-BCA-Toolkit.contents.bca_toolkit_schools_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+EDU1.FEMA-BCA-Toolkit.contents.bca_toolkit_schools_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+EDU1.FEMA-BCA-Toolkit.contents.bca_toolkit_schools_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+EDU1.FEMA-BCA-Toolkit.contents.bca_toolkit_schools_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+EDU1.FEMA-BCA-Toolkit.contents.schools.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+EDU1.FEMA-BCA-Toolkit.contents.schools.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+EDU1.USACE-New-Orleans.contents.usace_new_orleans_elementary_school.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.1, 17.5, 49.8, 50.1, 51.8, 57.6, 57.6, 57.6, 57.6, 57.8, 59.4, 69.2, 69.6, 69.7, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+EDU1.USACE-New-Orleans.contents.usace_new_orleans_elementary_school.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+EDU1.USACE-Sacramento.contents.usace_sacramento_schools.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 22.0, 67.0, 67.0, 88.0, 88.0, 88.0, 88.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+EDU1.USACE-Sacramento.contents.usace_sacramento_schools.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 18.0, 37.0, 37.0, 44.0, 44.0, 44.0, 44.0, 44.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+EDU1.USACE-Sacramento.contents.usace_sacramento_schools.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 88.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+EDU1.USACE-Sacramento.contents.usace_sacramento_schools.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 42.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+EDU2.USACE-New-Orleans.contents.usace_new_orleans_college.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.1, 17.5, 49.8, 50.1, 51.8, 57.6, 57.6, 57.6, 57.6, 57.8, 59.4, 69.2, 69.6, 69.7, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+EDU2.USACE-New-Orleans.contents.usace_new_orleans_college.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+GOV1.USACE-New-Orleans.contents.usace_new_orleans_government_facility.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.1, 17.5, 49.8, 50.1, 51.8, 57.6, 57.6, 57.6, 57.6, 57.8, 59.4, 69.2, 69.6, 69.7, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+GOV1.USACE-New-Orleans.contents.usace_new_orleans_government_facility.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+GOV1.USACE-Sacramento.contents.usace_sacramento_government.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 35.0, 90.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+GOV1.USACE-Sacramento.contents.usace_sacramento_government.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 30.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+GOV1.USACE-Sacramento.contents.usace_sacramento_government.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 97.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+GOV1.USACE-Sacramento.contents.usace_sacramento_government.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 45.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND1.USACE-Sacramento.contents.usace_sacramento_heavy.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 16.0, 56.0, 56.0, 92.0, 92.0, 92.0, 92.0, 92.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND1.USACE-Sacramento.contents.usace_sacramento_heavy.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 14.0, 31.0, 31.0, 46.0, 46.0, 46.0, 46.0, 46.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND1.USACE-Sacramento.contents.usace_sacramento_heavy.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 33.0, 77.0, 77.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND1.USACE-Sacramento.contents.usace_sacramento_heavy.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 40.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND2.FEMA-BCA-Toolkit.contents.bca_toolkit_industrial_light_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19.28571, 31.0, 42.28571, 52.28571, 60.71429, 72.0, 82.14286, 90.71429, 94.28571, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND2.FEMA-BCA-Toolkit.contents.bca_toolkit_industrial_light_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19.28571, 31.0, 42.28571, 52.28571, 60.71429, 72.0, 82.14286, 90.71429, 94.28571, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND2.FEMA-BCA-Toolkit.contents.bca_toolkit_industrial_light_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19.28571, 31.0, 42.28571, 52.28571, 60.71429, 72.0, 82.14286, 90.71429, 94.28571, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND2.FEMA-BCA-Toolkit.contents.bca_toolkit_industrial_light_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19.28571, 31.0, 42.28571, 52.28571, 60.71429, 72.0, 82.14286, 90.71429, 94.28571, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND2.FEMA-BCA-Toolkit.contents.industrial_light.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 19.28571, 31.0, 42.28571, 52.28571, 60.71429, 72.0, 82.14286, 90.71429, 94.28571, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND2.FEMA-BCA-Toolkit.contents.industrial_light.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 19.28571, 31.0, 42.28571, 52.28571, 60.71429, 72.0, 82.14286, 90.71429, 94.28571, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND2.USACE-Sacramento.contents.usace_sacramento_light.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 35.0, 75.0, 75.0, 96.0, 96.0, 96.0, 96.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND2.USACE-Sacramento.contents.usace_sacramento_light.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 30.0, 41.0, 41.0, 48.0, 48.0, 48.0, 48.0, 48.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND2.USACE-Sacramento.contents.usace_sacramento_light.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 88.0, 88.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+IND2.USACE-Sacramento.contents.usace_sacramento_light.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 42.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+REL1.FEMA-BCA-Toolkit.contents.bca_toolkit_religious_facilities_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.28571, 48.42857, 60.0, 69.28571, 76.42857, 81.42857, 88.42857, 94.28571, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+REL1.FEMA-BCA-Toolkit.contents.bca_toolkit_religious_facilities_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.28571, 48.42857, 60.0, 69.28571, 76.42857, 81.42857, 88.42857, 94.28571, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+REL1.FEMA-BCA-Toolkit.contents.bca_toolkit_religious_facilities_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.28571, 48.42857, 60.0, 69.28571, 76.42857, 81.42857, 88.42857, 94.28571, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+REL1.FEMA-BCA-Toolkit.contents.bca_toolkit_religious_facilities_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.28571, 48.42857, 60.0, 69.28571, 76.42857, 81.42857, 88.42857, 94.28571, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+REL1.FEMA-BCA-Toolkit.contents.religious_facilities.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 29.28571, 48.42857, 60.0, 69.28571, 76.42857, 81.42857, 88.42857, 94.28571, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+REL1.FEMA-BCA-Toolkit.contents.religious_facilities.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 29.28571, 48.42857, 60.0, 69.28571, 76.42857, 81.42857, 88.42857, 94.28571, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+REL1.USACE-Sacramento.contents.usace_sacramento_churches.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 33.0, 85.0, 85.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+REL1.USACE-Sacramento.contents.usace_sacramento_churches.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 28.0, 47.0, 47.0, 49.0, 49.0, 49.0, 49.0, 49.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+REL1.USACE-Sacramento.contents.usace_sacramento_churches.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 73.0, 73.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+REL1.USACE-Sacramento.contents.usace_sacramento_churches.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 35.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE-NACCS.contents.naccs_5a_single_story_residence_no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 60.0, 80.0, 85.0, 90.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE-NACCS.contents.naccs_5a_single_story_residence_no_basement_wave_crawlspace-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 30.0, 60.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE-NACCS.contents.naccs_5b_two_story_residence_no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 5.0, 25.0, 35.0, 45.0, 50.0, 55.0, 62.5, 70.0, 73.33333, 76.66667, 80.0, 83.33333, 86.66667, 90.0, 93.33333, 96.66667, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE-NACCS.contents.naccs_5b_two_story_residence_no_basement_wave_crawlspace-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 5.0, 20.0, 35.0, 45.0, 94.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE-NACCS.contents.naccs_6a_single_story_residence_with_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 10.0, 15.0, 15.0, 45.0, 64.0, 80.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE-NACCS.contents.naccs_6b_two_story_residence_with_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 10.0, 15.0, 20.0, 35.0, 40.0, 50.0, 55.0, 60.0, 65.0, 70.0, 76.66667, 83.33333, 90.0, 96.66667, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE-NACCS.contents.naccs_7a_building_on_open_pile_foundation-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 1.0, 1.0, 10.0, 40.0, 50.0, 80.0, 89.0, 98.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE-NACCS.contents.naccs_7a_building_on_open_pile_foundation_waves-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 12.5, 20.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE-NACCS.contents.naccs_7b_building_on_pile_foundation_with_enclosure-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 9.0, 11.0, 20.0, 40.0, 75.0, 85.0, 92.5, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE-NACCS.contents.naccs_7b_building_on_pile_foundation_with_enclosure_waves-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 25.0, 40.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE-Generic.contents.single_family_residential.1_story_with_basements-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 10.5, 13.2, 16.0, 18.9, 21.8, 24.7, 27.4, 30.0, 32.4, 34.5, 36.3, 37.7, 38.6, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE-Generic.contents.single_family_residential.2_or_more_stories_with_basements-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 8.4, 10.1, 11.9, 13.8, 15.7, 17.7, 19.8, 22.0, 24.3, 26.7, 29.1, 31.7, 34.4, 37.2, 40.0, 43.0, 46.1, 49.3, 52.6, 52.6, 52.6, 52.6, 52.6, 52.6, 52.6, 52.6, 52.6|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE-Generic.contents.single_family_residential.split_level_with_basements-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 7.3, 9.4, 11.6, 13.8, 16.1, 18.2, 20.2, 22.1, 23.6, 24.9, 25.8, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE-Generic.contents.single_family_residential.1_story_with_no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 2.4, 8.1, 13.3, 17.9, 22.0, 25.7, 28.8, 31.5, 33.8, 35.7, 37.2, 38.4, 39.2, 39.7, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE-Generic.contents.single_family_residential.2_or_more_stories_with_no_basements-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 1.0, 5.0, 8.7, 12.2, 15.5, 18.5, 21.3, 23.9, 26.3, 28.4, 30.3, 32.0, 33.4, 34.7, 35.6, 36.4, 36.9, 37.2, 37.2, 37.2, 37.2, 37.2, 37.2, 37.2, 37.2, 37.2|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE-Generic.contents.single_family_residential.split_level_with_no_basements-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 2.2, 2.9, 4.7, 7.5, 11.1, 15.3, 20.1, 25.2, 30.5, 35.7, 40.9, 45.8, 50.2, 54.1, 57.2, 59.4, 60.5, 60.5, 60.5, 60.5, 60.5, 60.5, 60.5, 60.5, 60.5, 60.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_slab_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 30.0, 45.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_wall_2_feet_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_wall_3_feet_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_open_+2_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_open_+4_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_open_+6_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_open_+8_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_open_+10_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 25.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_open_+12_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 10.0, 65.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_obstr_+2_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 48.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_obstr_+4_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 3.0, 38.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_obstr_+6_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 2.0, 3.0, 3.0, 3.0, 33.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_obstr_+8_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 3.0, 3.0, 3.0, 28.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_obstr_+10_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 3.0, 3.0, 28.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_obstr_+12_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 3.0, 13.0, 68.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_1_story_without_basement_outside_caz_usace_generic_riverine-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.4, 8.1, 13.3, 17.9, 22.0, 25.7, 28.8, 31.5, 33.8, 35.7, 37.2, 38.4, 39.2, 39.7, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_2_story_without_basement_outside_caz_usace_generic_riverine-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 5.0, 8.7, 12.2, 15.5, 18.5, 21.3, 23.9, 26.3, 28.4, 30.3, 32.0, 33.4, 34.7, 35.6, 36.4, 36.9, 37.2, 37.2, 37.2, 37.2, 37.2|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_split_level_without_basement_outside_caz_usace_generic_riverine-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.2, 2.9, 4.7, 7.5, 11.1, 15.3, 20.1, 25.2, 30.5, 35.7, 40.9, 45.8, 50.2, 54.1, 57.2, 59.4, 60.5, 60.5, 60.5, 60.5, 60.5, 60.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_1_story_with_basement_outside_caz_usace_generic_riverine-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.5, 13.2, 16.0, 18.9, 21.8, 24.7, 27.4, 30.0, 32.4, 34.5, 36.3, 37.7, 38.6, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_2_story_with_basement_outside_caz_usace_generic_riverine-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.4, 10.1, 11.9, 13.8, 15.7, 17.7, 19.8, 22.0, 24.3, 26.7, 29.1, 31.7, 34.4, 37.2, 40.0, 43.0, 46.1, 49.3, 52.6, 52.6, 52.6, 52.6, 52.6|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_split_level_with_basement_outside_caz_usace_generic_riverine-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.3, 9.4, 11.6, 13.8, 16.1, 18.2, 20.2, 22.1, 23.6, 24.9, 25.8, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-FIMA.contents.fema_fia_split_level_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.5, 13.5, 19.5, 37.5, 40.5, 42.0, 49.5, 51.0, 61.5, 64.5, 67.5, 69.0, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-FIMA.contents.fema_fia_two_or_more_stories_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 12.0, 16.5, 22.5, 30.0, 34.5, 42.0, 49.5, 57.0, 66.0, 73.5, 76.5, 79.5, 82.5, 85.5, 88.5, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-FIMA.contents.fema_fia_split_level_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.5, 7.5, 9.0, 24.0, 28.5, 33.0, 40.5, 48.0, 52.5, 54.0, 66.0, 72.0, 75.0, 78.0, 81.0, 84.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-FIMA.contents.fema_fia_one_story_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 12.0, 16.5, 22.5, 30.0, 34.5, 42.0, 49.5, 57.0, 66.0, 73.5, 76.5, 79.5, 82.5, 85.5, 88.5, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-FIMA.contents.fema_fia_coastal_building_zone_v-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 15.0, 23.0, 35.0, 50.0, 58.0, 63.0, 66.5, 69.5, 72.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 87.0, 87.0, 87.0, 87.0, 87.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-FIMA.contents.fema_fia_two_or_more_stories_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.5, 13.5, 19.5, 27.0, 30.0, 33.0, 36.0, 39.0, 43.5, 49.5, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-FIMA.contents.fema_fia_one_story_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.5, 21.0, 33.0, 40.5, 43.5, 45.0, 60.0, 64.5, 66.0, 67.5, 69.0, 70.5, 72.0, 73.5, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-FIMA.contents.fema_fia_coastal_building_zone_v-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 24.0, 29.0, 37.0, 54.0, 60.5, 64.5, 68.0, 70.0, 72.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 87.0, 87.0, 87.0, 87.0, 87.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-FIMA.contents.fema_fia.split_level.with_basement_split_level-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.5, 7.5, 9.0, 24.0, 28.5, 33.0, 40.5, 48.0, 52.5, 54.0, 66.0, 72.0, 75.0, 78.0, 81.0, 84.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-FIMA.contents.fema_fia_default_one_story_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 12.0, 16.5, 22.5, 30.0, 34.5, 42.0, 49.5, 57.0, 66.0, 73.5, 76.5, 79.5, 82.5, 85.5, 88.5, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-FIMA.contents.fema_fia.1_story.no_basement_one_story-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.5, 21.0, 33.0, 40.5, 43.5, 45.0, 60.0, 64.5, 66.0, 67.5, 69.0, 70.5, 72.0, 73.5, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-FIMA.contents.fema_fia.2_story.no_basement_two_or_more_stories-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.5, 13.5, 19.5, 27.0, 30.0, 33.0, 36.0, 39.0, 43.5, 49.5, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-FIMA.contents.fema_fia_default_one_story_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.5, 21.0, 33.0, 40.5, 43.5, 45.0, 60.0, 64.5, 66.0, 67.5, 69.0, 70.5, 72.0, 73.5, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-FIMA.contents.fema_fia_default_coastal_building_zone_v-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 24.0, 29.0, 37.0, 54.0, 60.5, 64.5, 68.0, 70.0, 72.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 87.0, 87.0, 87.0, 87.0, 87.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-FIMA.contents.fema_fia_default_two_or_more_stories_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.5, 13.5, 19.5, 27.0, 30.0, 33.0, 36.0, 39.0, 43.5, 49.5, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-FIMA.contents.fema_fia.1_story.with_basement_one_story-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 12.0, 16.5, 22.5, 30.0, 34.5, 42.0, 49.5, 57.0, 66.0, 73.5, 76.5, 79.5, 82.5, 85.5, 88.5, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-FIMA.contents.fema_fia_default_split_level_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.5, 13.5, 19.5, 37.5, 40.5, 42.0, 49.5, 51.0, 61.5, 64.5, 67.5, 69.0, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-FIMA.contents.fema_fia_default_two_or_more_stories_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 12.0, 16.5, 22.5, 30.0, 34.5, 42.0, 49.5, 57.0, 66.0, 73.5, 76.5, 79.5, 82.5, 85.5, 88.5, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-FIMA.contents.fema_fia_default_coastal_building_zone_v-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 15.0, 23.0, 35.0, 50.0, 58.0, 63.0, 66.5, 69.5, 72.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 87.0, 87.0, 87.0, 87.0, 87.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-BCA-Toolkit.contents.1_story_single_family_home.basement.fema_fia_original_source-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 6.0, 12.0, 16.5, 22.5, 30.0, 34.5, 42.0, 49.5, 57.0, 66.0, 73.5, 76.5, 79.5, 82.5, 85.5, 88.5, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-BCA-Toolkit.contents.1_story_single_family_home.no_basement.fema_fia_original_source-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 13.5, 21.0, 33.0, 40.5, 43.5, 45.0, 60.0, 64.5, 66.0, 67.5, 69.0, 70.5, 72.0, 73.5, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-BCA-Toolkit.contents.split_level_single_family_home.basement.fema_fia_original_source-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 4.5, 7.5, 9.0, 24.0, 28.5, 33.0, 40.5, 48.0, 52.5, 54.0, 66.0, 72.0, 75.0, 78.0, 81.0, 84.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-BCA-Toolkit.contents.split_level_single_family_home.no_basement.fema_fia_original_source-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 4.5, 13.5, 19.5, 37.5, 40.5, 42.0, 49.5, 51.0, 61.5, 64.5, 67.5, 69.0, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-BCA-Toolkit.contents.2_or_more_story_single_family_home.basement.fema_fia_original_source-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 6.0, 12.0, 16.5, 22.5, 30.0, 34.5, 42.0, 49.5, 57.0, 66.0, 73.5, 76.5, 79.5, 82.5, 85.5, 88.5, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-BCA-Toolkit.contents.2_or_more_story_single_family_home.no_basement.fema_fia_original_source-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 7.5, 13.5, 19.5, 27.0, 30.0, 33.0, 36.0, 39.0, 43.5, 49.5, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-BCA-Toolkit.contents.single_family_home.basement.fema_fia_original_source-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 11.0, 24.0, 29.0, 37.0, 54.0, 60.5, 64.5, 68.0, 70.0, 72.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.FEMA-BCA-Toolkit.contents.single_family_home.no_basement.fema_fia_original_source-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 6.0, 15.0, 23.0, 35.0, 50.0, 58.0, 63.0, 66.5, 69.5, 72.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE-New-Orleans.contents.one_story.usace_new_orleans_one_story.pier_foundation.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 41.8, 62.9, 82.1, 84.6, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE-New-Orleans.contents.one_story.usace_new_orleans_one_story.pier_foundation.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE-New-Orleans.contents.one_story.usace_new_orleans_one_story.slab_foundation.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 41.8, 62.9, 82.1, 84.6, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE-New-Orleans.contents.one_story.usace_new_orleans_one_story.slab_foundation.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE-New-Orleans.contents.two_or_more.usace_new_orleans_two_story.pier_foundation.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 36.5, 50.8, 50.8, 55.3, 55.3, 55.3, 55.3, 55.3, 72.5, 80.7, 87.1, 90.1, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE-New-Orleans.contents.two_or_more.usace_new_orleans_two_story.pier_foundation.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE-New-Orleans.contents.two_or_more.usace_new_orleans_two_story.slab_foundation.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 36.5, 50.8, 50.8, 55.3, 55.3, 55.3, 55.3, 55.3, 72.5, 80.7, 87.1, 90.1, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE-New-Orleans.contents.two_or_more.usace_new_orleans_two_story.slab_foundation.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE-Generic.contents.one_story.usace_generic.with_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 10.5, 13.2, 16.0, 18.9, 21.8, 24.7, 27.4, 30.0, 32.4, 34.5, 36.3, 37.7, 38.6, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE-Generic.contents.one_story.usace_generic.with_no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 2.4, 8.1, 13.3, 17.9, 22.0, 25.7, 28.8, 31.5, 33.8, 35.7, 37.2, 38.4, 39.2, 39.7, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE-Generic.contents.split_level.usace_generic.with_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 7.3, 9.4, 11.6, 13.8, 16.1, 18.2, 20.2, 22.1, 23.6, 24.9, 25.8, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE-Generic.contents.split_level.usace_generic.with_no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 2.2, 2.9, 4.7, 7.5, 11.1, 15.3, 20.1, 25.2, 30.5, 35.7, 40.9, 45.8, 50.2, 54.1, 57.2, 59.4, 60.5, 60.5, 60.5, 60.5, 60.5, 60.5, 60.5, 60.5, 60.5, 60.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE-Generic.contents.two_or_more_stories.usace_generic.with_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 8.4, 10.1, 11.9, 13.8, 15.7, 17.7, 19.8, 22.0, 24.3, 26.7, 29.1, 31.7, 34.4, 37.2, 40.0, 43.0, 46.1, 49.3, 52.6, 52.6, 52.6, 52.6, 52.6, 52.6, 52.6, 52.6, 52.6|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES1.USACE-Generic.contents.two_or_more_stories.usace_generic.with_no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 1.0, 5.0, 8.7, 12.2, 15.5, 18.5, 21.3, 23.9, 26.3, 28.4, 30.3, 32.0, 33.4, 34.7, 35.6, 36.4, 36.9, 37.2, 37.2, 37.2, 37.2, 37.2, 37.2, 37.2, 37.2, 37.2|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES2.FEMA-BCA-Toolkit.contents.bca_toolkit_manufactured_home_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES2.FEMA-BCA-Toolkit.contents.bca_toolkit_mobile_home_outside_caz_fema_fia_riverine_adjusted-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 66.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES2.FEMA-FIMA.contents.fema_fia_mobile_home_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 66.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES2.FEMA-FIMA.contents.fema_fia_mobile_home-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 66.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES2.FEMA-FIMA.contents.fema_fia_default_mobile_home-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 66.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES2.FEMA-FIMA.contents.fema_fia_default_mobile_home_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 66.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES2.FEMA-BCA-Toolkit.contents.mobile_home.no_basement.fema_fia_original_source-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 12.0, 66.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3.USACE-NACCS.contents.naccs_1a_1_apartments_1_story_no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 3.5, 28.0, 45.0, 60.0, 70.5, 81.0, 90.5, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3.USACE-NACCS.contents.naccs_1a_3_apartments_3_story_no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 15.0, 20.0, 25.0, 27.5, 30.0, 32.5, 35.0, 38.33333, 41.66667, 45.0, 48.33333, 51.66667, 55.0, 58.33333, 61.66667, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3.USACE-NACCS.contents.naccs_4a_urban_high_rise-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.375, 0.5, 4.0, 5.0, 7.0, 7.5, 8.75, 10.0, 10.5, 11.0, 11.33333, 11.66667, 12.0, 12.33333, 12.66667, 13.0, 13.33333, 13.66667, 14.0, 14.0, 14.0, 14.0, 14.0, 14.0, 14.0, 14.0, 14.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3.USACE-NACCS.contents.naccs_4b_beach_high_rise-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 4.5, 5.5, 6.25, 7.0, 7.75, 8.5, 8.66667, 8.83333, 9.0, 9.16667, 9.33333, 9.5, 9.66667, 9.83333, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3.USACE-NACCS.contents.naccs_4b_beach_high_rise_waves-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.5, 21.0, 33.75, 52.5, 67.5, 82.5, 91.25, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3.FEMA-BCA-Toolkit.contents.bca_toolkit_apartment_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3.FEMA-BCA-Toolkit.contents.bca_toolkit_apartment_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3.FEMA-BCA-Toolkit.contents.bca_toolkit_apartment_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3.FEMA-BCA-Toolkit.contents.bca_toolkit_apartment_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3.FEMA-BCA-Toolkit.contents.apartment.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES3.FEMA-BCA-Toolkit.contents.apartment.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES4.FEMA-BCA-Toolkit.contents.bca_toolkit_hotel_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.14286, 26.28571, 34.14286, 39.71429, 48.71429, 52.42857, 58.42857, 61.28571, 63.14286, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES4.FEMA-BCA-Toolkit.contents.bca_toolkit_hotel_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.14286, 26.28571, 34.14286, 39.71429, 48.71429, 52.42857, 58.42857, 61.28571, 63.14286, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES4.FEMA-BCA-Toolkit.contents.bca_toolkit_hotel_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.14286, 26.28571, 34.14286, 39.71429, 48.71429, 52.42857, 58.42857, 61.28571, 63.14286, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES4.FEMA-BCA-Toolkit.contents.bca_toolkit_hotel_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.14286, 26.28571, 34.14286, 39.71429, 48.71429, 52.42857, 58.42857, 61.28571, 63.14286, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES4.FEMA-BCA-Toolkit.contents.hotel.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 16.14286, 26.28571, 34.14286, 39.71429, 48.71429, 52.42857, 58.42857, 61.28571, 63.14286, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES4.FEMA-BCA-Toolkit.contents.hotel.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 16.14286, 26.28571, 34.14286, 39.71429, 48.71429, 52.42857, 58.42857, 61.28571, 63.14286, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES4.USACE-Sacramento.contents.usace_sacramento_hotel_full_service.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 23.0, 90.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES4.USACE-Sacramento.contents.usace_sacramento_hotel_full_service.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 20.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES4.USACE-Sacramento.contents.usace_sacramento_hotel_full_service.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 88.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES4.USACE-Sacramento.contents.usace_sacramento_hotel_full_service.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 42.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES5.FEMA-BCA-Toolkit.contents.bca_toolkit_correctional_facility_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.125, 21.25, 31.0, 44.125, 53.0, 62.25, 69.5, 77.5, 83.75, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES5.FEMA-BCA-Toolkit.contents.bca_toolkit_correctional_facility_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.125, 21.25, 31.0, 44.125, 53.0, 62.25, 69.5, 77.5, 83.75, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES5.FEMA-BCA-Toolkit.contents.bca_toolkit_correctional_facility_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.125, 21.25, 31.0, 44.125, 53.0, 62.25, 69.5, 77.5, 83.75, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES5.FEMA-BCA-Toolkit.contents.bca_toolkit_correctional_facility_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.125, 21.25, 31.0, 44.125, 53.0, 62.25, 69.5, 77.5, 83.75, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES5.FEMA-BCA-Toolkit.contents.correctional_facility.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 13.125, 21.25, 31.0, 44.125, 53.0, 62.25, 69.5, 77.5, 83.75, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
+RES5.FEMA-BCA-Toolkit.contents.correctional_facility.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 13.125, 21.25, 31.0, 44.125, 53.0, 62.25, 69.5, 77.5, 83.75, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
diff --git a/flood/building/portfolio/Hazus v6.1/loss_repair.csv b/flood/building/portfolio/Hazus v6.1/loss_repair.csv
deleted file mode 100644
index 0dbbfde6..00000000
--- a/flood/building/portfolio/Hazus v6.1/loss_repair.csv
+++ /dev/null
@@ -1,1827 +0,0 @@
-index,ID,Incomplete,Demand-Type,Demand-Unit,Demand-Offset,Demand-Directional,DV-Unit,LossFunction-Theta_0
-0,RES1.FIA.contents.one_floor.no_basement.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 12.0, 25.0, 35.0, 36.0, 38.0, 41.0, 45.0, 50.0, 55.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-1,RES1.FIA.contents.one_floor.with_basement.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 7.0, 8.0, 16.0, 20.0, 22.0, 28.0, 33.0, 39.0, 44.0, 50.0, 55.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-2,RES1.FIA.contents.two_floors.no_basement.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 8.0, 11.0, 19.0, 23.0, 28.0, 33.0, 39.0, 44.0, 50.0, 54.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-3,RES1.FIA-Modified.contents.two_floors.with_basement.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 7.0, 8.0, 16.0, 18.0, 25.0, 29.0, 33.0, 37.0, 42.0, 46.0, 52.0, 55.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-4,RES1.FIA-Modified.contents.three_or_more_floors.no_basement.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 7.0, 15.0, 21.0, 22.0, 23.0, 25.0, 27.0, 30.0, 35.0, 40.0, 43.0, 45.0, 48.0, 50.0, 52.0, 54.0, 56.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-5,RES1.FIA-Modified.contents.three_or_more_floors.with_basement.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 7.0, 8.0, 15.0, 22.0, 27.0, 28.0, 29.0, 30.0, 32.0, 35.0, 39.0, 43.0, 46.0, 47.0, 50.0, 52.0, 53.0, 55.0, 57.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-6,RES1.FIA.contents.split_level.no_basement.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 8.0, 11.0, 19.0, 23.0, 28.0, 33.0, 39.0, 44.0, 50.0, 54.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-7,RES1.FIA-Modified.contents.split_level.with_basement.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 7.0, 8.0, 16.0, 18.0, 25.0, 29.0, 33.0, 37.0, 42.0, 46.0, 52.0, 55.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-8,RES1.FIA.contents.one_floor.no_basement.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 17.0, 23.0, 29.0, 35.0, 40.0, 45.0, 50.0, 55.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-9,RES1.FIA.contents.one_floor.with_basement.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 7.0, 8.0, 15.0, 20.0, 22.0, 28.0, 33.0, 39.0, 44.0, 50.0, 55.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-10,RES1.FIA.contents.two_floors.no_basement.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 7.0, 9.0, 17.0, 22.0, 28.0, 33.0, 39.0, 44.0, 50.0, 54.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-11,RES1.FIA-Modified.contents.two_floors.with_basement.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 7.0, 8.0, 15.0, 17.0, 23.0, 28.0, 33.0, 37.0, 42.0, 46.0, 52.0, 55.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-12,RES1.FIA-Modified.contents.three_or_more_floors.no_basement.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 6.0, 11.0, 15.0, 19.0, 23.0, 26.0, 29.0, 32.0, 35.0, 41.0, 43.0, 45.0, 48.0, 50.0, 52.0, 54.0, 56.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-13,RES1.FIA-Modified.contents.three_or_more_floors.with_basement.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 7.0, 8.0, 14.0, 18.0, 22.0, 25.0, 29.0, 31.0, 34.0, 36.0, 39.0, 44.0, 46.0, 47.0, 50.0, 52.0, 53.0, 55.0, 57.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-14,RES1.FIA.contents.split_level.no_basement.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 7.0, 9.0, 17.0, 22.0, 28.0, 33.0, 39.0, 44.0, 50.0, 54.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-15,RES1.FIA-Modified.contents.split_level.with_basement.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 7.0, 8.0, 15.0, 17.0, 23.0, 28.0, 33.0, 37.0, 42.0, 46.0, 52.0, 55.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-16,RES1.USACE_IWR.contents.one_story.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 4.0, 16.0, 26.0, 36.0, 44.0, 52.0, 58.0, 64.0, 68.0, 72.0, 74.0, 76.0, 78.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-17,RES1.USACE_IWR.contents.two_or_more_stories.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 2.0, 10.0, 18.0, 24.0, 32.0, 38.0, 42.0, 48.0, 52.0, 56.0, 60.0, 64.0, 66.0, 70.0, 72.0, 72.0, 74.0, 74.0, 76.0, 76.0, 78.0, 78.0, 80.0, 80.0, 82.0, 82.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-18,RES1.USACE_IWR.contents.split_level.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 4.0, 6.0, 10.0, 16.0, 22.0, 30.0, 40.0, 50.0, 62.0, 72.0, 82.0, 92.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-19,RES1.USACE_Chicago.contents.one_story.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 12.0, 24.0, 33.0, 35.0, 37.0, 41.0, 45.0, 50.0, 55.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-20,RES1.USACE_Chicago.contents.one_story.with_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 6.0, 7.0, 8.0, 15.0, 19.0, 22.0, 28.0, 33.0, 39.0, 43.0, 49.0, 54.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-21,RES1.USACE_Chicago.contents.split_level.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 19.0, 32.0, 41.0, 47.0, 51.0, 53.0, 55.0, 56.0, 62.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-22,RES1.USACE_Chicago.contents.split_level.with_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 10.0, 15.0, 18.0, 31.0, 44.0, 52.0, 58.0, 61.0, 63.0, 64.0, 66.0, 69.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-23,RES1.USACE_Chicago.contents.two_story.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 8.0, 11.0, 18.0, 23.0, 28.0, 33.0, 39.0, 44.0, 50.0, 54.0, 58.0, 62.0, 66.0, 70.0, 74.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-24,RES1.USACE_Chicago.contents.two_story.with_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 6.0, 9.0, 11.0, 17.0, 22.0, 28.0, 33.0, 39.0, 44.0, 49.0, 55.0, 61.0, 64.0, 71.0, 76.0, 78.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-25,RES1.USACE_Galveston.contents.one_&_1/2_story.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 22.0, 36.0, 45.0, 57.0, 66.0, 71.0, 77.0, 79.0, 82.0, 84.0, 86.0, 87.0, 89.0, 90.0, 91.0, 92.0, 92.0, 92.0, 93.0, 93.0, 93.0, 93.0, 93.0, 93.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-26,RES1.USACE_Galveston.contents.one_story.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 8.0, 42.0, 60.0, 71.0, 77.0, 82.0, 85.0, 86.0, 87.0, 88.0, 88.0, 88.0, 89.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-27,RES1.USACE_Galveston.contents.two_story.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 4.0, 24.0, 34.0, 40.0, 47.0, 53.0, 56.0, 58.0, 58.0, 58.0, 61.0, 66.0, 68.0, 76.0, 81.0, 86.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-28,RES1.USACE_New-Orleans.contents.one_story.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 63.0, 82.0, 85.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-29,RES1.USACE_New-Orleans.contents.one_story.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-30,RES1.USACE_New-Orleans.contents.two_story.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 37.0, 51.0, 51.0, 55.0, 55.0, 55.0, 55.0, 55.0, 73.0, 81.0, 87.0, 90.0, 93.0, 93.0, 93.0, 93.0, 93.0, 93.0, 93.0, 93.0, 93.0, 93.0, 93.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-31,RES1.USACE_New-Orleans.contents.two_story.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-32,RES1.USACE_St-Paul.contents.one_story-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 44.0, 54.0, 63.0, 68.0, 73.0, 75.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-33,RES1.USACE_St-Paul.contents.two_story-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 44.0, 54.0, 63.0, 68.0, 73.0, 75.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-34,RES1.USACE_Wilmington.contents.one_&_1/2_story.pile_foundation-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"6.0, 7.0, 8.0, 9.0, 9.0, 21.0, 31.0, 43.0, 54.0, 67.0, 70.0, 73.0, 76.0, 78.0, 81.0, 82.0, 84.0, 85.0, 86.0, 87.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-35,RES1.USACE_Wilmington.contents.one_&_1/2_story-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 9.0, 21.0, 31.0, 37.0, 43.0, 51.0, 57.0, 63.0, 68.0, 74.0, 80.0, 81.0, 83.0, 84.0, 86.0, 87.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-36,RES1.USACE_Wilmington.contents.one_&_1/2_story_with_1/2_living_area_below-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 6.0, 10.0, 15.0, 18.0, 21.0, 23.0, 24.0, 28.0, 34.0, 44.0, 54.0, 63.0, 73.0, 76.0, 79.0, 82.0, 85.0, 86.0, 87.0, 88.0, 89.0, 90.0, 91.0, 92.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-37,RES1.USACE_Wilmington.contents.one_story.pile_foundation-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"9.0, 10.0, 13.0, 13.0, 14.0, 26.0, 38.0, 52.0, 64.0, 78.0, 81.0, 85.0, 88.0, 91.0, 95.0, 96.0, 97.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-38,RES1.USACE_Wilmington.contents.one_story-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 11.0, 24.0, 36.0, 43.0, 46.0, 52.0, 59.0, 66.0, 73.0, 80.0, 87.0, 88.0, 90.0, 92.0, 94.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-39,RES1.USACE_Wilmington.contents.one_story_with_1/2_living_area_below-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 11.0, 16.0, 20.0, 24.0, 28.0, 30.0, 32.0, 38.0, 46.0, 54.0, 63.0, 72.0, 82.0, 85.0, 89.0, 92.0, 95.0, 96.0, 97.0, 98.0, 98.0, 99.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-40,RES1.USACE_Wilmington.contents.one_story_with_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"10.0, 12.0, 13.0, 13.0, 20.0, 34.0, 48.0, 52.0, 64.0, 78.0, 81.0, 85.0, 88.0, 91.0, 95.0, 96.0, 98.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-41,RES1.USACE_Wilmington.contents.split_level-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 3.0, 15.0, 21.0, 25.0, 32.0, 44.0, 50.0, 55.0, 61.0, 66.0, 72.0, 75.0, 79.0, 83.0, 87.0, 91.0, 94.0, 94.0, 95.0, 96.0, 97.0, 98.0, 99.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-42,RES1.USACE_Wilmington.contents.two_story.pile_foundation-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"6.0, 7.0, 8.0, 9.0, 10.0, 19.0, 29.0, 38.0, 45.0, 53.0, 55.0, 57.0, 59.0, 61.0, 63.0, 67.0, 71.0, 75.0, 78.0, 82.0, 86.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-43,RES1.USACE_Wilmington.contents.two_story-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 7.0, 18.0, 26.0, 30.0, 40.0, 50.0, 52.0, 53.0, 55.0, 56.0, 58.0, 63.0, 68.0, 72.0, 77.0, 82.0, 86.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-44,RES1.USACE_Wilmington.contents.two_story_with_1/2_living_area_below-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 10.0, 13.0, 15.0, 18.0, 19.0, 21.0, 25.0, 33.0, 40.0, 47.0, 54.0, 56.0, 59.0, 62.0, 65.0, 67.0, 71.0, 75.0, 79.0, 83.0, 87.0, 91.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-45,RES2.FIA.contents.mobile_home.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 3.0, 27.0, 49.0, 64.0, 70.0, 76.0, 78.0, 79.0, 81.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-46,RES2.FIA.contents.mobile_home.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 3.0, 27.0, 50.0, 65.0, 71.0, 76.0, 78.0, 79.0, 81.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-47,RES2.USACE_Chicago.contents.mobile_home-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 3.0, 27.0, 49.0, 64.0, 70.0, 76.0, 78.0, 79.0, 81.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-48,RES2.USACE_Galveston.contents.mobile_home-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 3.0, 23.0, 36.0, 43.0, 55.0, 66.0, 78.0, 86.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-49,RES2.USACE_New-Orleans.contents.mobile_home.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 39.0, 54.0, 75.0, 77.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-50,RES2.USACE_New-Orleans.contents.mobile_home.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-51,RES2.USACE_Wilmington.contents.mobile_home-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 6.0, 22.0, 32.0, 37.0, 50.0, 63.0, 74.0, 82.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-52,RES3.USACE_Chicago.contents.apartment_unit_grade-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 12.0, 24.0, 33.0, 35.0, 37.0, 41.0, 45.0, 50.0, 55.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-53,RES3.USACE_Chicago.contents.apartment_unit_sub_grade-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 6.0, 7.0, 8.0, 15.0, 19.0, 22.0, 28.0, 33.0, 39.0, 43.0, 49.0, 54.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-54,RES3.USACE_Galveston.contents.apartment.living_area_on_one_floor-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 6.0, 34.0, 44.0, 55.0, 67.0, 77.0, 87.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-55,RES3.USACE_Galveston.contents.condominium.living_area_on_multiple_floors-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 4.0, 24.0, 34.0, 40.0, 47.0, 53.0, 56.0, 58.0, 58.0, 58.0, 61.0, 66.0, 68.0, 76.0, 81.0, 86.0, 91.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-56,RES4.USACE_Galveston.contents.average_hotel/motel.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 19.0, 25.0, 29.0, 34.0, 39.0, 44.0, 49.0, 56.0, 65.0, 74.0, 82.0, 88.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-57,RES4.USACE_Galveston.contents.hotel.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 22.0, 28.0, 33.0, 37.0, 41.0, 44.0, 46.0, 49.0, 54.0, 60.0, 69.0, 81.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-58,RES4.USACE_Galveston.contents.motel_unit.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 16.0, 21.0, 25.0, 30.0, 36.0, 43.0, 52.0, 63.0, 76.0, 88.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-59,RES5.USACE_Galveston.contents.average_institutional_dormitory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 38.0, 60.0, 73.0, 81.0, 88.0, 94.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-60,RES6.USACE_Galveston.contents.nursing_home.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 38.0, 60.0, 73.0, 81.0, 88.0, 94.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-61,COM1.USACE_Galveston.contents.average_retail_trade_equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 26.0, 42.0, 56.0, 68.0, 78.0, 83.0, 85.0, 87.0, 88.0, 89.0, 90.0, 91.0, 92.0, 92.0, 92.0, 93.0, 93.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-62,COM1.USACE_Galveston.contents.antique.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 20.0, 75.0, 78.0, 85.0, 90.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-63,COM1.USACE_Galveston.contents.appliance_sales.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 16.0, 28.0, 58.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-64,COM1.USACE_Galveston.contents.appliance_sales.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 83.0, 91.0, 94.0, 95.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-65,COM1.USACE_Galveston.contents.large_auto_dealer.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 20.0, 50.0, 90.0, 95.0, 98.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-66,COM1.USACE_Galveston.contents.bait_stand.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 7.0, 11.0, 16.0, 22.0, 29.0, 36.0, 44.0, 52.0, 60.0, 69.0, 79.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-67,COM1.USACE_Galveston.contents.bakery.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 14.0, 35.0, 70.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-68,COM1.USACE_Galveston.contents.bakery.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 55.0, 65.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-69,COM1.USACE_Galveston.contents.boat_sales/service.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 41.0, 65.0, 83.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-70,COM1.USACE_Galveston.contents.boat_sales/service.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 13.0, 24.0, 43.0, 82.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-71,COM1.USACE_Galveston.contents.book_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 14.0, 21.0, 27.0, 35.0, 42.0, 49.0, 57.0, 65.0, 73.0, 82.0, 92.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-72,COM1.USACE_Galveston.contents.camera_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 33.0, 65.0, 88.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-73,COM1.USACE_Galveston.contents.carpet_and_paint_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 60.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-74,COM1.USACE_Galveston.contents.carpet_and_paint_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 40.0, 60.0, 80.0, 95.0, 97.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-75,COM1.USACE_Galveston.contents.mens_clothing.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 41.0, 60.0, 78.0, 94.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-76,COM1.USACE_Galveston.contents.mens_clothing.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 6.0, 37.0, 50.0, 75.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-77,COM1.USACE_Galveston.contents.crafts.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-78,COM1.USACE_Galveston.contents.crafts.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 30.0, 50.0, 70.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-79,COM1.USACE_Galveston.contents.chain_drug_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-80,COM1.USACE_Galveston.contents.fabric_store.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 30.0, 40.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-81,COM1.USACE_Galveston.contents.fabric_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 30.0, 50.0, 75.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-82,COM1.USACE_Galveston.contents.feed_store.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-83,COM1.USACE_Galveston.contents.feed_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 15.0, 15.0, 15.0, 25.0, 25.0, 25.0, 25.0, 50.0, 50.0, 50.0, 50.0, 75.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-84,COM1.USACE_Galveston.contents.florist.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 49.0, 60.0, 75.0, 78.0, 79.0, 82.0, 85.0, 89.0, 93.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-85,COM1.USACE_Galveston.contents.florist.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 85.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-86,COM1.USACE_Galveston.contents.fruit_stand.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 80.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-87,COM1.USACE_Galveston.contents.large_furniture_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 20.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-88,COM1.USACE_Galveston.contents.gas/butane_supply.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 46.0, 65.0, 75.0, 81.0, 86.0, 90.0, 94.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-89,COM1.USACE_Galveston.contents.gift_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 54.0, 63.0, 75.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-90,COM1.USACE_Galveston.contents.greenhouse.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 34.0, 50.0, 66.0, 80.0, 92.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-91,COM1.USACE_Galveston.contents.greenhouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 66.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-92,COM1.USACE_Galveston.contents.small_grocery.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 20.0, 20.0, 20.0, 20.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-93,COM1.USACE_Galveston.contents.small_grocery.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 35.0, 50.0, 65.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-94,COM1.USACE_Galveston.contents.medium_grocery.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 4.0, 80.0, 90.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-95,COM1.USACE_Galveston.contents.medium_grocery.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 4.0, 22.0, 44.0, 74.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-96,COM1.USACE_Galveston.contents.gun_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 30.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-97,COM1.USACE_Galveston.contents.gun_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 39.0, 58.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-98,COM1.USACE_Galveston.contents.hardware.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 12.0, 20.0, 29.0, 40.0, 50.0, 59.0, 67.0, 75.0, 84.0, 92.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-99,COM1.USACE_Galveston.contents.hardware.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 8.0, 33.0, 52.0, 70.0, 75.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-100,COM1.USACE_Galveston.contents.hobby_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 87.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-101,COM1.USACE_Galveston.contents.hobby_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 49.0, 64.0, 77.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-102,COM1.USACE_Galveston.contents.lawnmower.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 24.0, 46.0, 57.0, 65.0, 72.0, 79.0, 86.0, 91.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-103,COM1.USACE_Galveston.contents.lawnmower.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-104,COM1.USACE_Galveston.contents.liquor_store.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 4.0, 9.0, 16.0, 84.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-105,COM1.USACE_Galveston.contents.liquor_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 40.0, 60.0, 81.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-106,COM1.USACE_Galveston.contents.meat_market.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 78.0, 81.0, 84.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-107,COM1.USACE_Galveston.contents.meat_market.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-108,COM1.USACE_Galveston.contents.motorcycle_dealer.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 60.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-109,COM1.USACE_Galveston.contents.motorcycle_dealer.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 45.0, 65.0, 85.0, 85.0, 85.0, 85.0, 85.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-110,COM1.USACE_Galveston.contents.music_center.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 52.0, 72.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-111,COM1.USACE_Galveston.contents.music_center.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 66.0, 72.0, 75.0, 80.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-112,COM1.USACE_Galveston.contents.plant_nursery.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 4.0, 8.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-113,COM1.USACE_Galveston.contents.plant_nursery.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 20.0, 79.0, 88.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-114,COM1.USACE_Galveston.contents.paint_store.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 25.0, 30.0, 35.0, 40.0, 45.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-115,COM1.USACE_Galveston.contents.paint_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 40.0, 60.0, 70.0, 73.0, 76.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-116,COM1.USACE_Galveston.contents.pawn_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 60.0, 70.0, 70.0, 70.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-117,COM1.USACE_Galveston.contents.pawn_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 40.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-118,COM1.USACE_Galveston.contents.remnant_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-119,COM1.USACE_Galveston.contents.remnant_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 40.0, 60.0, 80.0, 90.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-120,COM1.USACE_Galveston.contents.service_station.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 39.0, 59.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-121,COM1.USACE_Galveston.contents.service_station.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 42.0, 62.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-122,COM1.USACE_Galveston.contents.shoe_repair.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 28.0, 38.0, 41.0, 44.0, 47.0, 47.0, 47.0, 47.0, 47.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-123,COM1.USACE_Galveston.contents.shoe_repair.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 23.0, 35.0, 48.0, 60.0, 74.0, 87.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-124,COM1.USACE_Galveston.contents.toy_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 40.0, 70.0, 85.0, 90.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-125,COM1.USACE_Galveston.contents.tractor_sales.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 4.0, 18.0, 28.0, 36.0, 44.0, 48.0, 52.0, 56.0, 60.0, 65.0, 70.0, 74.0, 79.0, 84.0, 88.0, 93.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-126,COM1.USACE_Galveston.contents.tractor_sales.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 17.0, 29.0, 44.0, 59.0, 70.0, 77.0, 81.0, 84.0, 88.0, 92.0, 95.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-127,COM1.USACE_Galveston.contents.trailer_sales.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 37.0, 60.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-128,COM1.USACE_Galveston.contents.trophy_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 35.0, 38.0, 56.0, 60.0, 60.0, 60.0, 60.0, 60.0, 61.0, 62.0, 64.0, 66.0, 68.0, 71.0, 76.0, 84.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-129,COM1.USACE_Galveston.contents.trophy_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 5.0, 12.0, 31.0, 66.0, 82.0, 92.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-130,COM1.USACE_Galveston.contents.upholstery_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 10.0, 10.0, 10.0, 30.0, 35.0, 40.0, 45.0, 50.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-131,COM1.USACE_Galveston.contents.upholstery_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 30.0, 40.0, 45.0, 50.0, 53.0, 56.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-132,COM1.USACE_Galveston.contents.used_appliances/cloth.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 40.0, 50.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-133,COM1.USACE_Galveston.contents.used_appliances/cloth.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 35.0, 40.0, 50.0, 60.0, 80.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-134,COM1.USACE_Galveston.contents.used_furniture.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 40.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-135,COM1.USACE_Galveston.contents.used_furniture.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 30.0, 45.0, 65.0, 80.0, 80.0, 85.0, 85.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-136,COM1.USACE_Galveston.contents.vacuum_cleaner_sales.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 25.0, 30.0, 35.0, 40.0, 40.0, 40.0, 60.0, 60.0, 60.0, 60.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-137,COM1.USACE_Galveston.contents.vacuum_cleaner_sales.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 70.0, 80.0, 90.0, 95.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-138,COM1.USACE_Galveston.contents.video_games.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 10.0, 20.0, 30.0, 45.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 75.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-139,COM1.USACE_Galveston.contents.video_games.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-140,COM1.USACE_New-Orleans.contents.bakery.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 98.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-141,COM1.USACE_New-Orleans.contents.bakery.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 74.0, 81.0, 85.0, 88.0, 96.0, 96.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-142,COM1.USACE_New-Orleans.contents.candy_store.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 98.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-143,COM1.USACE_New-Orleans.contents.candy_store.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 74.0, 81.0, 85.0, 88.0, 96.0, 96.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-144,COM1.USACE_New-Orleans.contents.clothing_store.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-145,COM1.USACE_New-Orleans.contents.clothing_store.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 48.0, 54.0, 54.0, 55.0, 55.0, 55.0, 55.0, 55.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-146,COM1.USACE_New-Orleans.contents.convenience_store.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 98.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-147,COM1.USACE_New-Orleans.contents.convenience_store.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 74.0, 81.0, 85.0, 88.0, 96.0, 96.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-148,COM1.USACE_New-Orleans.contents.department_store.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-149,COM1.USACE_New-Orleans.contents.department_store.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 48.0, 54.0, 54.0, 55.0, 55.0, 55.0, 55.0, 55.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-150,COM1.USACE_New-Orleans.contents.furniture_store.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-151,COM1.USACE_New-Orleans.contents.furniture_store.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 48.0, 54.0, 54.0, 55.0, 55.0, 55.0, 55.0, 55.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-152,COM1.USACE_New-Orleans.contents.gas_stations.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 98.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-153,COM1.USACE_New-Orleans.contents.gas_stations.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 74.0, 81.0, 85.0, 88.0, 96.0, 96.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-154,COM1.USACE_New-Orleans.contents.large_grocery.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 98.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-155,COM1.USACE_New-Orleans.contents.large_grocery.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 74.0, 81.0, 85.0, 88.0, 96.0, 96.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-156,COM1.USACE_New-Orleans.contents.neighborhood_grocery.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 98.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-157,COM1.USACE_New-Orleans.contents.neighborhood_grocery.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 74.0, 81.0, 85.0, 88.0, 96.0, 96.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-158,COM1.USACE_New-Orleans.contents.home_repair_store.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 88.0, 88.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-159,COM1.USACE_New-Orleans.contents.home_repair_store.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 45.0, 60.0, 65.0, 86.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-160,COM1.USACE_New-Orleans.contents.liquor_store.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 98.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-161,COM1.USACE_New-Orleans.contents.liquor_store.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 74.0, 81.0, 85.0, 88.0, 96.0, 96.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-162,COM1.USACE_New-Orleans.contents.shoe_store.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-163,COM1.USACE_New-Orleans.contents.shoe_store.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 48.0, 54.0, 54.0, 55.0, 55.0, 55.0, 55.0, 55.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-164,COM1.USACE_New-Orleans.contents.wine_store.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 98.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-165,COM1.USACE_New-Orleans.contents.wine_store.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 74.0, 81.0, 85.0, 88.0, 96.0, 96.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-166,COM2.USACE_Galveston.contents.average_wholesale_trade-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 3.0, 16.0, 27.0, 36.0, 49.0, 57.0, 63.0, 69.0, 72.0, 76.0, 80.0, 82.0, 84.0, 86.0, 87.0, 87.0, 88.0, 89.0, 89.0, 89.0, 89.0, 89.0, 89.0, 89.0, 89.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-167,COM2.USACE_Galveston.contents.auto_parts.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 30.0, 59.0, 70.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-168,COM2.USACE_Galveston.contents.auto_parts/mufflers.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 40.0, 60.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-169,COM2.USACE_Galveston.contents.heavy_equipment_storage.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 14.0, 17.0, 20.0, 23.0, 25.0, 29.0, 35.0, 38.0, 42.0, 51.0, 63.0, 77.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-170,COM2.USACE_Galveston.contents.food_warehouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 40.0, 55.0, 70.0, 85.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-171,COM2.USACE_Galveston.contents.highway_material_storage.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 10.0, 10.0, 25.0, 25.0, 50.0, 50.0, 50.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-172,COM2.USACE_Galveston.contents.jewelry.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 15.0, 24.0, 33.0, 39.0, 45.0, 51.0, 56.0, 61.0, 65.0, 70.0, 74.0, 79.0, 83.0, 87.0, 92.0, 95.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-173,COM2.USACE_Galveston.contents.lumber_yard.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 30.0, 45.0, 60.0, 75.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-174,COM2.USACE_Galveston.contents.medical_supplies.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-175,COM2.USACE_Galveston.contents.medical_supplies.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 20.0, 27.0, 35.0, 43.0, 50.0, 57.0, 65.0, 73.0, 80.0, 88.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-176,COM2.USACE_Galveston.contents.municipal_storage_warehouse.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 40.0, 58.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-177,COM2.USACE_Galveston.contents.municipal_storage_warehouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 16.0, 19.0, 21.0, 23.0, 28.0, 35.0, 47.0, 67.0, 85.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-178,COM2.USACE_Galveston.contents.paper_products_warehouse.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 42.0, 58.0, 75.0, 87.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-179,COM2.USACE_Galveston.contents.paper_products_warehouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 27.0, 36.0, 44.0, 52.0, 59.0, 67.0, 73.0, 80.0, 90.0, 98.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-180,COM2.USACE_Galveston.contents.safety_equipment.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 25.0, 37.0, 50.0, 62.0, 75.0, 87.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-181,COM2.USACE_Galveston.contents.safety_equipment.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 25.0, 37.0, 50.0, 62.0, 75.0, 85.0, 93.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-182,COM2.USACE_Galveston.contents.sporting_goods.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-183,COM2.USACE_Galveston.contents.sporting_goods.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 30.0, 50.0, 53.0, 55.0, 57.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-184,COM2.USACE_Galveston.contents.sporting_goods_warehouse.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 50.0, 63.0, 75.0, 87.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-185,COM2.USACE_Galveston.contents.sporting_goods_warehouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 50.0, 63.0, 75.0, 87.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-186,COM2.USACE_Galveston.contents.storage_chemicals.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 15.0, 20.0, 25.0, 35.0, 45.0, 55.0, 65.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-187,COM2.USACE_Galveston.contents.storage_chemicals.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 20.0, 30.0, 40.0, 50.0, 60.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-188,COM2.USACE_Galveston.contents.storage_machine_parts.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 30.0, 40.0, 50.0, 50.0, 50.0, 75.0, 75.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-189,COM2.USACE_Galveston.contents.t.v._station.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 9.0, 9.0, 9.0, 9.0, 11.0, 13.0, 15.0, 18.0, 22.0, 26.0, 30.0, 35.0, 43.0, 54.0, 70.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-190,COM2.USACE_Galveston.contents.t.v._repair.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 7.0, 10.0, 11.0, 13.0, 16.0, 21.0, 27.0, 34.0, 42.0, 52.0, 63.0, 74.0, 86.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-191,COM2.USACE_Galveston.contents.t.v._repair.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-192,COM2.USACE_Galveston.contents.trailer_parts.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 50.0, 50.0, 50.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-193,COM2.USACE_Galveston.contents.trailer_parts.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 16.0, 28.0, 32.0, 40.0, 43.0, 46.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-194,COM2.USACE_Galveston.contents.warehouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 16.0, 19.0, 21.0, 23.0, 28.0, 35.0, 47.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-195,COM2.USACE_Galveston.contents.beer_warehouse.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 40.0, 55.0, 70.0, 85.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-196,COM2.USACE_Galveston.contents.beer_warehouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-197,COM2.USACE_Galveston.contents.bottled_gases_warehouse.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 35.0, 50.0, 50.0, 50.0, 60.0, 60.0, 60.0, 60.0, 60.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-198,COM2.USACE_Galveston.contents.bottled_gases_warehouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-199,COM2.USACE_Galveston.contents.cement_warehouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 40.0, 60.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-200,COM2.USACE_Galveston.contents.detergents_warehouse.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 10.0, 15.0, 20.0, 25.0, 35.0, 35.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-201,COM2.USACE_Galveston.contents.detergents_warehouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-202,COM2.USACE_Galveston.contents.heavy_machinery_warehouse.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 11.0, 17.0, 20.0, 23.0, 25.0, 29.0, 35.0, 42.0, 51.0, 63.0, 77.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-203,COM2.USACE_Galveston.contents.heavy_machinery_warehouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 25.0, 25.0, 35.0, 40.0, 50.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 85.0, 85.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-204,COM2.USACE_Galveston.contents.petroleum_warehouse.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 35.0, 50.0, 50.0, 50.0, 50.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-205,COM2.USACE_Galveston.contents.petroleum_warehouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 40.0, 60.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-206,COM2.USACE_Galveston.contents.western_auto.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 8.0, 16.0, 59.0, 65.0, 70.0, 73.0, 77.0, 81.0, 84.0, 87.0, 90.0, 93.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-207,COM2.USACE_Galveston.contents.western_auto.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 50.0, 75.0, 87.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-208,COM2.USACE_New-Orleans.contents.warehouse.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 70.0, 80.0, 96.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-209,COM2.USACE_New-Orleans.contents.warehouse.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 19.0, 31.0, 40.0, 45.0, 49.0, 54.0, 58.0, 63.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-210,COM2.USACE_St-Paul.contents.warehouse.fresh_water-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 15.0, 31.0, 43.0, 53.0, 61.0, 67.0, 71.0, 73.0, 76.0, 77.0, 78.0, 79.0, 80.0, 81.0, 82.0, 83.0, 84.0, 85.0, 86.0, 87.0, 88.0, 89.0, 90.0, 91.0, 92.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-211,COM3.USACE_Galveston.contents.average_personal/repair_services.invetory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 4.0, 29.0, 46.0, 67.0, 79.0, 85.0, 91.0, 92.0, 92.0, 93.0, 94.0, 96.0, 96.0, 97.0, 97.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-212,COM3.USACE_Galveston.contents.auto_repair.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 56.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-213,COM3.USACE_Galveston.contents.auto_repair.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 50.0, 80.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-214,COM3.USACE_Galveston.contents.auto_service.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 40.0, 60.0, 85.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-215,COM3.USACE_Galveston.contents.barber_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 22.0, 29.0, 37.0, 48.0, 62.0, 78.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-216,COM3.USACE_Galveston.contents.barber_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 50.0, 75.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-217,COM3.USACE_Galveston.contents.beauty_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 70.0, 87.0, 94.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-218,COM3.USACE_Galveston.contents.beauty_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 31.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-219,COM3.USACE_Galveston.contents.boat_service.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 12.0, 20.0, 29.0, 40.0, 50.0, 59.0, 67.0, 75.0, 84.0, 92.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-220,COM3.USACE_Galveston.contents.boat_service.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 8.0, 33.0, 52.0, 70.0, 75.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-221,COM3.USACE_Galveston.contents.car_wash.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 25.0, 40.0, 50.0, 60.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-222,COM3.USACE_Galveston.contents.car_wash.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-223,COM3.USACE_Galveston.contents.cemetary_complex.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 34.0, 76.0, 88.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-224,COM3.USACE_Galveston.contents.cemetary_complex.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 92.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-225,COM3.USACE_Galveston.contents.cleaners.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 30.0, 50.0, 75.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-226,COM3.USACE_Galveston.contents.cleaners_substation.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 10.0, 75.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-227,COM3.USACE_Galveston.contents.cleaners_substation.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 49.0, 75.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-228,COM3.USACE_Galveston.contents.private_day_care.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-229,COM3.USACE_Galveston.contents.private_day_care.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-230,COM3.USACE_Galveston.contents.funeral_home.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 30.0, 60.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-231,COM3.USACE_Galveston.contents.laundry.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 10.0, 13.0, 16.0, 19.0, 22.0, 27.0, 33.0, 40.0, 47.0, 56.0, 65.0, 74.0, 84.0, 94.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-232,COM3.USACE_Galveston.contents.photo_studio.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 10.0, 10.0, 10.0, 60.0, 60.0, 60.0, 60.0, 60.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-233,COM3.USACE_Galveston.contents.photo_studio.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 80.0, 80.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-234,COM3.USACE_Galveston.contents.truck_mfg_&_sales.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 65.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-235,COM3.USACE_Galveston.contents.truck_mfg_&_sales.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 34.0, 50.0, 57.0, 65.0, 71.0, 76.0, 80.0, 88.0, 89.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-236,COM3.USACE_Galveston.contents.washateria.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 55.0, 78.0, 83.0, 86.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-237,COM3.USACE_New-Orleans.contents.auto_repair.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 88.0, 88.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-238,COM3.USACE_New-Orleans.contents.auto_repair.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 45.0, 60.0, 65.0, 86.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-239,COM3.USACE_New-Orleans.contents.barber_shop.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-240,COM3.USACE_New-Orleans.contents.barber_shop.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 48.0, 54.0, 54.0, 55.0, 55.0, 55.0, 55.0, 55.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-241,COM3.USACE_New-Orleans.contents.beauty_salon.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-242,COM3.USACE_New-Orleans.contents.beauty_salon.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 48.0, 54.0, 54.0, 55.0, 55.0, 55.0, 55.0, 55.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-243,COM3.USACE_New-Orleans.contents.funeral_home.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-244,COM3.USACE_New-Orleans.contents.funeral_home.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 46.0, 94.0, 97.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-245,COM3.USACE_New-Orleans.contents.laundromat.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-246,COM3.USACE_New-Orleans.contents.laundromat.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 48.0, 54.0, 54.0, 55.0, 55.0, 55.0, 55.0, 55.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-247,COM3.USACE_New-Orleans.contents.reupholstery.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 88.0, 88.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-248,COM3.USACE_New-Orleans.contents.reupholstery.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 45.0, 60.0, 65.0, 86.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-249,COM3.USACE_New-Orleans.contents.watch_repair.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 88.0, 88.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-250,COM3.USACE_New-Orleans.contents.watch_repair.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 45.0, 60.0, 65.0, 86.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-251,COM4.USACE_Galveston.contents.average_prof/tech_services.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 18.0, 25.0, 35.0, 43.0, 49.0, 52.0, 55.0, 57.0, 58.0, 60.0, 65.0, 67.0, 68.0, 69.0, 70.0, 71.0, 71.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-252,COM4.USACE_Galveston.contents.airport.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-253,COM4.USACE_Galveston.contents.airport.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 40.0, 48.0, 55.0, 75.0, 78.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-254,COM4.USACE_Galveston.contents.boat_stalls.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 6.0, 8.0, 11.0, 13.0, 15.0, 17.0, 19.0, 21.0, 22.0, 24.0, 25.0, 27.0, 28.0, 29.0, 31.0, 32.0, 33.0, 34.0, 35.0, 36.0, 37.0, 38.0, 39.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-255,COM4.USACE_Galveston.contents.boat_storage.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 1.0, 4.0, 7.0, 12.0, 18.0, 24.0, 32.0, 40.0, 48.0, 54.0, 58.0, 63.0, 66.0, 68.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-256,COM4.USACE_Galveston.contents.business.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 6.0, 10.0, 15.0, 19.0, 24.0, 28.0, 33.0, 38.0, 44.0, 49.0, 55.0, 62.0, 69.0, 78.0, 86.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-257,COM4.USACE_Galveston.contents.import_sales.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-258,COM4.USACE_Galveston.contents.import_sales.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 65.0, 70.0, 75.0, 80.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-259,COM4.USACE_Galveston.contents.large_commercial_office.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 21.0, 24.0, 25.0, 26.0, 28.0, 31.0, 36.0, 42.0, 50.0, 71.0, 84.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-260,COM4.USACE_Galveston.contents.real_estate_office.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 9.0, 42.0, 75.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-261,COM4.USACE_Galveston.contents.real_estate_office.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 25.0, 43.0, 63.0, 70.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-262,COM4.USACE_Galveston.contents.transport_comapny.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 75.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-263,COM4.USACE_Galveston.contents.utility_company.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 30.0, 40.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-264,COM4.USACE_Galveston.contents.utility_company.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 5.0, 7.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 15.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-265,COM4.USACE_Galveston.contents.water_supply.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-266,COM4.USACE_New-Orleans.contents.accounting_firm.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-267,COM4.USACE_New-Orleans.contents.accounting_firm.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 46.0, 94.0, 97.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-268,COM4.USACE_New-Orleans.contents.legal_office.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-269,COM4.USACE_New-Orleans.contents.legal_office.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 46.0, 94.0, 97.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-270,COM4.USACE_New-Orleans.contents.real_estate_office.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-271,COM4.USACE_New-Orleans.contents.real_estate_office.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 46.0, 94.0, 97.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-272,COM4.USACE_New-Orleans.contents.utility_company.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-273,COM4.USACE_New-Orleans.contents.utility_company.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 18.0, 50.0, 50.0, 52.0, 58.0, 58.0, 58.0, 58.0, 58.0, 59.0, 69.0, 70.0, 70.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-274,COM4.USACE_St-Paul.contents.professional.fresh_water-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 15.0, 31.0, 43.0, 53.0, 61.0, 67.0, 71.0, 73.0, 76.0, 77.0, 78.0, 79.0, 80.0, 81.0, 82.0, 83.0, 84.0, 85.0, 86.0, 87.0, 88.0, 89.0, 90.0, 91.0, 92.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-275,COM5.USACE_Galveston.contents.bank-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 74.0, 83.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-276,COM5.USACE_Galveston.contents.bank.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 60.0, 70.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-277,COM5.USACE_Galveston.contents.bank.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 87.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-278,COM5.USACE_New-Orleans.contents.bank.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-279,COM5.USACE_New-Orleans.contents.bank.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 46.0, 94.0, 97.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-280,COM6.USACE_Galveston.contents.hospital-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 30.0, 65.0, 72.0, 78.0, 85.0, 95.0, 95.0, 95.0, 95.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-281,COM6.USACE_Galveston.contents.hospital.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0, 95.0, 95.0, 95.0, 95.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-282,COM6.USACE_Galveston.contents.hospital.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 80.0, 83.0, 86.0, 89.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-283,COM7.USACE_Galveston.contents.average_medical_offic/clinic.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 51.0, 60.0, 63.0, 67.0, 71.0, 72.0, 74.0, 77.0, 81.0, 86.0, 92.0, 94.0, 97.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-284,COM7.USACE_Galveston.contents.doctor's_office.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 12.0, 15.0, 16.0, 18.0, 22.0, 27.0, 34.0, 43.0, 57.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-285,COM7.USACE_Galveston.contents.dentist's_office.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-286,COM7.USACE_Galveston.contents.dentist's_office.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 21.0, 40.0, 55.0, 70.0, 85.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-287,COM7.USACE_Galveston.contents.chiropractic_clinic.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 30.0, 30.0, 30.0, 31.0, 32.0, 35.0, 38.0, 42.0, 47.0, 54.0, 62.0, 72.0, 84.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-288,COM7.USACE_Galveston.contents.x_ray_service.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-289,COM7.USACE_New-Orleans.contents.medical_office.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-290,COM7.USACE_New-Orleans.contents.medical_office.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 46.0, 94.0, 97.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-291,COM7.USACE_New-Orleans.contents.dentist's_office.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-292,COM7.USACE_New-Orleans.contents.dentist's_office.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 46.0, 94.0, 97.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-293,COM8.USACE_Galveston.contents.average_entertainment/recreation.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 13.0, 45.0, 55.0, 64.0, 73.0, 77.0, 80.0, 82.0, 83.0, 85.0, 87.0, 89.0, 90.0, 91.0, 92.0, 93.0, 94.0, 95.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-294,COM8.USACE_Galveston.contents.fishing_party_boat.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 24.0, 24.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-295,COM8.USACE_Galveston.contents.fishing_party_boat.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 40.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-296,COM8.USACE_Galveston.contents.bowling_alley.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 22.0, 25.0, 27.0, 27.0, 28.0, 30.0, 32.0, 35.0, 39.0, 45.0, 51.0, 58.0, 67.0, 76.0, 86.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-297,COM8.USACE_Galveston.contents.country_club.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 38.0, 41.0, 44.0, 47.0, 52.0, 56.0, 62.0, 67.0, 74.0, 80.0, 87.0, 94.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-298,COM8.USACE_Galveston.contents.country_club.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 19.0, 27.0, 34.0, 42.0, 48.0, 55.0, 62.0, 68.0, 73.0, 78.0, 84.0, 89.0, 94.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-299,COM8.USACE_Galveston.contents.physical_fitness.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 45.0, 75.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-300,COM8.USACE_Galveston.contents.private_pool.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-301,COM8.USACE_Galveston.contents.private_club.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 45.0, 49.0, 52.0, 55.0, 59.0, 63.0, 68.0, 74.0, 85.0, 90.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-302,COM8.USACE_Galveston.contents.private_club.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 21.0, 28.0, 35.0, 41.0, 47.0, 54.0, 62.0, 71.0, 83.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-303,COM8.USACE_Galveston.contents.radio_station.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-304,COM8.USACE_Galveston.contents.recreation_facilities.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 10.0, 20.0, 30.0, 45.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 75.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-305,COM8.USACE_Galveston.contents.recreation_facilities.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-306,COM8.USACE_Galveston.contents.tavern.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 36.0, 62.0, 73.0, 88.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-307,COM8.USACE_Galveston.contents.tavern.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 42.0, 53.0, 78.0, 92.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-308,COM8.USACE_Galveston.contents.telephone_exchange.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-309,COM8.USACE_Galveston.contents.ymca_inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 33.0, 33.0, 33.0, 33.0, 33.0, 33.0, 33.0, 33.0, 33.0, 35.0, 35.0, 35.0, 36.0, 36.0, 37.0, 37.0, 38.0, 38.0, 39.0, 39.0, 40.0, 40.0, 40.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-310,COM8.USACE_Galveston.contents.cafeteria_restaurant.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 57.0, 70.0, 71.0, 75.0, 82.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-311,COM8.USACE_Galveston.contents.cafeteria_restaurant.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 73.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-312,COM8.USACE_Galveston.contents.drive_in_restaurant.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 82.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-313,COM8.USACE_Galveston.contents.drive_in_restaurant.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 52.0, 60.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-314,COM8.USACE_New-Orleans.contents.bowling_alley.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 83.0, 88.0, 93.0, 94.0, 94.0, 94.0, 94.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-315,COM8.USACE_New-Orleans.contents.bowling_alley.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 61.0, 81.0, 89.0, 90.0, 92.0, 92.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-316,COM8.USACE_New-Orleans.contents.fast_food_restaurant.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 83.0, 88.0, 93.0, 94.0, 94.0, 94.0, 94.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-317,COM8.USACE_New-Orleans.contents.fast_food_restaurant.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 61.0, 81.0, 89.0, 90.0, 92.0, 92.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-318,COM8.USACE_New-Orleans.contents.full_service_restaurant.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 83.0, 88.0, 93.0, 94.0, 94.0, 94.0, 94.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-319,COM8.USACE_New-Orleans.contents.full_service_restaurant.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 61.0, 81.0, 89.0, 90.0, 92.0, 92.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-320,COM8.USACE_New-Orleans.contents.lounge.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 83.0, 88.0, 93.0, 94.0, 94.0, 94.0, 94.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-321,COM8.USACE_New-Orleans.contents.lounge.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 61.0, 81.0, 89.0, 90.0, 92.0, 92.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-322,COM8.USACE_St-Paul.contents.recreation.fresh_water-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 15.0, 31.0, 43.0, 53.0, 61.0, 67.0, 71.0, 73.0, 76.0, 77.0, 78.0, 79.0, 80.0, 81.0, 82.0, 83.0, 84.0, 85.0, 86.0, 87.0, 88.0, 89.0, 90.0, 91.0, 92.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-323,COM9.USACE_Galveston.contents.theater.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 6.0, 8.0, 9.0, 10.0, 12.0, 17.0, 22.0, 30.0, 41.0, 57.0, 66.0, 73.0, 79.0, 84.0, 90.0, 97.0, 98.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-324,COM9.USACE_Galveston.contents.private_hall.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 8.0, 10.0, 12.0, 14.0, 18.0, 24.0, 32.0, 44.0, 60.0, 85.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-325,COM9.USACE_Galveston.contents.indoor_theater.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 4.0, 5.0, 6.0, 6.0, 6.0, 9.0, 12.0, 16.0, 22.0, 28.0, 37.0, 46.0, 57.0, 68.0, 80.0, 93.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-326,COM9.USACE_New-Orleans.contents.movie_theater.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 83.0, 88.0, 93.0, 94.0, 94.0, 94.0, 94.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-327,COM9.USACE_New-Orleans.contents.movie_theater.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 61.0, 81.0, 89.0, 90.0, 92.0, 92.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-328,COM10.USACE_Galveston.contents.garage.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 17.0, 20.0, 23.0, 25.0, 29.0, 35.0, 42.0, 51.0, 63.0, 77.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-329,IND1.USACE_Galveston.contents.average_heavy_industrial.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 24.0, 34.0, 41.0, 47.0, 52.0, 57.0, 60.0, 63.0, 64.0, 66.0, 68.0, 69.0, 72.0, 73.0, 73.0, 73.0, 74.0, 74.0, 74.0, 74.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-330,IND1.USACE_Galveston.contents.boiler_building.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 10.0, 10.0, 10.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-331,IND1.USACE_Galveston.contents.cabinet_shop_mfg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 25.0, 30.0, 35.0, 40.0, 45.0, 50.0, 55.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-332,IND1.USACE_Galveston.contents.cabinet_shop_mfg.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 4.0, 8.0, 10.0, 11.0, 12.0, 13.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-333,IND1.USACE_Galveston.contents.concrete_mfg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 50.0, 51.0, 53.0, 54.0, 55.0, 55.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-334,IND1.USACE_Galveston.contents.door_mfg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 25.0, 45.0, 70.0, 80.0, 90.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-335,IND1.USACE_Galveston.contents.door_mfg.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 40.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-336,IND1.USACE_Galveston.contents.engine_room.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 25.0, 30.0, 35.0, 40.0, 45.0, 50.0, 55.0, 65.0, 65.0, 65.0, 65.0, 65.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-337,IND1.USACE_Galveston.contents.fabrication_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 75.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-338,IND1.USACE_Galveston.contents.heat_exchanger_mfg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 22.0, 32.0, 40.0, 46.0, 52.0, 55.0, 58.0, 60.0, 63.0, 71.0, 80.0, 85.0, 91.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-339,IND1.USACE_Galveston.contents.heat_exchanger_mfg.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 15.0, 17.0, 19.0, 21.0, 23.0, 24.0, 26.0, 28.0, 29.0, 32.0, 34.0, 36.0, 38.0, 39.0, 41.0, 43.0, 45.0, 47.0, 49.0, 51.0, 53.0, 55.0, 57.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-340,IND1.USACE_Galveston.contents.lock_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 12.0, 20.0, 29.0, 40.0, 50.0, 59.0, 67.0, 75.0, 84.0, 92.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-341,IND1.USACE_Galveston.contents.lock_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 8.0, 33.0, 52.0, 70.0, 75.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-342,IND1.USACE_Galveston.contents.lumber_mill.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-343,IND1.USACE_Galveston.contents.heavy_machine_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 16.0, 24.0, 33.0, 41.0, 49.0, 58.0, 66.0, 74.0, 82.0, 91.0, 98.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-344,IND1.USACE_Galveston.contents.heavy_machine_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 5.0, 10.0, 15.0, 20.0, 25.0, 30.0, 40.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-345,IND1.USACE_Galveston.contents.light_machine_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 12.0, 18.0, 27.0, 35.0, 42.0, 42.0, 42.0, 55.0, 55.0, 55.0, 65.0, 65.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-346,IND1.USACE_Galveston.contents.metal_coatings_serv.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 50.0, 63.0, 75.0, 87.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-347,IND1.USACE_Galveston.contents.metal_coatings_serv.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-348,IND1.USACE_Galveston.contents.pipe_threader_facility.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 25.0, 50.0, 50.0, 50.0, 50.0, 75.0, 75.0, 75.0, 75.0, 90.0, 90.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-349,IND1.USACE_Galveston.contents.pressure_test_facility.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 20.0, 25.0, 25.0, 30.0, 30.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-350,IND1.USACE_Galveston.contents.metal_recycling.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 20.0, 20.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-351,IND1.USACE_Galveston.contents.machine_research_lab.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 25.0, 30.0, 35.0, 40.0, 42.0, 44.0, 46.0, 48.0, 50.0, 50.0, 50.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-352,IND1.USACE_Galveston.contents.machine_research_lab.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 40.0, 60.0, 80.0, 85.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-353,IND1.USACE_Galveston.contents.scale_bldg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 15.0, 25.0, 40.0, 50.0, 75.0, 85.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-354,IND1.USACE_Galveston.contents.welding_machine.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 6.0, 15.0, 18.0, 20.0, 21.0, 22.0, 24.0, 27.0, 30.0, 33.0, 37.0, 41.0, 45.0, 49.0, 54.0, 59.0, 63.0, 68.0, 72.0, 76.0, 80.0, 84.0, 88.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-355,IND2.USACE_Galveston.contents.average_light_industrial.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 23.0, 35.0, 44.0, 52.0, 58.0, 62.0, 65.0, 68.0, 70.0, 73.0, 74.0, 77.0, 78.0, 78.0, 79.0, 80.0, 80.0, 80.0, 80.0, 81.0, 81.0, 81.0, 81.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-356,IND2.USACE_Galveston.contents.battery_mfg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 30.0, 40.0, 60.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-357,IND2.USACE_Galveston.contents.battery_mfg.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 15.0, 15.0, 20.0, 20.0, 25.0, 25.0, 30.0, 30.0, 30.0, 30.0, 40.0, 40.0, 40.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-358,IND2.USACE_Galveston.contents.control_bldg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 75.0, 75.0, 85.0, 85.0, 90.0, 90.0, 90.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-359,IND2.USACE_Galveston.contents.electronic_equip_mfg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-360,IND2.USACE_Galveston.contents.electronic_equip_mfg.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 40.0, 55.0, 70.0, 85.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-361,IND2.USACE_Galveston.contents.frame_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 45.0, 80.0, 88.0, 93.0, 95.0, 98.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-362,IND2.USACE_Galveston.contents.furniture_mfg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-363,IND2.USACE_Galveston.contents.furniture_mfg.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 50.0, 60.0, 70.0, 80.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-364,IND2.USACE_Galveston.contents.instrument_mfg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 13.0, 20.0, 27.0, 34.0, 42.0, 48.0, 57.0, 71.0, 80.0, 85.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-365,IND2.USACE_Galveston.contents.instrument_mfg.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 50.0, 61.0, 73.0, 82.0, 90.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-366,IND2.USACE_Galveston.contents.leather_goods_mfg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 6.0, 9.0, 12.0, 15.0, 18.0, 21.0, 24.0, 27.0, 30.0, 33.0, 36.0, 39.0, 42.0, 45.0, 48.0, 51.0, 54.0, 57.0, 60.0, 63.0, 66.0, 69.0, 72.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-367,IND2.USACE_Galveston.contents.leather_goods_mfg.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 12.0, 16.0, 20.0, 23.0, 26.0, 27.0, 29.0, 30.0, 30.0, 36.0, 39.0, 41.0, 44.0, 46.0, 49.0, 51.0, 54.0, 57.0, 60.0, 63.0, 66.0, 69.0, 72.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-368,IND2.USACE_Galveston.contents.industrial_loading_dock.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 25.0, 40.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-369,IND2.USACE_Galveston.contents.industrial_loading_dock.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 20.0, 20.0, 20.0, 20.0, 20.0, 30.0, 30.0, 30.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-370,IND2.USACE_Galveston.contents.locker_bldg.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 5.0, 25.0, 55.0, 75.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-371,IND2.USACE_Galveston.contents.maint_bldg_mfg_facilility.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 15.0, 20.0, 25.0, 35.0, 45.0, 45.0, 45.0, 45.0, 50.0, 50.0, 50.0, 55.0, 55.0, 55.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-372,IND2.USACE_Galveston.contents.newspaper_print_plant.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 8.0, 11.0, 13.0, 16.0, 20.0, 25.0, 31.0, 39.0, 48.0, 59.0, 70.0, 82.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-373,IND2.USACE_Galveston.contents.newspaper_sales_office.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 9.0, 18.0, 33.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-374,IND2.USACE_Galveston.contents.newspaper_sales_office.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 46.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-375,IND2.USACE_Galveston.contents.manuf_facility_office.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-376,IND2.USACE_Galveston.contents.manuf_facility_office.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 21.0, 30.0, 40.0, 45.0, 50.0, 60.0, 75.0, 85.0, 90.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-377,IND2.USACE_Galveston.contents.commercial_printing.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-378,IND2.USACE_Galveston.contents.commercial_printing.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 35.0, 50.0, 70.0, 73.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-379,IND3.USACE_Galveston.contents.average_food/drugs/chemicals.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 20.0, 41.0, 51.0, 62.0, 67.0, 71.0, 73.0, 76.0, 78.0, 79.0, 82.0, 83.0, 84.0, 86.0, 87.0, 87.0, 88.0, 88.0, 88.0, 88.0, 88.0, 88.0, 88.0, 88.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-380,IND3.USACE_Galveston.contents.chemical_plant.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 38.0, 44.0, 52.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-381,IND3.USACE_Galveston.contents.chemical_plant.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-382,IND3.USACE_Galveston.contents.chemical_plant_bonding.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 38.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-383,IND3.USACE_Galveston.contents.chemical_plant_bonding.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-384,IND3.USACE_Galveston.contents.chemical_refinery.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 45.0, 60.0, 75.0, 90.0, 93.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-385,IND3.USACE_Galveston.contents.chemical_refinery.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-386,IND3.USACE_Galveston.contents.deodorizer_bldg_chemical.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 15.0, 20.0, 20.0, 20.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-387,IND3.USACE_Galveston.contents.deodorizer_bldg_chem.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 75.0, 75.0, 90.0, 90.0, 90.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-388,IND3.USACE_Galveston.contents.feed_mill.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-389,IND3.USACE_Galveston.contents.feed_mill.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 22.0, 24.0, 26.0, 28.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 50.0, 55.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-390,IND3.USACE_Galveston.contents.food_processor.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 27.0, 33.0, 40.0, 50.0, 60.0, 70.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-391,IND3.USACE_Galveston.contents.food_processor.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-392,IND3.USACE_Galveston.contents.chemical_laboratory.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 25.0, 50.0, 50.0, 60.0, 70.0, 80.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-393,IND3.USACE_Galveston.contents.chemical_laboratory.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 43.0, 60.0, 60.0, 60.0, 60.0, 70.0, 70.0, 80.0, 80.0, 90.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-394,IND3.USACE_Galveston.contents.detergent_manuf._facility.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 21.0, 24.0, 25.0, 26.0, 28.0, 31.0, 36.0, 42.0, 50.0, 71.0, 84.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-395,IND3.USACE_Galveston.contents.detergent_manuf._facility.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 40.0, 55.0, 70.0, 85.0, 90.0, 90.0, 90.0, 90.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-396,IND3.USACE_Galveston.contents.meat_packing.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 30.0, 30.0, 70.0, 75.0, 85.0, 90.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-397,IND3.USACE_Galveston.contents.meat_packing.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-398,IND3.USACE_Galveston.contents.detergent_mixer_bldg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 25.0, 25.0, 25.0, 25.0, 25.0, 35.0, 35.0, 45.0, 45.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-399,IND3.USACE_Galveston.contents.detergent_mixer_bldg.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-400,IND3.USACE_Galveston.contents.plastic_mfg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0, 90.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-401,IND3.USACE_Galveston.contents.plastic_mfg.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 30.0, 40.0, 47.0, 55.0, 62.0, 67.0, 72.0, 77.0, 80.0, 92.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-402,IND3.USACE_Galveston.contents.caustic_materials_refinery.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 38.0, 50.0, 75.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-403,IND3.USACE_Galveston.contents.caustic_materials_refinery.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 30.0, 30.0, 40.0, 40.0, 50.0, 50.0, 60.0, 60.0, 70.0, 70.0, 80.0, 80.0, 90.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-404,IND4.USACE_Galveston.contents.average_metals/minerals_processing.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 15.0, 20.0, 26.0, 31.0, 37.0, 40.0, 44.0, 48.0, 53.0, 56.0, 57.0, 60.0, 62.0, 63.0, 63.0, 63.0, 64.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-405,IND4.USACE_Galveston.contents.foundry.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 17.0, 24.0, 29.0, 34.0, 38.0, 43.0, 45.0, 50.0, 58.0, 62.0, 67.0, 70.0, 75.0, 78.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-406,IND4.USACE_Galveston.contents.foundry.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 11.0, 16.0, 19.0, 21.0, 23.0, 28.0, 35.0, 47.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-407,IND4.USACE_Galveston.contents.lead_refinery.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-408,IND4.USACE_Galveston.contents.lead_refinery.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 21.0, 30.0, 40.0, 45.0, 50.0, 60.0, 75.0, 85.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-409,IND4.USACE_Galveston.contents.sand_&_gravel.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 10.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-410,IND4.USACE_Galveston.contents.sand_&_gravel.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 6.0, 10.0, 13.0, 16.0, 19.0, 24.0, 27.0, 30.0, 45.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-411,IND4.USACE_Galveston.contents.sheet_metal.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 24.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-412,IND4.USACE_Galveston.contents.sheet_metal.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-413,IND5.USACE_Galveston.contents.average_high_technology.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 20.0, 41.0, 51.0, 62.0, 67.0, 71.0, 73.0, 76.0, 78.0, 79.0, 82.0, 83.0, 84.0, 86.0, 87.0, 87.0, 88.0, 88.0, 88.0, 88.0, 88.0, 88.0, 88.0, 88.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-414,IND6.USACE_Galveston.contents.average_construction.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 35.0, 47.0, 56.0, 59.0, 66.0, 69.0, 71.0, 72.0, 78.0, 79.0, 80.0, 80.0, 81.0, 81.0, 81.0, 82.0, 82.0, 82.0, 83.0, 83.0, 83.0, 83.0, 83.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-415,IND6.USACE_Galveston.contents.carpet_tile_flooring.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 42.0, 54.0, 65.0, 75.0, 85.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-416,IND6.USACE_Galveston.contents.carpet_tile_flooring.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 70.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-417,IND6.USACE_Galveston.contents.contractor_roofing.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 27.0, 36.0, 43.0, 48.0, 50.0, 50.0, 50.0, 50.0, 50.0, 51.0, 51.0, 51.0, 52.0, 52.0, 52.0, 52.0, 53.0, 53.0, 53.0, 54.0, 54.0, 54.0, 55.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-418,IND6.USACE_Galveston.contents.contractor_roofing.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 27.0, 36.0, 43.0, 48.0, 53.0, 57.0, 59.0, 60.0, 66.0, 69.0, 72.0, 76.0, 79.0, 83.0, 86.0, 90.0, 93.0, 97.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-419,IND6.USACE_Galveston.contents.contractor_electric.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 10.0, 10.0, 40.0, 40.0, 40.0, 40.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-420,IND6.USACE_Galveston.contents.pier_drilling_co.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 23.0, 39.0, 55.0, 55.0, 56.0, 56.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-421,IND6.USACE_Galveston.contents.plumbing_co.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 45.0, 55.0, 63.0, 70.0, 76.0, 82.0, 87.0, 92.0, 98.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-422,IND6.USACE_Galveston.contents.plumbing_co.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 25.0, 35.0, 44.0, 53.0, 61.0, 69.0, 77.0, 85.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-423,IND6.USACE_Galveston.contents.sandblasting_co.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 45.0, 68.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-424,IND6.USACE_Galveston.contents.water_well_service.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-425,IND6.USACE_New-Orleans.contents.carpeting_service.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 70.0, 80.0, 96.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-426,IND6.USACE_New-Orleans.contents.carpeting_service.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 19.0, 31.0, 40.0, 45.0, 49.0, 54.0, 58.0, 63.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-427,IND6.USACE_New-Orleans.contents.heating_&_air_conditioning_service.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 70.0, 80.0, 96.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-428,IND6.USACE_New-Orleans.contents.heating_&_air_conditioning_service.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 19.0, 31.0, 40.0, 45.0, 49.0, 54.0, 58.0, 63.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-429,IND6.USACE_New-Orleans.contents.plumbing_services.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 70.0, 80.0, 96.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-430,IND6.USACE_New-Orleans.contents.plumbing_services.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 19.0, 31.0, 40.0, 45.0, 49.0, 54.0, 58.0, 63.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-431,AGR1.USACE_Galveston.contents.average_agriculture.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 6.0, 20.0, 43.0, 58.0, 65.0, 66.0, 66.0, 67.0, 70.0, 75.0, 76.0, 76.0, 76.0, 77.0, 77.0, 77.0, 78.0, 78.0, 78.0, 79.0, 79.0, 79.0, 79.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-432,AGR1.USACE_Galveston.contents.dairy_processing.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 50.0, 50.0, 50.0, 50.0, 60.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-433,AGR1.USACE_Galveston.contents.dairy_processing.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-434,AGR1.USACE_Galveston.contents.horse_stalls.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 6.0, 8.0, 11.0, 13.0, 15.0, 17.0, 19.0, 21.0, 22.0, 24.0, 25.0, 27.0, 28.0, 29.0, 31.0, 32.0, 33.0, 34.0, 34.0, 36.0, 37.0, 38.0, 39.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-435,AGR1.USACE_Galveston.contents.veterinary_clinic.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-436,AGR1.USACE_New-Orleans.contents.veterinary_office.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-437,AGR1.USACE_New-Orleans.contents.veterinary_office.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 46.0, 94.0, 97.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-438,REL1.USACE_Galveston.contents.church-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 52.0, 72.0, 85.0, 92.0, 95.0, 98.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-439,REL1.USACE_Galveston.contents.church.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 75.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-440,REL1.USACE_Galveston.contents.church.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 28.0, 54.0, 70.0, 84.0, 90.0, 95.0, 97.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-441,REL1.USACE_New-Orleans.contents.civic_association.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-442,REL1.USACE_New-Orleans.contents.civic_association.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 18.0, 50.0, 50.0, 52.0, 58.0, 58.0, 58.0, 58.0, 58.0, 59.0, 69.0, 70.0, 70.0, 79.0, 88.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-443,GOV1.USACE_Galveston.contents.average_govt_services.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 59.0, 74.0, 83.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-444,GOV1.USACE_Galveston.contents.city_hall.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 75.0, 85.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-445,GOV1.USACE_Galveston.contents.post_office.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 43.0, 63.0, 70.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-446,GOV1.USACE_New-Orleans.contents.government_facility.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-447,GOV1.USACE_New-Orleans.contents.government_facility.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 18.0, 50.0, 50.0, 52.0, 58.0, 58.0, 58.0, 58.0, 58.0, 59.0, 69.0, 70.0, 70.0, 79.0, 88.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-448,GOV2.USACE_Galveston.contents.average_emergency_response.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 20.0, 38.0, 55.0, 70.0, 81.0, 89.0, 98.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-449,GOV2.USACE_Galveston.contents.fire_station.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 25.0, 50.0, 75.0, 91.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-450,GOV2.USACE_Galveston.contents.police_station.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 15.0, 25.0, 35.0, 48.0, 62.0, 78.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-451,EDU1.USACE_Galveston.contents.average_school.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 38.0, 53.0, 64.0, 68.0, 70.0, 72.0, 75.0, 79.0, 83.0, 88.0, 94.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-452,EDU1.USACE_Galveston.contents.commercial_school.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 26.0, 30.0, 33.0, 35.0, 39.0, 44.0, 50.0, 58.0, 66.0, 76.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-453,EDU1.USACE_Galveston.contents.library.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 50.0, 75.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-454,EDU1.USACE_New-Orleans.contents.elementary_school.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-455,EDU1.USACE_New-Orleans.contents.elementary_school.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 18.0, 50.0, 50.0, 52.0, 58.0, 58.0, 58.0, 58.0, 58.0, 59.0, 69.0, 70.0, 70.0, 79.0, 88.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-456,EDU2.USACE_Galveston.contents.average_college/university.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 38.0, 53.0, 64.0, 68.0, 70.0, 72.0, 75.0, 79.0, 83.0, 88.0, 94.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-457,EDU2.USACE_New-Orleans.contents.college.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-458,EDU2.USACE_New-Orleans.contents.college.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 18.0, 50.0, 50.0, 52.0, 58.0, 58.0, 58.0, 58.0, 58.0, 59.0, 69.0, 70.0, 70.0, 79.0, 88.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-459,RES1.BCAR_Jan-201.contents.all_floors.slab_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 30.0, 45.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-460,RES3A.BCAR_Jan-201.contents.1to2_stories.slab_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 30.0, 45.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-461,RES3B.BCAR_Jan-201.contents.1to2_stories.slab_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 30.0, 45.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-462,RES1.BCAR_Jan-201.contents.all_floors.wall_2ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 20.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-463,RES3A.BCAR_Jan-201.contents.1to2_stories.wall_2ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 20.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-464,RES3B.BCAR_Jan-201.contents.1to2_stories.wall_2ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 20.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-465,RES1.BCAR_Jan-201.contents.all_floors.wall_3ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 10.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-466,RES3A.BCAR_Jan-201.contents.1to2_stories.wall_3ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 10.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-467,RES3B.BCAR_Jan-201.contents.1to2_stories.wall_3ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 10.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-468,RES2.BCAR_Jan-201.contents.manufactured_home_mobile.structure.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-469,RES1.BCAR_Jan-201.contents.all_floors.elevated_open+2ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 45.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-470,RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_open+2ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 45.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-471,RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_open+2ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 45.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-472,RES1.BCAR_Jan-201.contents.all_floors.elevated_open+4ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 35.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-473,RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_open+4ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 35.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-474,RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_open+4ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 35.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-475,RES1.BCAR_Jan-201.contents.all_floors.elevated_open+6ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 30.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-476,RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_open+6ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 30.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-477,RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_open+6ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 30.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-478,RES1.BCAR_Jan-201.contents.all_floors.elevated_open+8ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 25.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-479,RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_open+8ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 25.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-480,RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_open+8ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 25.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-481,RES1.BCAR_Jan-201.contents.all_floors.elevated_open+10ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"25.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-482,RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_open+10ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"25.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-483,RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_open+10ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"25.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-484,RES1.BCAR_Jan-201.contents.all_floors.elevated_open+12ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"65.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-485,RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_open+12ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"65.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-486,RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_open+12ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"65.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-487,RES1.BCAR_Jan-201.contents.all_floors.elevated_obstr+2ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 2.0, 3.0, 48.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-488,RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+2ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 2.0, 3.0, 48.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-489,RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+2ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 2.0, 3.0, 48.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-490,RES1.BCAR_Jan-201.contents.all_floors.elevated_obstr+4ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"2.0, 3.0, 3.0, 38.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-491,RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+4ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"2.0, 3.0, 3.0, 38.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-492,RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+4ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"2.0, 3.0, 3.0, 38.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-493,RES1.BCAR_Jan-201.contents.all_floors.elevated_obstr+6ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"3.0, 3.0, 33.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-494,RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+6ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"3.0, 3.0, 33.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-495,RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+6ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"3.0, 3.0, 33.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-496,RES1.BCAR_Jan-201.contents.all_floors.elevated_obstr+8ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"3.0, 28.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-497,RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+8ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"3.0, 28.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-498,RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+8ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"3.0, 28.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-499,RES1.BCAR_Jan-201.contents.all_floors.elevated_obstr+10ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"28.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-500,RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+10ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"28.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-501,RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+10ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"28.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-502,RES1.BCAR_Jan-201.contents.all_floors.elevated_obstr+12ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"68.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-503,RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+12ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"68.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-504,RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+12ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"68.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-505,RES3.USACE_Chicago.contents.apartment_unit_grade-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 12.0, 24.0, 33.0, 35.0, 37.0, 41.0, 45.0, 50.0, 55.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-506,RES1.BCAR_Jan-201.contents.one_story.with_basement.b14-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 11.0, 13.0, 16.0, 19.0, 22.0, 25.0, 27.0, 30.0, 32.0, 35.0, 36.0, 38.0, 39.0, 39.0, 39.0, 39.0, 39.0, 39.0, 39.0, 39.0, 39.0, 39.0, 39.0, 39.0, 39.0, 39.0, 39.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-507,AGR1.USACE-Sacramento.contents.usace_sacramento_farms.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 30.0, 76.0, 76.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-508,AGR1.USACE-Sacramento.contents.usace_sacramento_farms.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 56.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-509,AGR1.USACE-Sacramento.contents.usace_sacramento_farms.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 27.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-510,COM.USACE-NACCS.contents.naccs_2_commercial_engineeered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 3.5, 24.0, 33.25, 40.0, 42.75, 45.5, 52.75, 60.0, 61.66667, 63.33333, 65.0, 66.66667, 68.33333, 70.0, 71.66667, 73.33333, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-511,COM.USACE-NACCS.contents.naccs_2_commercial_engineeered_waves-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 15.0, 26.25, 38.5, 52.375, 66.25, 73.125, 80.0, 82.0, 84.0, 86.0, 88.0, 90.0, 92.0, 94.0, 96.0, 97.5, 97.5, 97.5, 97.5, 97.5, 97.5, 97.5, 97.5, 97.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-512,COM.USACE-NACCS.contents.naccs_3_commercial_non/pre_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 1.0, 21.0, 29.75, 44.5, 49.75, 55.0, 59.75, 64.5, 67.5, 70.5, 73.5, 76.5, 79.5, 82.5, 85.5, 88.5, 90.5, 90.5, 90.5, 90.5, 90.5, 90.5, 90.5, 90.5, 90.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-513,COM.USACE-NACCS.contents.naccs_3_commercial_non/pre_engineered_waves-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.5, 21.0, 33.75, 52.5, 67.5, 82.5, 91.25, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-514,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_furniture_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 46.85714, 61.85714, 68.14286, 79.14286, 85.71429, 90.71429, 97.14286, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-515,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_electronics_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 34.14286, 44.28571, 67.0, 77.71429, 86.71429, 95.42857, 97.42857, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-516,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_clothing_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 46.28571, 55.42857, 70.0, 79.0, 89.0, 95.71429, 97.85714, 97.85714, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-517,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_service_station_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.35714, 16.42857, 28.92857, 40.85714, 57.71429, 63.28571, 70.71429, 79.28571, 84.28571, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-518,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_convenience_store_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.14286, 39.85714, 52.85714, 70.71429, 79.28571, 88.0, 94.14286, 95.71429, 97.14286, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-519,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_grocery_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.71429, 40.92857, 52.85714, 64.0, 75.42857, 87.28571, 98.85714, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-520,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_furniture_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 46.85714, 61.85714, 68.14286, 79.14286, 85.71429, 90.71429, 97.14286, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-521,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_electronics_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 34.14286, 44.28571, 67.0, 77.71429, 86.71429, 95.42857, 97.42857, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-522,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_clothing_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 46.28571, 55.42857, 70.0, 79.0, 89.0, 95.71429, 97.85714, 97.85714, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-523,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_service_station_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.35714, 16.42857, 28.92857, 40.85714, 57.71429, 63.28571, 70.71429, 79.28571, 84.28571, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-524,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_convenience_store_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.14286, 39.85714, 52.85714, 70.71429, 79.28571, 88.0, 94.14286, 95.71429, 97.14286, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-525,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_grocery_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.71429, 40.92857, 52.85714, 64.0, 75.42857, 87.28571, 98.85714, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-526,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_furniture_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 46.85714, 61.85714, 68.14286, 79.14286, 85.71429, 90.71429, 97.14286, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-527,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_electronics_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 34.14286, 44.28571, 67.0, 77.71429, 86.71429, 95.42857, 97.42857, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-528,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_clothing_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 46.28571, 55.42857, 70.0, 79.0, 89.0, 95.71429, 97.85714, 97.85714, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-529,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_service_station_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.35714, 16.42857, 28.92857, 40.85714, 57.71429, 63.28571, 70.71429, 79.28571, 84.28571, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-530,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_convenience_store_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.14286, 39.85714, 52.85714, 70.71429, 79.28571, 88.0, 94.14286, 95.71429, 97.14286, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-531,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_grocery_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.71429, 40.92857, 52.85714, 64.0, 75.42857, 87.28571, 98.85714, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-532,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_furniture_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 46.85714, 61.85714, 68.14286, 79.14286, 85.71429, 90.71429, 97.14286, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-533,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_electronics_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 34.14286, 44.28571, 67.0, 77.71429, 86.71429, 95.42857, 97.42857, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-534,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_clothing_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 46.28571, 55.42857, 70.0, 79.0, 89.0, 95.71429, 97.85714, 97.85714, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-535,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_service_station_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.35714, 16.42857, 28.92857, 40.85714, 57.71429, 63.28571, 70.71429, 79.28571, 84.28571, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-536,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_convenience_store_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.14286, 39.85714, 52.85714, 70.71429, 79.28571, 88.0, 94.14286, 95.71429, 97.14286, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-537,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_grocery_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.71429, 40.92857, 52.85714, 64.0, 75.42857, 87.28571, 98.85714, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-538,COM1.FEMA-BCA-Toolkit.contents.convenience_store.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 23.14286, 39.85714, 52.85714, 70.71429, 79.28571, 88.0, 94.14286, 95.71429, 97.14286, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-539,COM1.FEMA-BCA-Toolkit.contents.convenience_store.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 23.14286, 39.85714, 52.85714, 70.71429, 79.28571, 88.0, 94.14286, 95.71429, 97.14286, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-540,COM1.FEMA-BCA-Toolkit.contents.grocery.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.71429, 40.92857, 52.85714, 64.0, 75.42857, 87.28571, 98.85714, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-541,COM1.FEMA-BCA-Toolkit.contents.grocery.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.71429, 40.92857, 52.85714, 64.0, 75.42857, 87.28571, 98.85714, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-542,COM1.FEMA-BCA-Toolkit.contents.retail_clothing.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 46.28571, 55.42857, 70.0, 79.0, 89.0, 95.71429, 97.85714, 97.85714, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-543,COM1.FEMA-BCA-Toolkit.contents.retail_clothing.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 46.28571, 55.42857, 70.0, 79.0, 89.0, 95.71429, 97.85714, 97.85714, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-544,COM1.FEMA-BCA-Toolkit.contents.retail_electronics.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 34.14286, 44.28571, 67.0, 77.71429, 86.71429, 95.42857, 97.42857, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-545,COM1.FEMA-BCA-Toolkit.contents.retail_electronics.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 34.14286, 44.28571, 67.0, 77.71429, 86.71429, 95.42857, 97.42857, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-546,COM1.FEMA-BCA-Toolkit.contents.retail_furniture.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 46.85714, 61.85714, 68.14286, 79.14286, 85.71429, 90.71429, 97.14286, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-547,COM1.FEMA-BCA-Toolkit.contents.retail_furniture.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 46.85714, 61.85714, 68.14286, 79.14286, 85.71429, 90.71429, 97.14286, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-548,COM1.FEMA-BCA-Toolkit.contents.service_station.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.35714, 16.42857, 28.92857, 40.85714, 57.71429, 63.28571, 70.71429, 79.28571, 84.28571, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-549,COM1.FEMA-BCA-Toolkit.contents.service_station.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.35714, 16.42857, 28.92857, 40.85714, 57.71429, 63.28571, 70.71429, 79.28571, 84.28571, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-550,COM1.USACE-New-Orleans.contents.usace_new_orleans_department_store.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.3, 48.2, 54.1, 54.3, 54.8, 54.8, 54.8, 54.8, 54.8, 98.9, 99.9, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-551,COM1.USACE-New-Orleans.contents.usace_new_orleans_department_store.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 99.5, 99.8, 99.9, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-552,COM1.USACE-New-Orleans.contents.usace_new_orleans_large_grocery.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 73.6, 81.4, 84.8, 87.6, 96.3, 96.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-553,COM1.USACE-New-Orleans.contents.usace_new_orleans_large_grocery.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 97.5, 99.1, 99.4, 99.7, 99.7, 99.7, 99.7, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-554,COM1.USACE-Sacramento.contents.usace_sacramento_food_stores.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 29.0, 96.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-555,COM1.USACE-Sacramento.contents.usace_sacramento_furniture_retail.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 80.0, 80.0, 96.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-556,COM1.USACE-Sacramento.contents.usace_sacramento_grocery_store.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 32.0, 89.0, 89.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-557,COM1.USACE-Sacramento.contents.usace_sacramento_retail.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 80.0, 80.0, 96.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-558,COM1.USACE-Sacramento.contents.usace_sacramento_shopping_centers.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 33.0, 72.0, 72.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-559,COM1.USACE-Sacramento.contents.usace_sacramento_food_stores.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 25.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-560,COM1.USACE-Sacramento.contents.usace_sacramento_furniture_retail.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 42.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-561,COM1.USACE-Sacramento.contents.usace_sacramento_grocery_store.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 27.0, 49.0, 49.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-562,COM1.USACE-Sacramento.contents.usace_sacramento_retail.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 19.0, 19.0, 36.0, 36.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-563,COM1.USACE-Sacramento.contents.usace_sacramento_shopping_centers.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 28.0, 40.0, 40.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-564,COM1.USACE-Sacramento.contents.usace_sacramento_food_stores.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 78.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-565,COM1.USACE-Sacramento.contents.usace_sacramento_furniture_retail.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 98.0, 98.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-566,COM1.USACE-Sacramento.contents.usace_sacramento_grocery_store.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 87.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-567,COM1.USACE-Sacramento.contents.usace_sacramento_retail.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 80.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-568,COM1.USACE-Sacramento.contents.usace_sacramento_shopping_centers.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 96.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-569,COM1.USACE-Sacramento.contents.usace_sacramento_food_stores.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 38.0, 38.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-570,COM1.USACE-Sacramento.contents.usace_sacramento_furniture_retail.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 47.0, 47.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-571,COM1.USACE-Sacramento.contents.usace_sacramento_grocery_store.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 42.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-572,COM1.USACE-Sacramento.contents.usace_sacramento_retail.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 38.0, 38.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-573,COM1.USACE-Sacramento.contents.usace_sacramento_shopping_centers.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 46.0, 46.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-574,COM2.FEMA-BCA-Toolkit.contents.bca_toolkit_warehouse.refrig_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.71429, 48.0, 59.14286, 65.71429, 74.28571, 79.71429, 84.0, 89.85714, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-575,COM2.FEMA-BCA-Toolkit.contents.bca_toolkit_warehouse.non_refrig_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.71429, 33.71429, 47.42857, 56.85714, 65.57143, 73.57143, 81.28571, 88.42857, 91.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-576,COM2.FEMA-BCA-Toolkit.contents.bca_toolkit_warehouse.refrig_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.71429, 48.0, 59.14286, 65.71429, 74.28571, 79.71429, 84.0, 89.85714, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-577,COM2.FEMA-BCA-Toolkit.contents.bca_toolkit_warehouse.non_refrig_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.71429, 33.71429, 47.42857, 56.85714, 65.57143, 73.57143, 81.28571, 88.42857, 91.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-578,COM2.FEMA-BCA-Toolkit.contents.bca_toolkit_warehouse.refrig_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.71429, 48.0, 59.14286, 65.71429, 74.28571, 79.71429, 84.0, 89.85714, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-579,COM2.FEMA-BCA-Toolkit.contents.bca_toolkit_warehouse.non_refrig_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.71429, 33.71429, 47.42857, 56.85714, 65.57143, 73.57143, 81.28571, 88.42857, 91.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-580,COM2.FEMA-BCA-Toolkit.contents.bca_toolkit_warehouse.refrig_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.71429, 48.0, 59.14286, 65.71429, 74.28571, 79.71429, 84.0, 89.85714, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-581,COM2.FEMA-BCA-Toolkit.contents.bca_toolkit_warehouse.non_refrig_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.71429, 33.71429, 47.42857, 56.85714, 65.57143, 73.57143, 81.28571, 88.42857, 91.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-582,COM2.USACE-New-Orleans.contents.usace_new_orleans_warehouse.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 19.2, 30.7, 39.7, 44.5, 48.8, 54.1, 58.3, 62.6, 71.6, 71.6, 71.6, 71.6, 71.6, 71.6, 71.6, 71.6, 71.6, 71.6, 71.6, 71.6, 71.6, 71.6, 71.6, 71.6|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-583,COM2.USACE-New-Orleans.contents.usace_new_orleans_warehouse.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 69.9, 79.9, 96.3, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-584,COM2.FEMA-BCA-Toolkit.contents.warehouse.non_refrig_default.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.71429, 33.71429, 47.42857, 56.85714, 65.57143, 73.57143, 81.28571, 88.42857, 91.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-585,COM2.FEMA-BCA-Toolkit.contents.warehouse.non_refrig_default.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.71429, 33.71429, 47.42857, 56.85714, 65.57143, 73.57143, 81.28571, 88.42857, 91.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-586,COM2.FEMA-BCA-Toolkit.contents.warehouse.refrig_default.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 29.71429, 48.0, 59.14286, 65.71429, 74.28571, 79.71429, 84.0, 89.85714, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-587,COM2.FEMA-BCA-Toolkit.contents.warehouse.refrig_default.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 29.71429, 48.0, 59.14286, 65.71429, 74.28571, 79.71429, 84.0, 89.85714, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-588,COM2.USACE-Sacramento.contents.usace_sacramento_warehouse.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 23.0, 69.0, 69.0, 96.0, 96.0, 96.0, 96.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-589,COM2.USACE-Sacramento.contents.usace_sacramento_warehouse.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 20.0, 38.0, 38.0, 48.0, 48.0, 48.0, 48.0, 48.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-590,COM2.USACE-Sacramento.contents.usace_sacramento_warehouse.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 84.0, 84.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-591,COM2.USACE-Sacramento.contents.usace_sacramento_warehouse.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 40.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-592,COM3.FEMA-BCA-Toolkit.contents.protective_services.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 14.28571, 24.71429, 36.71429, 46.57143, 55.28571, 62.85714, 74.42857, 82.71429, 84.42857, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-593,COM3.FEMA-BCA-Toolkit.contents.protective_services.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 14.28571, 24.71429, 36.71429, 46.57143, 55.28571, 62.85714, 74.42857, 82.71429, 84.42857, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-594,COM3.USACE-Sacramento.contents.usace_sacramento_service_auto.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 9.0, 10.0, 23.0, 23.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-595,COM3.USACE-Sacramento.contents.usace_sacramento_service_auto.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 8.0, 8.0, 19.0, 19.0, 37.0, 37.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-596,COM3.USACE-Sacramento.contents.usace_sacramento_service_auto.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 10.0, 10.0, 74.0, 74.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-597,COM3.USACE-Sacramento.contents.usace_sacramento_service_auto.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 5.0, 5.0, 35.0, 35.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-598,COM4.FEMA-BCA-Toolkit.contents.bca_toolkit_protective_services_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.28571, 24.71429, 36.71429, 46.57143, 55.28571, 62.85714, 74.42857, 82.71429, 84.42857, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-599,COM4.FEMA-BCA-Toolkit.contents.bca_toolkit_office_one_story_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.71429, 0.71429, 1.0, 20.0, 34.28571, 45.42857, 55.0, 63.85714, 73.28571, 76.42857, 83.42857, 89.28571, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-600,COM4.FEMA-BCA-Toolkit.contents.bca_toolkit_protective_services_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.28571, 24.71429, 36.71429, 46.57143, 55.28571, 62.85714, 74.42857, 82.71429, 84.42857, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-601,COM4.FEMA-BCA-Toolkit.contents.bca_toolkit_office_one_story_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.71429, 0.71429, 1.0, 20.0, 34.28571, 45.42857, 55.0, 63.85714, 73.28571, 76.42857, 83.42857, 89.28571, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-602,COM4.FEMA-BCA-Toolkit.contents.bca_toolkit_protective_services_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.28571, 24.71429, 36.71429, 46.57143, 55.28571, 62.85714, 74.42857, 82.71429, 84.42857, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-603,COM4.FEMA-BCA-Toolkit.contents.bca_toolkit_office_one_story_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.71429, 0.71429, 1.0, 20.0, 34.28571, 45.42857, 55.0, 63.85714, 73.28571, 76.42857, 83.42857, 89.28571, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-604,COM4.FEMA-BCA-Toolkit.contents.bca_toolkit_protective_services_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.28571, 24.71429, 36.71429, 46.57143, 55.28571, 62.85714, 74.42857, 82.71429, 84.42857, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-605,COM4.FEMA-BCA-Toolkit.contents.bca_toolkit_office_one_story_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.71429, 0.71429, 1.0, 20.0, 34.28571, 45.42857, 55.0, 63.85714, 73.28571, 76.42857, 83.42857, 89.28571, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-606,COM4.FEMA-BCA-Toolkit.contents.office_one_story.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.71429, 0.71429, 1.0, 20.0, 34.28571, 45.42857, 55.0, 63.85714, 73.28571, 76.42857, 83.42857, 89.28571, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-607,COM4.FEMA-BCA-Toolkit.contents.office_one_story.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.71429, 0.71429, 1.0, 20.0, 34.28571, 45.42857, 55.0, 63.85714, 73.28571, 76.42857, 83.42857, 89.28571, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-608,COM4.USACE-New-Orleans.contents.usace_new_orleans_utility_company.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.1, 17.5, 49.8, 50.1, 51.8, 57.6, 57.6, 57.6, 57.6, 57.8, 59.4, 69.2, 69.6, 69.7, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-609,COM4.USACE-New-Orleans.contents.usace_new_orleans_utility_company.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-610,COM4.USACE-Sacramento.contents.usace_sacramento_office.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 35.0, 90.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-611,COM4.USACE-Sacramento.contents.usace_sacramento_office.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 29.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-612,COM4.USACE-Sacramento.contents.usace_sacramento_office.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 97.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-613,COM4.USACE-Sacramento.contents.usace_sacramento_office.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 46.0, 46.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-614,COM6.FEMA-BCA-Toolkit.contents.bca_toolkit_hospital_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.625, 27.0, 37.0, 53.375, 70.0, 79.125, 85.625, 92.5, 95.625, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-615,COM6.FEMA-BCA-Toolkit.contents.bca_toolkit_hospital_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.625, 27.0, 37.0, 53.375, 70.0, 79.125, 85.625, 92.5, 95.625, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-616,COM6.FEMA-BCA-Toolkit.contents.bca_toolkit_hospital_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.625, 27.0, 37.0, 53.375, 70.0, 79.125, 85.625, 92.5, 95.625, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-617,COM6.FEMA-BCA-Toolkit.contents.bca_toolkit_hospital_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.625, 27.0, 37.0, 53.375, 70.0, 79.125, 85.625, 92.5, 95.625, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-618,COM6.FEMA-BCA-Toolkit.contents.hospital.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 14.625, 27.0, 37.0, 53.375, 70.0, 79.125, 85.625, 92.5, 95.625, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-619,COM6.FEMA-BCA-Toolkit.contents.hospital.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 14.625, 27.0, 37.0, 53.375, 70.0, 79.125, 85.625, 92.5, 95.625, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-620,COM6.USACE-New-Orleans.contents.usace_new_orleans_medical_office.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.8, 45.7, 94.1, 96.9, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-621,COM6.USACE-New-Orleans.contents.usace_new_orleans_medical_office.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 98.5, 98.5, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-622,COM6.USACE-Sacramento.contents.usace_sacramento_medical.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 33.0, 89.0, 89.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-623,COM6.USACE-Sacramento.contents.usace_sacramento_medical.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 28.0, 49.0, 49.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-624,COM6.USACE-Sacramento.contents.usace_sacramento_medical.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 75.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-625,COM6.USACE-Sacramento.contents.usace_sacramento_medical.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 36.0, 36.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-626,COM7.FEMA-BCA-Toolkit.contents.bca_toolkit_medical_office_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.25, 26.875, 40.375, 57.125, 67.25, 75.375, 82.25, 91.25, 96.25, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-627,COM7.FEMA-BCA-Toolkit.contents.bca_toolkit_medical_office_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.25, 26.875, 40.375, 57.125, 67.25, 75.375, 82.25, 91.25, 96.25, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-628,COM7.FEMA-BCA-Toolkit.contents.bca_toolkit_medical_office_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.25, 26.875, 40.375, 57.125, 67.25, 75.375, 82.25, 91.25, 96.25, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-629,COM7.FEMA-BCA-Toolkit.contents.bca_toolkit_medical_office_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.25, 26.875, 40.375, 57.125, 67.25, 75.375, 82.25, 91.25, 96.25, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-630,COM7.FEMA-BCA-Toolkit.contents.medical_office.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 14.25, 26.875, 40.375, 57.125, 67.25, 75.375, 82.25, 91.25, 96.25, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-631,COM7.FEMA-BCA-Toolkit.contents.medical_office.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 14.25, 26.875, 40.375, 57.125, 67.25, 75.375, 82.25, 91.25, 96.25, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-632,COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_fast_food_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.28571, 38.57143, 52.71429, 62.57143, 73.0, 79.28571, 88.28571, 94.85714, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-633,COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_non_fast_food_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.71429, 48.85714, 57.28571, 71.85714, 79.71429, 84.85714, 92.85714, 93.42857, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-634,COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_recreation_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.71429, 43.71429, 62.71429, 72.85714, 80.0, 84.0, 91.14286, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-635,COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_fast_food_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.28571, 38.57143, 52.71429, 62.57143, 73.0, 79.28571, 88.28571, 94.85714, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-636,COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_non_fast_food_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.71429, 48.85714, 57.28571, 71.85714, 79.71429, 84.85714, 92.85714, 93.42857, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-637,COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_recreation_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.71429, 43.71429, 62.71429, 72.85714, 80.0, 84.0, 91.14286, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-638,COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_fast_food_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.28571, 38.57143, 52.71429, 62.57143, 73.0, 79.28571, 88.28571, 94.85714, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-639,COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_non_fast_food_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.71429, 48.85714, 57.28571, 71.85714, 79.71429, 84.85714, 92.85714, 93.42857, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-640,COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_recreation_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.71429, 43.71429, 62.71429, 72.85714, 80.0, 84.0, 91.14286, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-641,COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_fast_food_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.28571, 38.57143, 52.71429, 62.57143, 73.0, 79.28571, 88.28571, 94.85714, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-642,COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_non_fast_food_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.71429, 48.85714, 57.28571, 71.85714, 79.71429, 84.85714, 92.85714, 93.42857, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-643,COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_recreation_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.71429, 43.71429, 62.71429, 72.85714, 80.0, 84.0, 91.14286, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-644,COM8.FEMA-BCA-Toolkit.contents.fast_food.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 21.28571, 38.57143, 52.71429, 62.57143, 73.0, 79.28571, 88.28571, 94.85714, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-645,COM8.FEMA-BCA-Toolkit.contents.fast_food.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 21.28571, 38.57143, 52.71429, 62.57143, 73.0, 79.28571, 88.28571, 94.85714, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-646,COM8.FEMA-BCA-Toolkit.contents.non_fast_food.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 27.71429, 48.85714, 57.28571, 71.85714, 79.71429, 84.85714, 92.85714, 93.42857, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-647,COM8.FEMA-BCA-Toolkit.contents.non_fast_food.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 27.71429, 48.85714, 57.28571, 71.85714, 79.71429, 84.85714, 92.85714, 93.42857, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-648,COM8.FEMA-BCA-Toolkit.contents.recreation.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.71429, 43.71429, 62.71429, 72.85714, 80.0, 84.0, 91.14286, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-649,COM8.FEMA-BCA-Toolkit.contents.recreation.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.71429, 43.71429, 62.71429, 72.85714, 80.0, 84.0, 91.14286, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-650,COM8.USACE-Sacramento.contents.usace_sacramento_restaurant.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 30.0, 96.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-651,COM8.USACE-Sacramento.contents.usace_sacramento_restaurant_fast_food.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 23.0, 90.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-652,COM8.USACE-Sacramento.contents.usace_sacramento_recreation.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 38.0, 38.0, 95.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-653,COM8.USACE-Sacramento.contents.usace_sacramento_restaurant.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 25.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-654,COM8.USACE-Sacramento.contents.usace_sacramento_restaurant_fast_food.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 20.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-655,COM8.USACE-Sacramento.contents.usace_sacramento_recreation.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 32.0, 49.0, 49.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-656,COM8.USACE-Sacramento.contents.usace_sacramento_restaurant.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 91.0, 91.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-657,COM8.USACE-Sacramento.contents.usace_sacramento_restaurant_fast_food.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 88.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-658,COM8.USACE-Sacramento.contents.usace_sacramento_recreation.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 98.0, 98.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-659,COM8.USACE-Sacramento.contents.usace_sacramento_restaurant.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 44.0, 44.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-660,COM8.USACE-Sacramento.contents.usace_sacramento_restaurant_fast_food.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 42.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-661,COM8.USACE-Sacramento.contents.usace_sacramento_recreation.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 47.0, 47.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-662,EDU1.FEMA-BCA-Toolkit.contents.bca_toolkit_schools_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-663,EDU1.FEMA-BCA-Toolkit.contents.bca_toolkit_schools_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-664,EDU1.FEMA-BCA-Toolkit.contents.bca_toolkit_schools_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-665,EDU1.FEMA-BCA-Toolkit.contents.bca_toolkit_schools_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-666,EDU1.FEMA-BCA-Toolkit.contents.schools.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-667,EDU1.FEMA-BCA-Toolkit.contents.schools.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-668,EDU1.USACE-New-Orleans.contents.usace_new_orleans_elementary_school.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.1, 17.5, 49.8, 50.1, 51.8, 57.6, 57.6, 57.6, 57.6, 57.8, 59.4, 69.2, 69.6, 69.7, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-669,EDU1.USACE-New-Orleans.contents.usace_new_orleans_elementary_school.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-670,EDU1.USACE-Sacramento.contents.usace_sacramento_schools.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 22.0, 67.0, 67.0, 88.0, 88.0, 88.0, 88.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-671,EDU1.USACE-Sacramento.contents.usace_sacramento_schools.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 18.0, 37.0, 37.0, 44.0, 44.0, 44.0, 44.0, 44.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-672,EDU1.USACE-Sacramento.contents.usace_sacramento_schools.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 88.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-673,EDU1.USACE-Sacramento.contents.usace_sacramento_schools.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 42.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-674,EDU2.USACE-New-Orleans.contents.usace_new_orleans_college.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.1, 17.5, 49.8, 50.1, 51.8, 57.6, 57.6, 57.6, 57.6, 57.8, 59.4, 69.2, 69.6, 69.7, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-675,EDU2.USACE-New-Orleans.contents.usace_new_orleans_college.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-676,GOV1.USACE-New-Orleans.contents.usace_new_orleans_government_facility.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.1, 17.5, 49.8, 50.1, 51.8, 57.6, 57.6, 57.6, 57.6, 57.8, 59.4, 69.2, 69.6, 69.7, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-677,GOV1.USACE-New-Orleans.contents.usace_new_orleans_government_facility.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-678,GOV1.USACE-Sacramento.contents.usace_sacramento_government.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 35.0, 90.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-679,GOV1.USACE-Sacramento.contents.usace_sacramento_government.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 30.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-680,GOV1.USACE-Sacramento.contents.usace_sacramento_government.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 97.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-681,GOV1.USACE-Sacramento.contents.usace_sacramento_government.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 45.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-682,IND1.USACE-Sacramento.contents.usace_sacramento_heavy.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 16.0, 56.0, 56.0, 92.0, 92.0, 92.0, 92.0, 92.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-683,IND1.USACE-Sacramento.contents.usace_sacramento_heavy.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 14.0, 31.0, 31.0, 46.0, 46.0, 46.0, 46.0, 46.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-684,IND1.USACE-Sacramento.contents.usace_sacramento_heavy.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 33.0, 77.0, 77.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-685,IND1.USACE-Sacramento.contents.usace_sacramento_heavy.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 40.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-686,IND2.FEMA-BCA-Toolkit.contents.bca_toolkit_industrial_light_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19.28571, 31.0, 42.28571, 52.28571, 60.71429, 72.0, 82.14286, 90.71429, 94.28571, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-687,IND2.FEMA-BCA-Toolkit.contents.bca_toolkit_industrial_light_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19.28571, 31.0, 42.28571, 52.28571, 60.71429, 72.0, 82.14286, 90.71429, 94.28571, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-688,IND2.FEMA-BCA-Toolkit.contents.bca_toolkit_industrial_light_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19.28571, 31.0, 42.28571, 52.28571, 60.71429, 72.0, 82.14286, 90.71429, 94.28571, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-689,IND2.FEMA-BCA-Toolkit.contents.bca_toolkit_industrial_light_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19.28571, 31.0, 42.28571, 52.28571, 60.71429, 72.0, 82.14286, 90.71429, 94.28571, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-690,IND2.FEMA-BCA-Toolkit.contents.industrial_light.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 19.28571, 31.0, 42.28571, 52.28571, 60.71429, 72.0, 82.14286, 90.71429, 94.28571, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-691,IND2.FEMA-BCA-Toolkit.contents.industrial_light.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 19.28571, 31.0, 42.28571, 52.28571, 60.71429, 72.0, 82.14286, 90.71429, 94.28571, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-692,IND2.USACE-Sacramento.contents.usace_sacramento_light.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 35.0, 75.0, 75.0, 96.0, 96.0, 96.0, 96.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-693,IND2.USACE-Sacramento.contents.usace_sacramento_light.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 30.0, 41.0, 41.0, 48.0, 48.0, 48.0, 48.0, 48.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-694,IND2.USACE-Sacramento.contents.usace_sacramento_light.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 88.0, 88.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-695,IND2.USACE-Sacramento.contents.usace_sacramento_light.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 42.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-696,REL1.FEMA-BCA-Toolkit.contents.bca_toolkit_religious_facilities_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.28571, 48.42857, 60.0, 69.28571, 76.42857, 81.42857, 88.42857, 94.28571, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-697,REL1.FEMA-BCA-Toolkit.contents.bca_toolkit_religious_facilities_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.28571, 48.42857, 60.0, 69.28571, 76.42857, 81.42857, 88.42857, 94.28571, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-698,REL1.FEMA-BCA-Toolkit.contents.bca_toolkit_religious_facilities_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.28571, 48.42857, 60.0, 69.28571, 76.42857, 81.42857, 88.42857, 94.28571, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-699,REL1.FEMA-BCA-Toolkit.contents.bca_toolkit_religious_facilities_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.28571, 48.42857, 60.0, 69.28571, 76.42857, 81.42857, 88.42857, 94.28571, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-700,REL1.FEMA-BCA-Toolkit.contents.religious_facilities.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 29.28571, 48.42857, 60.0, 69.28571, 76.42857, 81.42857, 88.42857, 94.28571, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-701,REL1.FEMA-BCA-Toolkit.contents.religious_facilities.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 29.28571, 48.42857, 60.0, 69.28571, 76.42857, 81.42857, 88.42857, 94.28571, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-702,REL1.USACE-Sacramento.contents.usace_sacramento_churches.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 33.0, 85.0, 85.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-703,REL1.USACE-Sacramento.contents.usace_sacramento_churches.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 28.0, 47.0, 47.0, 49.0, 49.0, 49.0, 49.0, 49.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-704,REL1.USACE-Sacramento.contents.usace_sacramento_churches.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 73.0, 73.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-705,REL1.USACE-Sacramento.contents.usace_sacramento_churches.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 35.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-706,RES1.USACE-NACCS.contents.naccs_5a_single_story_residence_no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 60.0, 80.0, 85.0, 90.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-707,RES1.USACE-NACCS.contents.naccs_5a_single_story_residence_no_basement_wave_crawlspace-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 30.0, 60.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-708,RES1.USACE-NACCS.contents.naccs_5b_two_story_residence_no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 5.0, 25.0, 35.0, 45.0, 50.0, 55.0, 62.5, 70.0, 73.33333, 76.66667, 80.0, 83.33333, 86.66667, 90.0, 93.33333, 96.66667, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-709,RES1.USACE-NACCS.contents.naccs_5b_two_story_residence_no_basement_wave_crawlspace-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 5.0, 20.0, 35.0, 45.0, 94.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-710,RES1.USACE-NACCS.contents.naccs_6a_single_story_residence_with_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 10.0, 15.0, 15.0, 45.0, 64.0, 80.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-711,RES1.USACE-NACCS.contents.naccs_6b_two_story_residence_with_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 10.0, 15.0, 20.0, 35.0, 40.0, 50.0, 55.0, 60.0, 65.0, 70.0, 76.66667, 83.33333, 90.0, 96.66667, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-712,RES1.USACE-NACCS.contents.naccs_7a_building_on_open_pile_foundation-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 1.0, 1.0, 10.0, 40.0, 50.0, 80.0, 89.0, 98.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-713,RES1.USACE-NACCS.contents.naccs_7a_building_on_open_pile_foundation_waves-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 12.5, 20.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-714,RES1.USACE-NACCS.contents.naccs_7b_building_on_pile_foundation_with_enclosure-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 9.0, 11.0, 20.0, 40.0, 75.0, 85.0, 92.5, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-715,RES1.USACE-NACCS.contents.naccs_7b_building_on_pile_foundation_with_enclosure_waves-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 25.0, 40.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-716,RES1.USACE-Generic.contents.single_family_residential.1_story_with_basements-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 10.5, 13.2, 16.0, 18.9, 21.8, 24.7, 27.4, 30.0, 32.4, 34.5, 36.3, 37.7, 38.6, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-717,RES1.USACE-Generic.contents.single_family_residential.2_or_more_stories_with_basements-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 8.4, 10.1, 11.9, 13.8, 15.7, 17.7, 19.8, 22.0, 24.3, 26.7, 29.1, 31.7, 34.4, 37.2, 40.0, 43.0, 46.1, 49.3, 52.6, 52.6, 52.6, 52.6, 52.6, 52.6, 52.6, 52.6, 52.6|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-718,RES1.USACE-Generic.contents.single_family_residential.split_level_with_basements-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 7.3, 9.4, 11.6, 13.8, 16.1, 18.2, 20.2, 22.1, 23.6, 24.9, 25.8, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-719,RES1.USACE-Generic.contents.single_family_residential.1_story_with_no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 2.4, 8.1, 13.3, 17.9, 22.0, 25.7, 28.8, 31.5, 33.8, 35.7, 37.2, 38.4, 39.2, 39.7, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-720,RES1.USACE-Generic.contents.single_family_residential.2_or_more_stories_with_no_basements-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 1.0, 5.0, 8.7, 12.2, 15.5, 18.5, 21.3, 23.9, 26.3, 28.4, 30.3, 32.0, 33.4, 34.7, 35.6, 36.4, 36.9, 37.2, 37.2, 37.2, 37.2, 37.2, 37.2, 37.2, 37.2, 37.2|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-721,RES1.USACE-Generic.contents.single_family_residential.split_level_with_no_basements-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 2.2, 2.9, 4.7, 7.5, 11.1, 15.3, 20.1, 25.2, 30.5, 35.7, 40.9, 45.8, 50.2, 54.1, 57.2, 59.4, 60.5, 60.5, 60.5, 60.5, 60.5, 60.5, 60.5, 60.5, 60.5, 60.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-722,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_slab_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 30.0, 45.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-723,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_wall_2_feet_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-724,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_wall_3_feet_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-725,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_open_+2_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-726,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_open_+4_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-727,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_open_+6_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-728,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_open_+8_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-729,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_open_+10_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 25.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-730,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_open_+12_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 10.0, 65.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-731,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_obstr_+2_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 48.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-732,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_obstr_+4_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 3.0, 38.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-733,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_obstr_+6_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 2.0, 3.0, 3.0, 3.0, 33.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-734,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_obstr_+8_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 3.0, 3.0, 3.0, 28.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-735,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_obstr_+10_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 3.0, 3.0, 28.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-736,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_obstr_+12_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 3.0, 13.0, 68.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-737,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_1_story_without_basement_outside_caz_usace_generic_riverine-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.4, 8.1, 13.3, 17.9, 22.0, 25.7, 28.8, 31.5, 33.8, 35.7, 37.2, 38.4, 39.2, 39.7, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-738,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_2_story_without_basement_outside_caz_usace_generic_riverine-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 5.0, 8.7, 12.2, 15.5, 18.5, 21.3, 23.9, 26.3, 28.4, 30.3, 32.0, 33.4, 34.7, 35.6, 36.4, 36.9, 37.2, 37.2, 37.2, 37.2, 37.2|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-739,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_split_level_without_basement_outside_caz_usace_generic_riverine-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.2, 2.9, 4.7, 7.5, 11.1, 15.3, 20.1, 25.2, 30.5, 35.7, 40.9, 45.8, 50.2, 54.1, 57.2, 59.4, 60.5, 60.5, 60.5, 60.5, 60.5, 60.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-740,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_1_story_with_basement_outside_caz_usace_generic_riverine-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.5, 13.2, 16.0, 18.9, 21.8, 24.7, 27.4, 30.0, 32.4, 34.5, 36.3, 37.7, 38.6, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-741,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_2_story_with_basement_outside_caz_usace_generic_riverine-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.4, 10.1, 11.9, 13.8, 15.7, 17.7, 19.8, 22.0, 24.3, 26.7, 29.1, 31.7, 34.4, 37.2, 40.0, 43.0, 46.1, 49.3, 52.6, 52.6, 52.6, 52.6, 52.6|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-742,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_split_level_with_basement_outside_caz_usace_generic_riverine-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.3, 9.4, 11.6, 13.8, 16.1, 18.2, 20.2, 22.1, 23.6, 24.9, 25.8, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-743,RES1.FEMA-FIMA.contents.fema_fia_split_level_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.5, 13.5, 19.5, 37.5, 40.5, 42.0, 49.5, 51.0, 61.5, 64.5, 67.5, 69.0, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-744,RES1.FEMA-FIMA.contents.fema_fia_two_or_more_stories_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 12.0, 16.5, 22.5, 30.0, 34.5, 42.0, 49.5, 57.0, 66.0, 73.5, 76.5, 79.5, 82.5, 85.5, 88.5, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-745,RES1.FEMA-FIMA.contents.fema_fia_split_level_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.5, 7.5, 9.0, 24.0, 28.5, 33.0, 40.5, 48.0, 52.5, 54.0, 66.0, 72.0, 75.0, 78.0, 81.0, 84.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-746,RES1.FEMA-FIMA.contents.fema_fia_one_story_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 12.0, 16.5, 22.5, 30.0, 34.5, 42.0, 49.5, 57.0, 66.0, 73.5, 76.5, 79.5, 82.5, 85.5, 88.5, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-747,RES1.FEMA-FIMA.contents.fema_fia_coastal_building_zone_v-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 15.0, 23.0, 35.0, 50.0, 58.0, 63.0, 66.5, 69.5, 72.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 87.0, 87.0, 87.0, 87.0, 87.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-748,RES1.FEMA-FIMA.contents.fema_fia_two_or_more_stories_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.5, 13.5, 19.5, 27.0, 30.0, 33.0, 36.0, 39.0, 43.5, 49.5, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-749,RES1.FEMA-FIMA.contents.fema_fia_one_story_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.5, 21.0, 33.0, 40.5, 43.5, 45.0, 60.0, 64.5, 66.0, 67.5, 69.0, 70.5, 72.0, 73.5, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-750,RES1.FEMA-FIMA.contents.fema_fia_coastal_building_zone_v-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 24.0, 29.0, 37.0, 54.0, 60.5, 64.5, 68.0, 70.0, 72.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 87.0, 87.0, 87.0, 87.0, 87.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-751,RES1.FEMA-FIMA.contents.fema_fia.split_level.with_basement_split_level-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.5, 7.5, 9.0, 24.0, 28.5, 33.0, 40.5, 48.0, 52.5, 54.0, 66.0, 72.0, 75.0, 78.0, 81.0, 84.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-752,RES1.FEMA-FIMA.contents.fema_fia_default_one_story_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 12.0, 16.5, 22.5, 30.0, 34.5, 42.0, 49.5, 57.0, 66.0, 73.5, 76.5, 79.5, 82.5, 85.5, 88.5, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-753,RES1.FEMA-FIMA.contents.fema_fia.1_story.no_basement_one_story-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.5, 21.0, 33.0, 40.5, 43.5, 45.0, 60.0, 64.5, 66.0, 67.5, 69.0, 70.5, 72.0, 73.5, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-754,RES1.FEMA-FIMA.contents.fema_fia.2_story.no_basement_two_or_more_stories-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.5, 13.5, 19.5, 27.0, 30.0, 33.0, 36.0, 39.0, 43.5, 49.5, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-755,RES1.FEMA-FIMA.contents.fema_fia_default_one_story_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.5, 21.0, 33.0, 40.5, 43.5, 45.0, 60.0, 64.5, 66.0, 67.5, 69.0, 70.5, 72.0, 73.5, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-756,RES1.FEMA-FIMA.contents.fema_fia_default_coastal_building_zone_v-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 24.0, 29.0, 37.0, 54.0, 60.5, 64.5, 68.0, 70.0, 72.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 87.0, 87.0, 87.0, 87.0, 87.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-757,RES1.FEMA-FIMA.contents.fema_fia_default_two_or_more_stories_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.5, 13.5, 19.5, 27.0, 30.0, 33.0, 36.0, 39.0, 43.5, 49.5, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-758,RES1.FEMA-FIMA.contents.fema_fia.1_story.with_basement_one_story-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 12.0, 16.5, 22.5, 30.0, 34.5, 42.0, 49.5, 57.0, 66.0, 73.5, 76.5, 79.5, 82.5, 85.5, 88.5, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-759,RES1.FEMA-FIMA.contents.fema_fia_default_split_level_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.5, 13.5, 19.5, 37.5, 40.5, 42.0, 49.5, 51.0, 61.5, 64.5, 67.5, 69.0, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-760,RES1.FEMA-FIMA.contents.fema_fia_default_two_or_more_stories_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 12.0, 16.5, 22.5, 30.0, 34.5, 42.0, 49.5, 57.0, 66.0, 73.5, 76.5, 79.5, 82.5, 85.5, 88.5, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-761,RES1.FEMA-FIMA.contents.fema_fia_default_coastal_building_zone_v-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 15.0, 23.0, 35.0, 50.0, 58.0, 63.0, 66.5, 69.5, 72.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 87.0, 87.0, 87.0, 87.0, 87.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-762,RES1.FEMA-BCA-Toolkit.contents.1_story_single_family_home.basement.fema_fia_original_source-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 6.0, 12.0, 16.5, 22.5, 30.0, 34.5, 42.0, 49.5, 57.0, 66.0, 73.5, 76.5, 79.5, 82.5, 85.5, 88.5, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-763,RES1.FEMA-BCA-Toolkit.contents.1_story_single_family_home.no_basement.fema_fia_original_source-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 13.5, 21.0, 33.0, 40.5, 43.5, 45.0, 60.0, 64.5, 66.0, 67.5, 69.0, 70.5, 72.0, 73.5, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-764,RES1.FEMA-BCA-Toolkit.contents.split_level_single_family_home.basement.fema_fia_original_source-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 4.5, 7.5, 9.0, 24.0, 28.5, 33.0, 40.5, 48.0, 52.5, 54.0, 66.0, 72.0, 75.0, 78.0, 81.0, 84.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-765,RES1.FEMA-BCA-Toolkit.contents.split_level_single_family_home.no_basement.fema_fia_original_source-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 4.5, 13.5, 19.5, 37.5, 40.5, 42.0, 49.5, 51.0, 61.5, 64.5, 67.5, 69.0, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-766,RES1.FEMA-BCA-Toolkit.contents.2_or_more_story_single_family_home.basement.fema_fia_original_source-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 6.0, 12.0, 16.5, 22.5, 30.0, 34.5, 42.0, 49.5, 57.0, 66.0, 73.5, 76.5, 79.5, 82.5, 85.5, 88.5, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-767,RES1.FEMA-BCA-Toolkit.contents.2_or_more_story_single_family_home.no_basement.fema_fia_original_source-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 7.5, 13.5, 19.5, 27.0, 30.0, 33.0, 36.0, 39.0, 43.5, 49.5, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-768,RES1.FEMA-BCA-Toolkit.contents.single_family_home.basement.fema_fia_original_source-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 11.0, 24.0, 29.0, 37.0, 54.0, 60.5, 64.5, 68.0, 70.0, 72.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-769,RES1.FEMA-BCA-Toolkit.contents.single_family_home.no_basement.fema_fia_original_source-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 6.0, 15.0, 23.0, 35.0, 50.0, 58.0, 63.0, 66.5, 69.5, 72.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-770,RES1.USACE-New-Orleans.contents.one_story.usace_new_orleans_one_story.pier_foundation.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 41.8, 62.9, 82.1, 84.6, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-771,RES1.USACE-New-Orleans.contents.one_story.usace_new_orleans_one_story.pier_foundation.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-772,RES1.USACE-New-Orleans.contents.one_story.usace_new_orleans_one_story.slab_foundation.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 41.8, 62.9, 82.1, 84.6, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-773,RES1.USACE-New-Orleans.contents.one_story.usace_new_orleans_one_story.slab_foundation.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-774,RES1.USACE-New-Orleans.contents.two_or_more.usace_new_orleans_two_story.pier_foundation.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 36.5, 50.8, 50.8, 55.3, 55.3, 55.3, 55.3, 55.3, 72.5, 80.7, 87.1, 90.1, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-775,RES1.USACE-New-Orleans.contents.two_or_more.usace_new_orleans_two_story.pier_foundation.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-776,RES1.USACE-New-Orleans.contents.two_or_more.usace_new_orleans_two_story.slab_foundation.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 36.5, 50.8, 50.8, 55.3, 55.3, 55.3, 55.3, 55.3, 72.5, 80.7, 87.1, 90.1, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-777,RES1.USACE-New-Orleans.contents.two_or_more.usace_new_orleans_two_story.slab_foundation.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-778,RES1.USACE-Generic.contents.one_story.usace_generic.with_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 10.5, 13.2, 16.0, 18.9, 21.8, 24.7, 27.4, 30.0, 32.4, 34.5, 36.3, 37.7, 38.6, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-779,RES1.USACE-Generic.contents.one_story.usace_generic.with_no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 2.4, 8.1, 13.3, 17.9, 22.0, 25.7, 28.8, 31.5, 33.8, 35.7, 37.2, 38.4, 39.2, 39.7, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-780,RES1.USACE-Generic.contents.split_level.usace_generic.with_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 7.3, 9.4, 11.6, 13.8, 16.1, 18.2, 20.2, 22.1, 23.6, 24.9, 25.8, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-781,RES1.USACE-Generic.contents.split_level.usace_generic.with_no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 2.2, 2.9, 4.7, 7.5, 11.1, 15.3, 20.1, 25.2, 30.5, 35.7, 40.9, 45.8, 50.2, 54.1, 57.2, 59.4, 60.5, 60.5, 60.5, 60.5, 60.5, 60.5, 60.5, 60.5, 60.5, 60.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-782,RES1.USACE-Generic.contents.two_or_more_stories.usace_generic.with_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 8.4, 10.1, 11.9, 13.8, 15.7, 17.7, 19.8, 22.0, 24.3, 26.7, 29.1, 31.7, 34.4, 37.2, 40.0, 43.0, 46.1, 49.3, 52.6, 52.6, 52.6, 52.6, 52.6, 52.6, 52.6, 52.6, 52.6|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-783,RES1.USACE-Generic.contents.two_or_more_stories.usace_generic.with_no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 1.0, 5.0, 8.7, 12.2, 15.5, 18.5, 21.3, 23.9, 26.3, 28.4, 30.3, 32.0, 33.4, 34.7, 35.6, 36.4, 36.9, 37.2, 37.2, 37.2, 37.2, 37.2, 37.2, 37.2, 37.2, 37.2|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-784,RES2.FEMA-BCA-Toolkit.contents.bca_toolkit_manufactured_home_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-785,RES2.FEMA-BCA-Toolkit.contents.bca_toolkit_mobile_home_outside_caz_fema_fia_riverine_adjusted-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 66.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-786,RES2.FEMA-FIMA.contents.fema_fia_mobile_home_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 66.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-787,RES2.FEMA-FIMA.contents.fema_fia_mobile_home-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 66.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-788,RES2.FEMA-FIMA.contents.fema_fia_default_mobile_home-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 66.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-789,RES2.FEMA-FIMA.contents.fema_fia_default_mobile_home_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 66.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-790,RES2.FEMA-BCA-Toolkit.contents.mobile_home.no_basement.fema_fia_original_source-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 12.0, 66.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-791,RES3.USACE-NACCS.contents.naccs_1a_1_apartments_1_story_no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 3.5, 28.0, 45.0, 60.0, 70.5, 81.0, 90.5, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-792,RES3.USACE-NACCS.contents.naccs_1a_3_apartments_3_story_no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 15.0, 20.0, 25.0, 27.5, 30.0, 32.5, 35.0, 38.33333, 41.66667, 45.0, 48.33333, 51.66667, 55.0, 58.33333, 61.66667, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-793,RES3.USACE-NACCS.contents.naccs_4a_urban_high_rise-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.375, 0.5, 4.0, 5.0, 7.0, 7.5, 8.75, 10.0, 10.5, 11.0, 11.33333, 11.66667, 12.0, 12.33333, 12.66667, 13.0, 13.33333, 13.66667, 14.0, 14.0, 14.0, 14.0, 14.0, 14.0, 14.0, 14.0, 14.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-794,RES3.USACE-NACCS.contents.naccs_4b_beach_high_rise-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 4.5, 5.5, 6.25, 7.0, 7.75, 8.5, 8.66667, 8.83333, 9.0, 9.16667, 9.33333, 9.5, 9.66667, 9.83333, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-795,RES3.USACE-NACCS.contents.naccs_4b_beach_high_rise_waves-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.5, 21.0, 33.75, 52.5, 67.5, 82.5, 91.25, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-796,RES3.FEMA-BCA-Toolkit.contents.bca_toolkit_apartment_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-797,RES3.FEMA-BCA-Toolkit.contents.bca_toolkit_apartment_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-798,RES3.FEMA-BCA-Toolkit.contents.bca_toolkit_apartment_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-799,RES3.FEMA-BCA-Toolkit.contents.bca_toolkit_apartment_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-800,RES3.FEMA-BCA-Toolkit.contents.apartment.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-801,RES3.FEMA-BCA-Toolkit.contents.apartment.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-802,RES4.FEMA-BCA-Toolkit.contents.bca_toolkit_hotel_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.14286, 26.28571, 34.14286, 39.71429, 48.71429, 52.42857, 58.42857, 61.28571, 63.14286, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-803,RES4.FEMA-BCA-Toolkit.contents.bca_toolkit_hotel_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.14286, 26.28571, 34.14286, 39.71429, 48.71429, 52.42857, 58.42857, 61.28571, 63.14286, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-804,RES4.FEMA-BCA-Toolkit.contents.bca_toolkit_hotel_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.14286, 26.28571, 34.14286, 39.71429, 48.71429, 52.42857, 58.42857, 61.28571, 63.14286, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-805,RES4.FEMA-BCA-Toolkit.contents.bca_toolkit_hotel_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.14286, 26.28571, 34.14286, 39.71429, 48.71429, 52.42857, 58.42857, 61.28571, 63.14286, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-806,RES4.FEMA-BCA-Toolkit.contents.hotel.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 16.14286, 26.28571, 34.14286, 39.71429, 48.71429, 52.42857, 58.42857, 61.28571, 63.14286, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-807,RES4.FEMA-BCA-Toolkit.contents.hotel.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 16.14286, 26.28571, 34.14286, 39.71429, 48.71429, 52.42857, 58.42857, 61.28571, 63.14286, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-808,RES4.USACE-Sacramento.contents.usace_sacramento_hotel_full_service.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 23.0, 90.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-809,RES4.USACE-Sacramento.contents.usace_sacramento_hotel_full_service.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 20.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-810,RES4.USACE-Sacramento.contents.usace_sacramento_hotel_full_service.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 88.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-811,RES4.USACE-Sacramento.contents.usace_sacramento_hotel_full_service.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 42.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-812,RES5.FEMA-BCA-Toolkit.contents.bca_toolkit_correctional_facility_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.125, 21.25, 31.0, 44.125, 53.0, 62.25, 69.5, 77.5, 83.75, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-813,RES5.FEMA-BCA-Toolkit.contents.bca_toolkit_correctional_facility_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.125, 21.25, 31.0, 44.125, 53.0, 62.25, 69.5, 77.5, 83.75, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-814,RES5.FEMA-BCA-Toolkit.contents.bca_toolkit_correctional_facility_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.125, 21.25, 31.0, 44.125, 53.0, 62.25, 69.5, 77.5, 83.75, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-815,RES5.FEMA-BCA-Toolkit.contents.bca_toolkit_correctional_facility_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.125, 21.25, 31.0, 44.125, 53.0, 62.25, 69.5, 77.5, 83.75, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-816,RES5.FEMA-BCA-Toolkit.contents.correctional_facility.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 13.125, 21.25, 31.0, 44.125, 53.0, 62.25, 69.5, 77.5, 83.75, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-817,RES5.FEMA-BCA-Toolkit.contents.correctional_facility.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 13.125, 21.25, 31.0, 44.125, 53.0, 62.25, 69.5, 77.5, 83.75, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-818,RES1.FEMA-PFRA-2021.structural.sfh_1_story_crawlspace_without_openings_freshwater_moderate_velocity_flooding-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 5.41, 14.53, 29.50675, 37.45002, 42.55856, 48.09843, 52.6553, 58.05831, 61.17923, 64.72929, 68.04079, 69.90791, 72.11384, 73.95114, 75.85186, 77.67767, 79.25999, 80.59, 80.59, 80.59, 80.59, 80.59, 80.59, 80.59, 80.59, 80.59|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-819,RES1.FEMA-PFRA-2021.structural.sfh_1_story_crawlspace_without_openings_freshwater_high_velocity_flooding-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 10.52182, 22.12909, 41.19042, 51.30002, 57.8018, 64.85255, 70.6522, 77.52875, 81.50083, 86.0191, 90.23374, 92.61006, 95.41762, 97.756, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-820,RES1.FEMA-PFRA-2021.structural.sfh_2_story_crawlspace_without_openings_freshwater_inundation_flooding-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 5.27955, 11.49773, 21.70915, 27.12501, 30.60811, 34.38529, 37.49225, 41.17612, 43.30402, 45.72452, 47.98236, 49.25539, 50.75944, 52.01214, 53.30808, 54.55296, 55.63181, 56.53864, 56.53864, 56.53864, 56.53864, 56.53864, 56.53864, 56.53864, 56.53864, 56.53864|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-821,RES1.FEMA-PFRA-2021.structural.sfh_2_story_crawlspace_without_openings_freshwater_long_duration_inundation_flooding-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 5.3075, 12.1475, 23.38007, 29.33751, 33.16892, 37.32382, 40.74147, 44.79373, 47.13442, 49.79697, 52.2806, 53.68093, 55.33538, 56.71336, 58.13889, 59.50825, 60.69499, 61.6925, 61.6925, 61.6925, 61.6925, 61.6925, 61.6925, 61.6925, 61.6925, 61.6925|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-822,RES1.FEMA-PFRA-2021.structural.sfh_2_story_crawlspace_without_openings_freshwater_moderate_velocity_flooding-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 5.33545, 12.79727, 25.05098, 31.55001, 35.72973, 40.26235, 43.9907, 48.41134, 50.96482, 53.86942, 56.57883, 58.10647, 59.91133, 61.41457, 62.9697, 64.46355, 65.75817, 66.84636, 66.84636, 66.84636, 66.84636, 66.84636, 66.84636, 66.84636, 66.84636, 66.84636|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-823,RES1.FEMA-PFRA-2021.structural.sfh_2_story_crawlspace_without_openings_freshwater_high_velocity_flooding-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 10.41932, 19.74659, 35.06373, 43.18752, 48.41216, 54.07794, 58.73837, 64.26418, 67.45603, 71.08678, 74.47354, 76.38309, 78.63916, 80.51821, 82.46213, 84.32943, 85.94771, 87.30795, 87.30795, 87.30795, 87.30795, 87.30795, 87.30795, 87.30795, 87.30795, 87.30795|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-824,RES1.FEMA-PFRA-2021.structural.sfh_1_story_slab_on_grade_freshwater_inundation_flooding-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 6.16364, 19.77887, 27.00002, 31.64414, 36.68039, 40.823, 45.73482, 48.57202, 51.79936, 54.80981, 56.50719, 58.51258, 60.18286, 61.91078, 63.57061, 65.00908, 66.21818, 66.21818, 66.21818, 66.21818, 66.21818, 66.21818, 66.21818, 66.21818, 66.21818|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-825,RES1.FEMA-PFRA-2021.structural.sfh_1_story_slab_on_grade_freshwater_long_duration_inundation_flooding-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 7.03, 22.00675, 29.95002, 35.05856, 40.59843, 45.1553, 50.55831, 53.67923, 57.22929, 60.54079, 62.40791, 64.61384, 66.45114, 68.35186, 70.17767, 71.75999, 73.09, 73.09, 73.09, 73.09, 73.09, 73.09, 73.09, 73.09, 73.09|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-826,RES1.FEMA-PFRA-2021.structural.sfh_1_story_slab_on_grade_freshwater_moderate_velocity_flooding-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 7.03, 22.00675, 29.95002, 35.05856, 40.59843, 45.1553, 50.55831, 53.67923, 57.22929, 60.54079, 62.40791, 64.61384, 66.45114, 68.35186, 70.17767, 71.75999, 73.09, 73.09, 73.09, 73.09, 73.09, 73.09, 73.09, 73.09, 73.09|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-827,RES1.FEMA-PFRA-2021.structural.sfh_1_story_slab_on_grade_freshwater_high_velocity_flooding-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 9.62909, 28.69042, 38.80002, 45.3018, 52.35255, 58.1522, 65.02875, 69.00083, 73.5191, 77.73374, 80.11006, 82.91762, 85.256, 87.67509, 89.99885, 92.01271, 93.70545, 93.70545, 93.70545, 93.70545, 93.70545, 93.70545, 93.70545, 93.70545, 93.70545|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-828,RES1.FEMA-PFRA-2021.structural.sfh_2_story_slab_on_grade_freshwater_inundation_flooding-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 3.99773, 14.20915, 19.62501, 23.10811, 26.88529, 29.99225, 33.67612, 35.80402, 38.22452, 40.48236, 41.75539, 43.25944, 44.51214, 45.80808, 47.05296, 48.13181, 49.03864, 49.03864, 49.03864, 49.03864, 49.03864, 49.03864, 49.03864, 49.03864, 49.03864|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-829,RES1.FEMA-PFRA-2021.structural.sfh_2_story_slab_on_grade_freshwater_long_duration_inundation_flooding-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 4.6475, 15.88007, 21.83751, 25.66892, 29.82382, 33.24147, 37.29373, 39.63442, 42.29697, 44.7806, 46.18093, 47.83538, 49.21336, 50.63889, 52.00825, 53.19499, 54.1925, 54.1925, 54.1925, 54.1925, 54.1925, 54.1925, 54.1925, 54.1925, 54.1925|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-830,RES1.FEMA-PFRA-2021.structural.sfh_2_story_slab_on_grade_freshwater_moderate_velocity_flooding-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 5.29727, 17.55098, 24.05001, 28.22973, 32.76235, 36.4907, 40.91134, 43.46482, 46.36942, 49.07883, 50.60647, 52.41133, 53.91457, 55.4697, 56.96355, 58.25817, 59.34636, 59.34636, 59.34636, 59.34636, 59.34636, 59.34636, 59.34636, 59.34636, 59.34636|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-831,RES1.FEMA-PFRA-2021.structural.sfh_2_story_slab_on_grade_freshwater_high_velocity_flooding-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 7.24659, 22.56373, 30.68752, 35.91216, 41.57794, 46.23837, 51.76418, 54.95603, 58.58678, 61.97354, 63.88309, 66.13916, 68.01821, 69.96213, 71.82943, 73.44771, 74.80795, 74.80795, 74.80795, 74.80795, 74.80795, 74.80795, 74.80795, 74.80795, 74.80795|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-832,RES1.FEMA-PFRA-2021.structural.sfh_1_story_basement_freshwater_inundation_flooding-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 9.66667, 12.03939, 20.3303, 33.94553, 41.16668, 45.81081, 50.84706, 54.98967, 59.90149, 62.73869, 65.96603, 68.97648, 70.67385, 72.67925, 74.34952, 76.07745, 77.73727, 79.17575, 80.38485, 80.38485, 80.38485, 80.38485, 80.38485, 80.38485, 80.38485, 80.38485, 80.38485|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-833,RES1.FEMA-PFRA-2021.structural.sfh_1_story_basement_freshwater_long_duration_inundation_flooding-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 10.63333, 13.24333, 22.36333, 37.34009, 45.28335, 50.39189, 55.93177, 60.48863, 65.89164, 69.01256, 72.56263, 75.87413, 77.74124, 79.94718, 81.78448, 83.68519, 85.511, 87.09332, 88.42333, 88.42333, 88.42333, 88.42333, 88.42333, 88.42333, 88.42333, 88.42333, 88.42333|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-834,RES1.FEMA-PFRA-2021.structural.sfh_1_story_basement_freshwater_moderate_velocity_flooding-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 10.15, 12.64136, 21.34682, 35.64281, 43.22502, 48.10135, 53.38941, 57.73915, 62.89656, 65.87563, 69.26433, 72.4253, 74.20755, 76.31321, 78.067, 79.88132, 81.62414, 83.13453, 84.40409, 84.40409, 84.40409, 84.40409, 84.40409, 84.40409, 84.40409, 84.40409, 84.40409|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-835,RES1.FEMA-PFRA-2021.structural.sfh_1_story_basement_freshwater_high_velocity_flooding-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 13.05, 16.25318, 27.44591, 45.82647, 55.57502, 61.84459, 68.64353, 74.23605, 80.86701, 84.69723, 89.05413, 93.11825, 95.4097, 98.11699, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-836,RES1.FEMA-PFRA-2021.structural.sfh_2_story_basement_freshwater_inundation_flooding-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 8.66667, 9.94621, 16.16439, 26.37582, 31.79168, 35.27477, 39.05196, 42.15892, 45.84278, 47.97068, 50.39119, 52.64903, 53.92206, 55.4261, 56.67881, 57.97475, 59.21962, 60.29848, 61.2053, 61.2053, 61.2053, 61.2053, 61.2053, 61.2053, 61.2053, 61.2053, 61.2053|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-837,RES1.FEMA-PFRA-2021.structural.sfh_2_story_basement_freshwater_long_duration_inundation_flooding-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 9.53333, 10.94083, 17.78083, 29.0134, 34.97085, 38.80225, 42.95716, 46.37481, 50.42706, 52.76775, 55.4303, 57.91393, 59.31426, 60.96872, 62.34669, 63.77223, 65.14159, 66.32832, 67.32583, 67.32583, 67.32583, 67.32583, 67.32583, 67.32583, 67.32583, 67.32583, 67.32583|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-838,RES1.FEMA-PFRA-2021.structural.sfh_2_story_basement_freshwater_moderate_velocity_flooding-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 9.53333, 10.94083, 17.78083, 29.0134, 34.97085, 38.80225, 42.95716, 46.37481, 50.42706, 52.76775, 55.4303, 57.91393, 59.31426, 60.96872, 62.34669, 63.77223, 65.14159, 66.32832, 67.32583, 67.32583, 67.32583, 67.32583, 67.32583, 67.32583, 67.32583, 67.32583, 67.32583|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-839,RES1.FEMA-PFRA-2021.structural.sfh_2_story_basement_freshwater_high_velocity_flooding-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 12.39333, 14.22308, 23.11508, 37.71742, 45.4621, 50.44293, 55.8443, 60.28725, 65.55518, 68.59808, 72.0594, 75.28811, 77.10854, 79.25933, 81.0507, 82.90389, 84.68406, 86.22682, 87.52358, 87.52358, 87.52358, 87.52358, 87.52358, 87.52358, 87.52358, 87.52358, 87.52358|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-840,RES1.USACE-NACCS.structural.naccs_5a_single_story_residence_no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 1.0, 18.0, 28.0, 33.0, 37.5, 42.0, 48.5, 55.0, 58.33333, 61.66667, 65.0, 68.33333, 71.66667, 75.0, 78.33333, 81.66667, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-841,RES1.USACE-NACCS.structural.naccs_5a_single_story_residence_no_basement_wave_crawlspace-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 5.0, 10.0, 40.0, 70.0, 90.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-842,RES1.USACE-NACCS.structural.naccs_5b_two_story_residence_no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 5.0, 15.0, 20.0, 25.0, 27.5, 30.0, 40.0, 50.0, 53.33333, 56.66667, 60.0, 63.33333, 66.66667, 70.0, 73.33333, 76.66667, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-843,RES1.USACE-NACCS.structural.naccs_5b_two_story_residence_no_basement_wave_crawlspace-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 10.0, 20.0, 36.0, 50.0, 86.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-844,RES1.USACE-NACCS.structural.naccs_6a_single_story_residence_with_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 7.5, 10.0, 18.0, 30.0, 35.0, 40.0, 55.0, 70.0, 80.0, 90.0, 91.66667, 93.33333, 95.0, 96.66667, 98.33333, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-845,RES1.USACE-NACCS.structural.naccs_6b_two_story_residence_with_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 8.5, 10.0, 15.0, 25.0, 30.0, 35.0, 42.5, 50.0, 55.0, 60.0, 63.33333, 66.66667, 70.0, 73.33333, 76.66667, 80.0, 83.33333, 86.66667, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-846,RES1.USACE-NACCS.structural.naccs_7a_building_on_open_pile_foundation-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.75, 1.5, 5.0, 25.0, 40.0, 50.0, 55.0, 60.0, 67.5, 75.0, 76.66667, 78.33333, 80.0, 81.66667, 83.33333, 85.0, 86.66667, 88.33333, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-847,RES1.USACE-NACCS.structural.naccs_7a_building_on_open_pile_foundation_waves-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 7.0, 10.0, 50.0, 70.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-848,RES1.USACE-NACCS.structural.naccs_7b_building_on_pile_foundation_with_enclosure-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 8.0, 12.0, 20.0, 35.0, 40.0, 60.0, 65.0, 70.0, 75.0, 80.0, 86.66667, 93.33333, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-849,RES1.USACE-NACCS.structural.naccs_7b_building_on_pile_foundation_with_enclosure_waves-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 27.0, 40.0, 60.0, 85.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-850,RES1.USACE-Generic.structural.single_family_residential_structures.1_story_with_basements-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"5.2, 9.0, 13.8, 19.4, 25.5, 32.0, 38.7, 45.5, 52.2, 58.6, 64.5, 69.8, 74.2, 77.7, 80.1, 81.1, 81.1, 81.1, 81.1, 81.1, 81.1, 81.1, 81.1, 81.1, 81.1, 81.1, 81.1, 81.1, 81.1|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-851,RES1.USACE-Generic.structural.single_family_residential_structures.2_or_more_stories_with_basements-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"4.7, 7.2, 10.2, 13.9, 17.9, 22.3, 27.0, 31.9, 36.9, 41.9, 46.9, 51.8, 56.4, 60.8, 64.8, 68.4, 71.4, 73.7, 75.4, 76.4, 76.4, 76.4, 76.4, 76.4, 76.4, 76.4, 76.4, 76.4, 76.4|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-852,RES1.USACE-Generic.structural.single_family_residential_structures.split_level_with_basements-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"4.7, 10.4, 14.2, 18.5, 23.2, 28.2, 33.4, 38.6, 43.8, 48.8, 53.5, 57.8, 61.6, 64.8, 67.2, 68.8, 69.3, 69.3, 69.3, 69.3, 69.3, 69.3, 69.3, 69.3, 69.3, 69.3, 69.3, 69.3, 69.3|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-853,RES1.USACE-Generic.structural.single_family_residential_structures.1_story_with_no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 2.5, 13.4, 23.3, 32.1, 40.1, 47.1, 53.2, 58.6, 63.2, 67.2, 70.5, 73.2, 75.4, 77.2, 78.5, 79.5, 80.2, 80.7, 80.7, 80.7, 80.7, 80.7, 80.7, 80.7, 80.7, 80.7|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-854,RES1.USACE-Generic.structural.single_family_residential_structures.2_or_more_stories_with_no_basements-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 3.0, 9.3, 15.2, 20.9, 26.3, 31.4, 36.2, 40.7, 44.9, 48.8, 52.4, 55.7, 58.7, 61.4, 63.8, 65.9, 67.7, 69.2, 69.2, 69.2, 69.2, 69.2, 69.2, 69.2, 69.2, 69.2|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-855,RES1.USACE-Generic.structural.single_family_residential_structures.split_level_with_no_basements-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 6.4, 7.2, 9.4, 12.9, 17.4, 22.8, 28.9, 35.5, 42.3, 49.2, 56.1, 62.6, 68.6, 73.9, 78.4, 81.7, 83.8, 84.4, 84.4, 84.4, 84.4, 84.4, 84.4, 84.4, 84.4, 84.4|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-856,RES2.FEMA-FIMA.structural.fema_fia_mobile_home_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 8.0, 44.0, 63.0, 73.0, 78.0, 80.0, 81.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-857,RES2.FEMA-FIMA.structural.fema_fia_mobile_home-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 8.0, 44.0, 63.0, 73.0, 78.0, 80.0, 81.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-858,RES2.FEMA-FIMA.structural.fema_fia_default_mobile_home-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 8.0, 44.0, 63.0, 73.0, 78.0, 80.0, 81.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-859,RES2.FEMA-FIMA.structural.fema_fia_default_mobile_home_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 8.0, 44.0, 63.0, 73.0, 78.0, 80.0, 81.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-860,RES2.FEMA-BCA-Toolkit.structural.bca_toolkit_manufactured_home_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 15.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-861,RES2.FEMA-BCA-Toolkit.structural.bca_toolkit_mobile_home_outside_caz_fema_fia_riverine_adjusted-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 8.0, 44.0, 63.0, 73.0, 78.0, 80.0, 81.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-862,RES2.USACE-Wilmington.structural.mobile_home.usace_wilmington_mobile_home-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 2.0, 3.0, 8.0, 27.2, 41.7, 60.0, 93.0, 96.0, 96.36, 96.72, 97.08, 97.44, 97.8, 98.0, 98.17, 98.33, 98.5, 98.67, 98.83, 98.83, 98.83, 98.83, 98.83, 98.83, 98.83, 98.83, 98.83|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-863,RES3.Coastal-Resilience-Center.structural.one_story_residential_building_on_a_slab_on_grade_foundation-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 24.24578, 39.6524, 46.0891, 51.15489, 56.29364, 61.60844, 67.16664, 72.89188, 78.47971, 83.55899, 87.86561, 91.30374, 93.91655, 95.82575, 97.17853, 98.11447, 98.75031, 99.17637, 99.45901, 99.64519, 99.76726, 99.8471, 99.89927, 99.93339|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-864,RES3.Coastal-Resilience-Center.structural.two_story_residential_building_on_a_slab_on_grade_foundation-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 19.92181, 28.75192, 31.4835, 32.64505, 33.37454, 34.47743, 36.80944, 40.92171, 46.73971, 53.66177, 60.90508, 67.80474, 73.94418, 79.14829, 83.41429, 86.83566, 89.54434, 91.67543, 93.34967, 94.66733, 95.70818, 96.53419, 97.19288, 97.72056|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-865,RES3.FEMA-BCA-Toolkit.structural.apartment.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 17.4026, 21.2987, 26.22078, 29.58442, 32.06494, 34.12987, 37.24675, 38.90909, 41.05195, 41.05195, 41.05195, 41.05195, 41.05195, 41.05195, 41.05195, 41.05195, 41.05195, 41.05195, 41.05195, 41.05195, 41.05195, 41.05195, 41.05195|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-866,RES3.FEMA-BCA-Toolkit.structural.apartment.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.47619, 0.47619, 0.95238, 12.52381, 20.38095, 25.90476, 31.66667, 33.52381, 37.47619, 39.42857, 42.19048, 45.14286, 46.61905, 46.61905, 46.61905, 46.61905, 46.61905, 46.61905, 46.61905, 46.61905, 46.61905, 46.61905, 46.61905, 46.61905, 46.61905, 46.61905, 46.61905|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-867,RES3.FEMA-CPFRA-2021.structural.low_rise_apartment_shallow_foundation_freshwater_adjusted-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 9.9, 15.66, 19.17, 23.58, 26.64, 28.89, 30.69, 33.48, 35.01, 36.99, 38.97, 40.95, 42.93, 44.91, 46.89, 48.87, 48.87, 48.87, 48.87, 48.87, 48.87, 48.87, 48.87, 48.87|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-868,RES3.FEMA-CPFRA-2021.structural.low_rise_apartment_shallow_foundation_saltwater_adjusted-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 12.1, 19.14, 23.43, 28.82, 32.56, 35.31, 37.51, 40.92, 42.79, 45.21, 47.63, 50.05, 52.47, 54.89, 57.31, 59.73, 59.73, 59.73, 59.73, 59.73, 59.73, 59.73, 59.73, 59.73|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-869,RES3.FEMA-CPFRA-2021.structural.low_rise_apartment_shallow_foundation_moderate_waves_adjusted-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 14.3, 22.62, 27.69, 34.06, 38.48, 41.73, 44.33, 48.36, 50.57, 53.43, 56.29, 59.15, 62.01, 64.87, 67.73, 70.59, 70.59, 70.59, 70.59, 70.59, 70.59, 70.59, 70.59, 70.59|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-870,RES3.FEMA-CPFRA-2021.structural.low_rise_apartment_shallow_foundation_high_waves_adjusted_source_naccs_1a_1-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 3.3, 22.0, 33.0, 42.35, 49.775, 57.2, 60.775, 64.35, 67.925, 71.5, 75.075, 78.65, 82.225, 85.8, 89.375, 92.95, 96.525, 96.525, 96.525, 96.525, 96.525, 96.525, 96.525, 96.525, 96.525|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-871,RES3.FEMA-CPFRA-2021.structural.low_rise_apartment_deep_foundation_freshwater_adjusted-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 9.9, 15.66, 19.17, 23.58, 26.64, 28.89, 30.69, 33.48, 35.01, 36.99, 38.97, 40.95, 42.93, 44.91, 46.89, 48.87, 48.87, 48.87, 48.87, 48.87, 48.87, 48.87, 48.87, 48.87|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-872,RES3.FEMA-CPFRA-2021.structural.low_rise_apartment_deep_foundation_saltwater_adjusted-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 12.1, 19.14, 23.43, 28.82, 32.56, 35.31, 37.51, 40.92, 42.79, 45.21, 47.63, 50.05, 52.47, 54.89, 57.31, 59.73, 59.73, 59.73, 59.73, 59.73, 59.73, 59.73, 59.73, 59.73|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-873,RES3.FEMA-CPFRA-2021.structural.low_rise_apartment_deep_foundation_moderate_waves_adjusted-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 14.3, 22.62, 27.69, 34.06, 38.48, 41.73, 44.33, 48.36, 50.57, 53.43, 56.29, 59.15, 62.01, 64.87, 67.73, 70.59, 70.59, 70.59, 70.59, 70.59, 70.59, 70.59, 70.59, 70.59|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-874,RES3.FEMA-CPFRA-2021.structural.low_rise_apartment_deep_foundation_high_waves_adjusted_source_naccs_1a_1-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.85, 19.0, 28.5, 36.575, 42.9875, 49.4, 52.4875, 55.575, 58.6625, 61.75, 64.8375, 67.925, 71.0125, 74.1, 77.1875, 80.275, 83.3625, 83.3625, 83.3625, 83.3625, 83.3625, 83.3625, 83.3625, 83.3625, 83.3625|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-875,RES3.FEMA-CPFRA-2021.structural.low_rise_apartment_basement_foundation_freshwater_adjusted-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"12.0, 12.0, 12.0, 12.0, 12.0, 21.9, 27.66, 31.17, 35.58, 38.64, 40.89, 42.69, 45.48, 47.01, 48.99, 50.97, 52.95, 54.93, 56.91, 58.89, 60.87, 60.87, 60.87, 60.87, 60.87, 60.87, 60.87, 60.87, 60.87|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-876,RES3.FEMA-CPFRA-2021.structural.low_rise_apartment_basement_foundation_saltwater_adjusted-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"12.0, 12.0, 12.0, 12.0, 12.0, 24.1, 31.14, 35.43, 40.82, 44.56, 47.31, 49.51, 52.92, 54.79, 57.21, 59.63, 62.05, 64.47, 66.89, 69.31, 71.73, 71.73, 71.73, 71.73, 71.73, 71.73, 71.73, 71.73, 71.73|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-877,RES3.FEMA-CPFRA-2021.structural.low_rise_apartment_basement_foundation_moderate_waves_adjusted-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"12.0, 12.0, 12.0, 12.0, 12.0, 26.3, 34.62, 39.69, 46.06, 50.48, 53.73, 56.33, 60.36, 62.57, 65.43, 68.29, 71.15, 74.01, 76.87, 79.73, 82.59, 82.59, 82.59, 82.59, 82.59, 82.59, 82.59, 82.59, 82.59|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-878,RES3.FEMA-CPFRA-2021.structural.low_rise_apartment_basement_foundation_high_waves_adjusted_source_naccs_1a_1-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"12.0, 12.0, 12.0, 12.0, 14.61, 29.4, 38.1, 45.495, 51.3675, 57.24, 60.0675, 62.895, 65.7225, 68.55, 71.3775, 74.205, 77.0325, 79.86, 82.6875, 85.515, 88.3425, 88.3425, 88.3425, 88.3425, 88.3425, 88.3425, 88.3425, 88.3425, 88.3425|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-879,RES3.FEMA-CPFRA-2021.structural.low_rise_apartment_basement_foundation_with_elevator_freshwater_adjusted-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"15.0, 15.0, 15.0, 15.0, 15.0, 24.9, 30.66, 34.17, 38.58, 41.64, 43.89, 45.69, 48.48, 50.01, 51.99, 53.97, 55.95, 57.93, 59.91, 61.89, 63.87, 63.87, 63.87, 63.87, 63.87, 63.87, 63.87, 63.87, 63.87|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-880,RES3.FEMA-CPFRA-2021.structural.low_rise_apartment_basement_foundation_with_elevator_saltwater_adjusted-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"15.0, 15.0, 15.0, 15.0, 15.0, 27.1, 34.14, 38.43, 43.82, 47.56, 50.31, 52.51, 55.92, 57.79, 60.21, 62.63, 65.05, 67.47, 69.89, 72.31, 74.73, 74.73, 74.73, 74.73, 74.73, 74.73, 74.73, 74.73, 74.73|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-881,RES3.FEMA-CPFRA-2021.structural.low_rise_apartment_basement_foundation_with_elevator_moderate_waves_adjusted-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"15.0, 15.0, 15.0, 15.0, 15.0, 29.3, 37.62, 42.69, 49.06, 53.48, 56.73, 59.33, 63.36, 65.57, 68.43, 71.29, 74.15, 77.01, 79.87, 82.73, 85.59, 85.59, 85.59, 85.59, 85.59, 85.59, 85.59, 85.59, 85.59|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-882,RES3.FEMA-CPFRA-2021.structural.low_rise_apartment_basement_foundation_with_elevator_high_waves_adjusted_source_naccs_1a_1-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"15.0, 15.0, 15.0, 15.0, 17.61, 32.4, 41.1, 48.495, 54.3675, 60.24, 63.0675, 65.895, 68.7225, 71.55, 74.3775, 77.205, 80.0325, 82.86, 85.6875, 88.515, 91.3425, 91.3425, 91.3425, 91.3425, 91.3425, 91.3425, 91.3425, 91.3425, 91.3425|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-883,RES3.USACE-NACCS.structural.naccs_1a_1_apartments_1_story_no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 25.0, 35.0, 43.0, 51.5, 60.0, 63.75, 67.5, 71.25, 75.0, 78.75, 82.5, 86.25, 90.0, 93.75, 97.5, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-884,RES3.USACE-NACCS.structural.naccs_1a_3_apartments_3_story_no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 5.0, 20.0, 28.0, 28.0, 33.0, 38.0, 42.0, 46.0, 47.33333, 48.66667, 50.0, 51.33333, 52.66667, 54.0, 55.33333, 56.66667, 58.0, 58.0, 58.0, 58.0, 58.0, 58.0, 58.0, 58.0, 58.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-885,RES3.USACE-NACCS.structural.naccs_4a_urban_high_rise-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 11.0, 13.0, 13.75, 15.5, 17.5, 19.0, 20.25, 21.5, 22.0, 22.5, 22.83333, 23.16667, 23.5, 23.83333, 24.16667, 24.5, 24.83333, 25.16667, 25.5, 25.5, 25.5, 25.5, 25.5, 25.5, 25.5, 25.5, 25.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-886,RES3.USACE-NACCS.structural.naccs_4b_beach_high_rise-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 4.5, 7.0, 7.75, 9.625, 11.5, 12.125, 12.75, 14.0, 15.25, 16.5, 17.75, 19.0, 20.25, 21.5, 22.75, 24.0, 24.0, 24.0, 24.0, 24.0, 24.0, 24.0, 24.0, 24.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-887,RES3.USACE-NACCS.structural.naccs_4b_beach_high_rise_waves-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 1.5, 5.0, 7.5, 11.0, 12.5, 14.0, 15.0, 16.0, 17.16667, 18.33333, 19.5, 20.66667, 21.83333, 23.0, 24.16667, 25.33333, 26.5, 26.5, 26.5, 26.5, 26.5, 26.5, 26.5, 26.5, 26.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-888,RES4.FEMA-BCA-Toolkit.structural.hotel.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.14286, 10.17143, 15.28571, 19.22857, 23.6, 27.82857, 29.8, 32.51429, 35.6, 37.68571, 39.77143, 39.77143, 39.77143, 39.77143, 39.77143, 39.77143, 39.77143, 39.77143, 39.77143, 39.77143, 39.77143, 39.77143, 39.77143, 39.77143, 39.77143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-889,RES4.FEMA-BCA-Toolkit.structural.hotel.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.53571, 0.53571, 1.25, 11.67857, 18.10714, 23.89286, 29.07143, 31.82143, 35.32143, 38.07143, 40.75, 44.39286, 45.71429, 45.71429, 45.71429, 45.71429, 45.71429, 45.71429, 45.71429, 45.71429, 45.71429, 45.71429, 45.71429, 45.71429, 45.71429, 45.71429, 45.71429|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-890,RES5.FEMA-BCA-Toolkit.structural.correctional_facility.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.41223, 0.41223, 0.41223, 10.27052, 18.60638, 22.77964, 31.21695, 34.39666, 40.15957, 46.2481, 52.77432, 55.40426, 58.3598, 58.3598, 58.3598, 58.3598, 58.3598, 58.3598, 58.3598, 58.3598, 58.3598, 58.3598, 58.3598, 58.3598, 58.3598, 58.3598, 58.3598|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-891,RES5.FEMA-BCA-Toolkit.structural.correctional_facility.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.64992, 0.64992, 0.84925, 10.84053, 19.96512, 24.84551, 33.96138, 36.49336, 43.17774, 49.59344, 56.28821, 59.54817, 62.30025, 62.30025, 62.30025, 62.30025, 62.30025, 62.30025, 62.30025, 62.30025, 62.30025, 62.30025, 62.30025, 62.30025, 62.30025, 62.30025, 62.30025|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-0,RES1.FIA.contents.one_floor.no_basement.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 12.0, 25.0, 35.0, 36.0, 38.0, 41.0, 45.0, 50.0, 55.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-1,RES1.FIA.contents.one_floor.with_basement.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 7.0, 8.0, 16.0, 20.0, 22.0, 28.0, 33.0, 39.0, 44.0, 50.0, 55.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-2,RES1.FIA.contents.two_floors.no_basement.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 8.0, 11.0, 19.0, 23.0, 28.0, 33.0, 39.0, 44.0, 50.0, 54.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-3,RES1.FIA-Modified.contents.two_floors.with_basement.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 7.0, 8.0, 16.0, 18.0, 25.0, 29.0, 33.0, 37.0, 42.0, 46.0, 52.0, 55.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-4,RES1.FIA-Modified.contents.three_or_more_floors.no_basement.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 7.0, 15.0, 21.0, 22.0, 23.0, 25.0, 27.0, 30.0, 35.0, 40.0, 43.0, 45.0, 48.0, 50.0, 52.0, 54.0, 56.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-5,RES1.FIA-Modified.contents.three_or_more_floors.with_basement.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 7.0, 8.0, 15.0, 22.0, 27.0, 28.0, 29.0, 30.0, 32.0, 35.0, 39.0, 43.0, 46.0, 47.0, 50.0, 52.0, 53.0, 55.0, 57.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-6,RES1.FIA.contents.split_level.no_basement.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 8.0, 11.0, 19.0, 23.0, 28.0, 33.0, 39.0, 44.0, 50.0, 54.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-7,RES1.FIA-Modified.contents.split_level.with_basement.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 7.0, 8.0, 16.0, 18.0, 25.0, 29.0, 33.0, 37.0, 42.0, 46.0, 52.0, 55.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-8,RES1.FIA.contents.one_floor.no_basement.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 17.0, 23.0, 29.0, 35.0, 40.0, 45.0, 50.0, 55.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-9,RES1.FIA.contents.one_floor.with_basement.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 7.0, 8.0, 15.0, 20.0, 22.0, 28.0, 33.0, 39.0, 44.0, 50.0, 55.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-10,RES1.FIA.contents.two_floors.no_basement.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 7.0, 9.0, 17.0, 22.0, 28.0, 33.0, 39.0, 44.0, 50.0, 54.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-11,RES1.FIA-Modified.contents.two_floors.with_basement.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 7.0, 8.0, 15.0, 17.0, 23.0, 28.0, 33.0, 37.0, 42.0, 46.0, 52.0, 55.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-12,RES1.FIA-Modified.contents.three_or_more_floors.no_basement.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 6.0, 11.0, 15.0, 19.0, 23.0, 26.0, 29.0, 32.0, 35.0, 41.0, 43.0, 45.0, 48.0, 50.0, 52.0, 54.0, 56.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-13,RES1.FIA-Modified.contents.three_or_more_floors.with_basement.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 7.0, 8.0, 14.0, 18.0, 22.0, 25.0, 29.0, 31.0, 34.0, 36.0, 39.0, 44.0, 46.0, 47.0, 50.0, 52.0, 53.0, 55.0, 57.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-14,RES1.FIA.contents.split_level.no_basement.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 7.0, 9.0, 17.0, 22.0, 28.0, 33.0, 39.0, 44.0, 50.0, 54.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-15,RES1.FIA-Modified.contents.split_level.with_basement.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 7.0, 8.0, 15.0, 17.0, 23.0, 28.0, 33.0, 37.0, 42.0, 46.0, 52.0, 55.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-16,RES1.USACE_IWR.contents.one_story.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 4.0, 16.0, 26.0, 36.0, 44.0, 52.0, 58.0, 64.0, 68.0, 72.0, 74.0, 76.0, 78.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-17,RES1.USACE_IWR.contents.two_or_more_stories.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 2.0, 10.0, 18.0, 24.0, 32.0, 38.0, 42.0, 48.0, 52.0, 56.0, 60.0, 64.0, 66.0, 70.0, 72.0, 72.0, 74.0, 74.0, 76.0, 76.0, 78.0, 78.0, 80.0, 80.0, 82.0, 82.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-18,RES1.USACE_IWR.contents.split_level.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 4.0, 6.0, 10.0, 16.0, 22.0, 30.0, 40.0, 50.0, 62.0, 72.0, 82.0, 92.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-19,RES1.USACE_Chicago.contents.one_story.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 12.0, 24.0, 33.0, 35.0, 37.0, 41.0, 45.0, 50.0, 55.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-20,RES1.USACE_Chicago.contents.one_story.with_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 6.0, 7.0, 8.0, 15.0, 19.0, 22.0, 28.0, 33.0, 39.0, 43.0, 49.0, 54.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-21,RES1.USACE_Chicago.contents.split_level.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 19.0, 32.0, 41.0, 47.0, 51.0, 53.0, 55.0, 56.0, 62.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-22,RES1.USACE_Chicago.contents.split_level.with_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 10.0, 15.0, 18.0, 31.0, 44.0, 52.0, 58.0, 61.0, 63.0, 64.0, 66.0, 69.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-23,RES1.USACE_Chicago.contents.two_story.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 8.0, 11.0, 18.0, 23.0, 28.0, 33.0, 39.0, 44.0, 50.0, 54.0, 58.0, 62.0, 66.0, 70.0, 74.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-24,RES1.USACE_Chicago.contents.two_story.with_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 6.0, 9.0, 11.0, 17.0, 22.0, 28.0, 33.0, 39.0, 44.0, 49.0, 55.0, 61.0, 64.0, 71.0, 76.0, 78.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-25,RES1.USACE_Galveston.contents.one_&_1/2_story.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 22.0, 36.0, 45.0, 57.0, 66.0, 71.0, 77.0, 79.0, 82.0, 84.0, 86.0, 87.0, 89.0, 90.0, 91.0, 92.0, 92.0, 92.0, 93.0, 93.0, 93.0, 93.0, 93.0, 93.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-26,RES1.USACE_Galveston.contents.one_story.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 8.0, 42.0, 60.0, 71.0, 77.0, 82.0, 85.0, 86.0, 87.0, 88.0, 88.0, 88.0, 89.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-27,RES1.USACE_Galveston.contents.two_story.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 4.0, 24.0, 34.0, 40.0, 47.0, 53.0, 56.0, 58.0, 58.0, 58.0, 61.0, 66.0, 68.0, 76.0, 81.0, 86.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-28,RES1.USACE_New-Orleans.contents.one_story.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 63.0, 82.0, 85.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-29,RES1.USACE_New-Orleans.contents.one_story.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-30,RES1.USACE_New-Orleans.contents.two_story.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 37.0, 51.0, 51.0, 55.0, 55.0, 55.0, 55.0, 55.0, 73.0, 81.0, 87.0, 90.0, 93.0, 93.0, 93.0, 93.0, 93.0, 93.0, 93.0, 93.0, 93.0, 93.0, 93.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-31,RES1.USACE_New-Orleans.contents.two_story.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-32,RES1.USACE_St-Paul.contents.one_story-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 44.0, 54.0, 63.0, 68.0, 73.0, 75.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-33,RES1.USACE_St-Paul.contents.two_story-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 44.0, 54.0, 63.0, 68.0, 73.0, 75.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-34,RES1.USACE_Wilmington.contents.one_&_1/2_story.pile_foundation-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"6.0, 7.0, 8.0, 9.0, 9.0, 21.0, 31.0, 43.0, 54.0, 67.0, 70.0, 73.0, 76.0, 78.0, 81.0, 82.0, 84.0, 85.0, 86.0, 87.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-35,RES1.USACE_Wilmington.contents.one_&_1/2_story-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 9.0, 21.0, 31.0, 37.0, 43.0, 51.0, 57.0, 63.0, 68.0, 74.0, 80.0, 81.0, 83.0, 84.0, 86.0, 87.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-36,RES1.USACE_Wilmington.contents.one_&_1/2_story_with_1/2_living_area_below-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 6.0, 10.0, 15.0, 18.0, 21.0, 23.0, 24.0, 28.0, 34.0, 44.0, 54.0, 63.0, 73.0, 76.0, 79.0, 82.0, 85.0, 86.0, 87.0, 88.0, 89.0, 90.0, 91.0, 92.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-37,RES1.USACE_Wilmington.contents.one_story.pile_foundation-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"9.0, 10.0, 13.0, 13.0, 14.0, 26.0, 38.0, 52.0, 64.0, 78.0, 81.0, 85.0, 88.0, 91.0, 95.0, 96.0, 97.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-38,RES1.USACE_Wilmington.contents.one_story-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 11.0, 24.0, 36.0, 43.0, 46.0, 52.0, 59.0, 66.0, 73.0, 80.0, 87.0, 88.0, 90.0, 92.0, 94.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-39,RES1.USACE_Wilmington.contents.one_story_with_1/2_living_area_below-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 11.0, 16.0, 20.0, 24.0, 28.0, 30.0, 32.0, 38.0, 46.0, 54.0, 63.0, 72.0, 82.0, 85.0, 89.0, 92.0, 95.0, 96.0, 97.0, 98.0, 98.0, 99.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-40,RES1.USACE_Wilmington.contents.one_story_with_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"10.0, 12.0, 13.0, 13.0, 20.0, 34.0, 48.0, 52.0, 64.0, 78.0, 81.0, 85.0, 88.0, 91.0, 95.0, 96.0, 98.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-41,RES1.USACE_Wilmington.contents.split_level-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 3.0, 15.0, 21.0, 25.0, 32.0, 44.0, 50.0, 55.0, 61.0, 66.0, 72.0, 75.0, 79.0, 83.0, 87.0, 91.0, 94.0, 94.0, 95.0, 96.0, 97.0, 98.0, 99.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-42,RES1.USACE_Wilmington.contents.two_story.pile_foundation-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"6.0, 7.0, 8.0, 9.0, 10.0, 19.0, 29.0, 38.0, 45.0, 53.0, 55.0, 57.0, 59.0, 61.0, 63.0, 67.0, 71.0, 75.0, 78.0, 82.0, 86.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-43,RES1.USACE_Wilmington.contents.two_story-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 7.0, 18.0, 26.0, 30.0, 40.0, 50.0, 52.0, 53.0, 55.0, 56.0, 58.0, 63.0, 68.0, 72.0, 77.0, 82.0, 86.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-44,RES1.USACE_Wilmington.contents.two_story_with_1/2_living_area_below-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 10.0, 13.0, 15.0, 18.0, 19.0, 21.0, 25.0, 33.0, 40.0, 47.0, 54.0, 56.0, 59.0, 62.0, 65.0, 67.0, 71.0, 75.0, 79.0, 83.0, 87.0, 91.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-45,RES2.FIA.contents.mobile_home.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 3.0, 27.0, 49.0, 64.0, 70.0, 76.0, 78.0, 79.0, 81.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-46,RES2.FIA.contents.mobile_home.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 3.0, 27.0, 50.0, 65.0, 71.0, 76.0, 78.0, 79.0, 81.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-47,RES2.USACE_Chicago.contents.mobile_home-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 3.0, 27.0, 49.0, 64.0, 70.0, 76.0, 78.0, 79.0, 81.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-48,RES2.USACE_Galveston.contents.mobile_home-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 3.0, 23.0, 36.0, 43.0, 55.0, 66.0, 78.0, 86.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-49,RES2.USACE_New-Orleans.contents.mobile_home.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 39.0, 54.0, 75.0, 77.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-50,RES2.USACE_New-Orleans.contents.mobile_home.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-51,RES2.USACE_Wilmington.contents.mobile_home-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 6.0, 22.0, 32.0, 37.0, 50.0, 63.0, 74.0, 82.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-52,RES3.USACE_Chicago.contents.apartment_unit_grade-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 12.0, 24.0, 33.0, 35.0, 37.0, 41.0, 45.0, 50.0, 55.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-53,RES3.USACE_Chicago.contents.apartment_unit_sub_grade-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 6.0, 7.0, 8.0, 15.0, 19.0, 22.0, 28.0, 33.0, 39.0, 43.0, 49.0, 54.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-54,RES3.USACE_Galveston.contents.apartment.living_area_on_one_floor-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 6.0, 34.0, 44.0, 55.0, 67.0, 77.0, 87.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-55,RES3.USACE_Galveston.contents.condominium.living_area_on_multiple_floors-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 4.0, 24.0, 34.0, 40.0, 47.0, 53.0, 56.0, 58.0, 58.0, 58.0, 61.0, 66.0, 68.0, 76.0, 81.0, 86.0, 91.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-56,RES4.USACE_Galveston.contents.average_hotel/motel.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 19.0, 25.0, 29.0, 34.0, 39.0, 44.0, 49.0, 56.0, 65.0, 74.0, 82.0, 88.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-57,RES4.USACE_Galveston.contents.hotel.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 22.0, 28.0, 33.0, 37.0, 41.0, 44.0, 46.0, 49.0, 54.0, 60.0, 69.0, 81.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-58,RES4.USACE_Galveston.contents.motel_unit.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 16.0, 21.0, 25.0, 30.0, 36.0, 43.0, 52.0, 63.0, 76.0, 88.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-59,RES5.USACE_Galveston.contents.average_institutional_dormitory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 38.0, 60.0, 73.0, 81.0, 88.0, 94.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-60,RES6.USACE_Galveston.contents.nursing_home.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 38.0, 60.0, 73.0, 81.0, 88.0, 94.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-61,COM1.USACE_Galveston.contents.average_retail_trade_equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 26.0, 42.0, 56.0, 68.0, 78.0, 83.0, 85.0, 87.0, 88.0, 89.0, 90.0, 91.0, 92.0, 92.0, 92.0, 93.0, 93.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-62,COM1.USACE_Galveston.contents.antique.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 20.0, 75.0, 78.0, 85.0, 90.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-63,COM1.USACE_Galveston.contents.appliance_sales.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 16.0, 28.0, 58.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-64,COM1.USACE_Galveston.contents.appliance_sales.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 83.0, 91.0, 94.0, 95.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-65,COM1.USACE_Galveston.contents.large_auto_dealer.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 20.0, 50.0, 90.0, 95.0, 98.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-66,COM1.USACE_Galveston.contents.bait_stand.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 7.0, 11.0, 16.0, 22.0, 29.0, 36.0, 44.0, 52.0, 60.0, 69.0, 79.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-67,COM1.USACE_Galveston.contents.bakery.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 14.0, 35.0, 70.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-68,COM1.USACE_Galveston.contents.bakery.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 55.0, 65.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-69,COM1.USACE_Galveston.contents.boat_sales/service.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 41.0, 65.0, 83.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-70,COM1.USACE_Galveston.contents.boat_sales/service.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 13.0, 24.0, 43.0, 82.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-71,COM1.USACE_Galveston.contents.book_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 14.0, 21.0, 27.0, 35.0, 42.0, 49.0, 57.0, 65.0, 73.0, 82.0, 92.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-72,COM1.USACE_Galveston.contents.camera_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 33.0, 65.0, 88.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-73,COM1.USACE_Galveston.contents.carpet_and_paint_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 60.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-74,COM1.USACE_Galveston.contents.carpet_and_paint_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 40.0, 60.0, 80.0, 95.0, 97.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-75,COM1.USACE_Galveston.contents.mens_clothing.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 41.0, 60.0, 78.0, 94.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-76,COM1.USACE_Galveston.contents.mens_clothing.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 6.0, 37.0, 50.0, 75.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-77,COM1.USACE_Galveston.contents.crafts.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-78,COM1.USACE_Galveston.contents.crafts.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 30.0, 50.0, 70.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-79,COM1.USACE_Galveston.contents.chain_drug_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-80,COM1.USACE_Galveston.contents.fabric_store.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 30.0, 40.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-81,COM1.USACE_Galveston.contents.fabric_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 30.0, 50.0, 75.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-82,COM1.USACE_Galveston.contents.feed_store.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-83,COM1.USACE_Galveston.contents.feed_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 15.0, 15.0, 15.0, 25.0, 25.0, 25.0, 25.0, 50.0, 50.0, 50.0, 50.0, 75.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-84,COM1.USACE_Galveston.contents.florist.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 49.0, 60.0, 75.0, 78.0, 79.0, 82.0, 85.0, 89.0, 93.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-85,COM1.USACE_Galveston.contents.florist.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 85.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-86,COM1.USACE_Galveston.contents.fruit_stand.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 80.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-87,COM1.USACE_Galveston.contents.large_furniture_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 20.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-88,COM1.USACE_Galveston.contents.gas/butane_supply.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 46.0, 65.0, 75.0, 81.0, 86.0, 90.0, 94.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-89,COM1.USACE_Galveston.contents.gift_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 54.0, 63.0, 75.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-90,COM1.USACE_Galveston.contents.greenhouse.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 34.0, 50.0, 66.0, 80.0, 92.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-91,COM1.USACE_Galveston.contents.greenhouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 66.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-92,COM1.USACE_Galveston.contents.small_grocery.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 20.0, 20.0, 20.0, 20.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-93,COM1.USACE_Galveston.contents.small_grocery.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 35.0, 50.0, 65.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-94,COM1.USACE_Galveston.contents.medium_grocery.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 4.0, 80.0, 90.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-95,COM1.USACE_Galveston.contents.medium_grocery.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 4.0, 22.0, 44.0, 74.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-96,COM1.USACE_Galveston.contents.gun_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 30.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-97,COM1.USACE_Galveston.contents.gun_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 39.0, 58.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-98,COM1.USACE_Galveston.contents.hardware.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 12.0, 20.0, 29.0, 40.0, 50.0, 59.0, 67.0, 75.0, 84.0, 92.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-99,COM1.USACE_Galveston.contents.hardware.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 8.0, 33.0, 52.0, 70.0, 75.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-100,COM1.USACE_Galveston.contents.hobby_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 87.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-101,COM1.USACE_Galveston.contents.hobby_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 49.0, 64.0, 77.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-102,COM1.USACE_Galveston.contents.lawnmower.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 24.0, 46.0, 57.0, 65.0, 72.0, 79.0, 86.0, 91.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-103,COM1.USACE_Galveston.contents.lawnmower.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-104,COM1.USACE_Galveston.contents.liquor_store.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 4.0, 9.0, 16.0, 84.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-105,COM1.USACE_Galveston.contents.liquor_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 40.0, 60.0, 81.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-106,COM1.USACE_Galveston.contents.meat_market.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 78.0, 81.0, 84.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-107,COM1.USACE_Galveston.contents.meat_market.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-108,COM1.USACE_Galveston.contents.motorcycle_dealer.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 60.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-109,COM1.USACE_Galveston.contents.motorcycle_dealer.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 45.0, 65.0, 85.0, 85.0, 85.0, 85.0, 85.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-110,COM1.USACE_Galveston.contents.music_center.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 52.0, 72.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-111,COM1.USACE_Galveston.contents.music_center.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 66.0, 72.0, 75.0, 80.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-112,COM1.USACE_Galveston.contents.plant_nursery.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 4.0, 8.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-113,COM1.USACE_Galveston.contents.plant_nursery.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 20.0, 79.0, 88.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-114,COM1.USACE_Galveston.contents.paint_store.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 25.0, 30.0, 35.0, 40.0, 45.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-115,COM1.USACE_Galveston.contents.paint_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 40.0, 60.0, 70.0, 73.0, 76.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-0,RES1.FIA.contents.one_floor.no_basement.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 12.0, 25.0, 35.0, 36.0, 38.0, 41.0, 45.0, 50.0, 55.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-1,RES1.FIA.contents.one_floor.with_basement.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 7.0, 8.0, 16.0, 20.0, 22.0, 28.0, 33.0, 39.0, 44.0, 50.0, 55.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-2,RES1.FIA.contents.two_floors.no_basement.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 8.0, 11.0, 19.0, 23.0, 28.0, 33.0, 39.0, 44.0, 50.0, 54.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-3,RES1.FIA-Modified.contents.two_floors.with_basement.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 7.0, 8.0, 16.0, 18.0, 25.0, 29.0, 33.0, 37.0, 42.0, 46.0, 52.0, 55.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-4,RES1.FIA-Modified.contents.three_or_more_floors.no_basement.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 7.0, 15.0, 21.0, 22.0, 23.0, 25.0, 27.0, 30.0, 35.0, 40.0, 43.0, 45.0, 48.0, 50.0, 52.0, 54.0, 56.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-5,RES1.FIA-Modified.contents.three_or_more_floors.with_basement.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 7.0, 8.0, 15.0, 22.0, 27.0, 28.0, 29.0, 30.0, 32.0, 35.0, 39.0, 43.0, 46.0, 47.0, 50.0, 52.0, 53.0, 55.0, 57.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-6,RES1.FIA.contents.split_level.no_basement.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 8.0, 11.0, 19.0, 23.0, 28.0, 33.0, 39.0, 44.0, 50.0, 54.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-7,RES1.FIA-Modified.contents.split_level.with_basement.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 7.0, 8.0, 16.0, 18.0, 25.0, 29.0, 33.0, 37.0, 42.0, 46.0, 52.0, 55.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-8,RES1.FIA.contents.one_floor.no_basement.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 17.0, 23.0, 29.0, 35.0, 40.0, 45.0, 50.0, 55.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-9,RES1.FIA.contents.one_floor.with_basement.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 7.0, 8.0, 15.0, 20.0, 22.0, 28.0, 33.0, 39.0, 44.0, 50.0, 55.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-10,RES1.FIA.contents.two_floors.no_basement.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 7.0, 9.0, 17.0, 22.0, 28.0, 33.0, 39.0, 44.0, 50.0, 54.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-11,RES1.FIA-Modified.contents.two_floors.with_basement.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 7.0, 8.0, 15.0, 17.0, 23.0, 28.0, 33.0, 37.0, 42.0, 46.0, 52.0, 55.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-12,RES1.FIA-Modified.contents.three_or_more_floors.no_basement.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 6.0, 11.0, 15.0, 19.0, 23.0, 26.0, 29.0, 32.0, 35.0, 41.0, 43.0, 45.0, 48.0, 50.0, 52.0, 54.0, 56.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-13,RES1.FIA-Modified.contents.three_or_more_floors.with_basement.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 7.0, 8.0, 14.0, 18.0, 22.0, 25.0, 29.0, 31.0, 34.0, 36.0, 39.0, 44.0, 46.0, 47.0, 50.0, 52.0, 53.0, 55.0, 57.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-14,RES1.FIA.contents.split_level.no_basement.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 7.0, 9.0, 17.0, 22.0, 28.0, 33.0, 39.0, 44.0, 50.0, 54.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-15,RES1.FIA-Modified.contents.split_level.with_basement.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 7.0, 8.0, 15.0, 17.0, 23.0, 28.0, 33.0, 37.0, 42.0, 46.0, 52.0, 55.0, 58.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-16,RES1.USACE_IWR.contents.one_story.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 4.0, 16.0, 26.0, 36.0, 44.0, 52.0, 58.0, 64.0, 68.0, 72.0, 74.0, 76.0, 78.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-17,RES1.USACE_IWR.contents.two_or_more_stories.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 2.0, 10.0, 18.0, 24.0, 32.0, 38.0, 42.0, 48.0, 52.0, 56.0, 60.0, 64.0, 66.0, 70.0, 72.0, 72.0, 74.0, 74.0, 76.0, 76.0, 78.0, 78.0, 80.0, 80.0, 82.0, 82.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-18,RES1.USACE_IWR.contents.split_level.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 4.0, 6.0, 10.0, 16.0, 22.0, 30.0, 40.0, 50.0, 62.0, 72.0, 82.0, 92.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-19,RES1.USACE_Chicago.contents.one_story.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 12.0, 24.0, 33.0, 35.0, 37.0, 41.0, 45.0, 50.0, 55.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-20,RES1.USACE_Chicago.contents.one_story.with_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 6.0, 7.0, 8.0, 15.0, 19.0, 22.0, 28.0, 33.0, 39.0, 43.0, 49.0, 54.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-21,RES1.USACE_Chicago.contents.split_level.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 19.0, 32.0, 41.0, 47.0, 51.0, 53.0, 55.0, 56.0, 62.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-22,RES1.USACE_Chicago.contents.split_level.with_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 10.0, 15.0, 18.0, 31.0, 44.0, 52.0, 58.0, 61.0, 63.0, 64.0, 66.0, 69.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0, 73.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-23,RES1.USACE_Chicago.contents.two_story.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 8.0, 11.0, 18.0, 23.0, 28.0, 33.0, 39.0, 44.0, 50.0, 54.0, 58.0, 62.0, 66.0, 70.0, 74.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-24,RES1.USACE_Chicago.contents.two_story.with_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 5.0, 6.0, 9.0, 11.0, 17.0, 22.0, 28.0, 33.0, 39.0, 44.0, 49.0, 55.0, 61.0, 64.0, 71.0, 76.0, 78.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-25,RES1.USACE_Galveston.contents.one_&_1/2_story.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 22.0, 36.0, 45.0, 57.0, 66.0, 71.0, 77.0, 79.0, 82.0, 84.0, 86.0, 87.0, 89.0, 90.0, 91.0, 92.0, 92.0, 92.0, 93.0, 93.0, 93.0, 93.0, 93.0, 93.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-26,RES1.USACE_Galveston.contents.one_story.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 8.0, 42.0, 60.0, 71.0, 77.0, 82.0, 85.0, 86.0, 87.0, 88.0, 88.0, 88.0, 89.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-27,RES1.USACE_Galveston.contents.two_story.no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 4.0, 24.0, 34.0, 40.0, 47.0, 53.0, 56.0, 58.0, 58.0, 58.0, 61.0, 66.0, 68.0, 76.0, 81.0, 86.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-28,RES1.USACE_New-Orleans.contents.one_story.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 63.0, 82.0, 85.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0, 91.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-29,RES1.USACE_New-Orleans.contents.one_story.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-30,RES1.USACE_New-Orleans.contents.two_story.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 37.0, 51.0, 51.0, 55.0, 55.0, 55.0, 55.0, 55.0, 73.0, 81.0, 87.0, 90.0, 93.0, 93.0, 93.0, 93.0, 93.0, 93.0, 93.0, 93.0, 93.0, 93.0, 93.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-31,RES1.USACE_New-Orleans.contents.two_story.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-32,RES1.USACE_St-Paul.contents.one_story-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 44.0, 54.0, 63.0, 68.0, 73.0, 75.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-33,RES1.USACE_St-Paul.contents.two_story-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 44.0, 54.0, 63.0, 68.0, 73.0, 75.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0, 78.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-34,RES1.USACE_Wilmington.contents.one_&_1/2_story.pile_foundation-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"6.0, 7.0, 8.0, 9.0, 9.0, 21.0, 31.0, 43.0, 54.0, 67.0, 70.0, 73.0, 76.0, 78.0, 81.0, 82.0, 84.0, 85.0, 86.0, 87.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-35,RES1.USACE_Wilmington.contents.one_&_1/2_story-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 9.0, 21.0, 31.0, 37.0, 43.0, 51.0, 57.0, 63.0, 68.0, 74.0, 80.0, 81.0, 83.0, 84.0, 86.0, 87.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-36,RES1.USACE_Wilmington.contents.one_&_1/2_story_with_1/2_living_area_below-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 6.0, 10.0, 15.0, 18.0, 21.0, 23.0, 24.0, 28.0, 34.0, 44.0, 54.0, 63.0, 73.0, 76.0, 79.0, 82.0, 85.0, 86.0, 87.0, 88.0, 89.0, 90.0, 91.0, 92.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-37,RES1.USACE_Wilmington.contents.one_story.pile_foundation-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"9.0, 10.0, 13.0, 13.0, 14.0, 26.0, 38.0, 52.0, 64.0, 78.0, 81.0, 85.0, 88.0, 91.0, 95.0, 96.0, 97.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-38,RES1.USACE_Wilmington.contents.one_story-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 11.0, 24.0, 36.0, 43.0, 46.0, 52.0, 59.0, 66.0, 73.0, 80.0, 87.0, 88.0, 90.0, 92.0, 94.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-39,RES1.USACE_Wilmington.contents.one_story_with_1/2_living_area_below-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 11.0, 16.0, 20.0, 24.0, 28.0, 30.0, 32.0, 38.0, 46.0, 54.0, 63.0, 72.0, 82.0, 85.0, 89.0, 92.0, 95.0, 96.0, 97.0, 98.0, 98.0, 99.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-40,RES1.USACE_Wilmington.contents.one_story_with_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"10.0, 12.0, 13.0, 13.0, 20.0, 34.0, 48.0, 52.0, 64.0, 78.0, 81.0, 85.0, 88.0, 91.0, 95.0, 96.0, 98.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-41,RES1.USACE_Wilmington.contents.split_level-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 3.0, 15.0, 21.0, 25.0, 32.0, 44.0, 50.0, 55.0, 61.0, 66.0, 72.0, 75.0, 79.0, 83.0, 87.0, 91.0, 94.0, 94.0, 95.0, 96.0, 97.0, 98.0, 99.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-42,RES1.USACE_Wilmington.contents.two_story.pile_foundation-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"6.0, 7.0, 8.0, 9.0, 10.0, 19.0, 29.0, 38.0, 45.0, 53.0, 55.0, 57.0, 59.0, 61.0, 63.0, 67.0, 71.0, 75.0, 78.0, 82.0, 86.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-43,RES1.USACE_Wilmington.contents.two_story-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 7.0, 18.0, 26.0, 30.0, 40.0, 50.0, 52.0, 53.0, 55.0, 56.0, 58.0, 63.0, 68.0, 72.0, 77.0, 82.0, 86.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-44,RES1.USACE_Wilmington.contents.two_story_with_1/2_living_area_below-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 1.0, 7.0, 10.0, 13.0, 15.0, 18.0, 19.0, 21.0, 25.0, 33.0, 40.0, 47.0, 54.0, 56.0, 59.0, 62.0, 65.0, 67.0, 71.0, 75.0, 79.0, 83.0, 87.0, 91.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-45,RES2.FIA.contents.mobile_home.a_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 3.0, 27.0, 49.0, 64.0, 70.0, 76.0, 78.0, 79.0, 81.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-46,RES2.FIA.contents.mobile_home.v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 3.0, 27.0, 50.0, 65.0, 71.0, 76.0, 78.0, 79.0, 81.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-47,RES2.USACE_Chicago.contents.mobile_home-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 3.0, 27.0, 49.0, 64.0, 70.0, 76.0, 78.0, 79.0, 81.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0, 83.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-48,RES2.USACE_Galveston.contents.mobile_home-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 3.0, 23.0, 36.0, 43.0, 55.0, 66.0, 78.0, 86.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-49,RES2.USACE_New-Orleans.contents.mobile_home.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 39.0, 54.0, 75.0, 77.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0, 85.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-50,RES2.USACE_New-Orleans.contents.mobile_home.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-51,RES2.USACE_Wilmington.contents.mobile_home-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 6.0, 22.0, 32.0, 37.0, 50.0, 63.0, 74.0, 82.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-52,RES3.USACE_Chicago.contents.apartment_unit_grade-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 12.0, 24.0, 33.0, 35.0, 37.0, 41.0, 45.0, 50.0, 55.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-53,RES3.USACE_Chicago.contents.apartment_unit_sub_grade-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 6.0, 7.0, 8.0, 15.0, 19.0, 22.0, 28.0, 33.0, 39.0, 43.0, 49.0, 54.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-54,RES3.USACE_Galveston.contents.apartment.living_area_on_one_floor-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 6.0, 34.0, 44.0, 55.0, 67.0, 77.0, 87.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-55,RES3.USACE_Galveston.contents.condominium.living_area_on_multiple_floors-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 4.0, 24.0, 34.0, 40.0, 47.0, 53.0, 56.0, 58.0, 58.0, 58.0, 61.0, 66.0, 68.0, 76.0, 81.0, 86.0, 91.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-56,RES4.USACE_Galveston.contents.average_hotel/motel.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 19.0, 25.0, 29.0, 34.0, 39.0, 44.0, 49.0, 56.0, 65.0, 74.0, 82.0, 88.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-57,RES4.USACE_Galveston.contents.hotel.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 22.0, 28.0, 33.0, 37.0, 41.0, 44.0, 46.0, 49.0, 54.0, 60.0, 69.0, 81.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-58,RES4.USACE_Galveston.contents.motel_unit.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 16.0, 21.0, 25.0, 30.0, 36.0, 43.0, 52.0, 63.0, 76.0, 88.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-59,RES5.USACE_Galveston.contents.average_institutional_dormitory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 38.0, 60.0, 73.0, 81.0, 88.0, 94.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-60,RES6.USACE_Galveston.contents.nursing_home.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 38.0, 60.0, 73.0, 81.0, 88.0, 94.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-61,COM1.USACE_Galveston.contents.average_retail_trade_equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 26.0, 42.0, 56.0, 68.0, 78.0, 83.0, 85.0, 87.0, 88.0, 89.0, 90.0, 91.0, 92.0, 92.0, 92.0, 93.0, 93.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-62,COM1.USACE_Galveston.contents.antique.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 20.0, 75.0, 78.0, 85.0, 90.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-63,COM1.USACE_Galveston.contents.appliance_sales.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 16.0, 28.0, 58.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-64,COM1.USACE_Galveston.contents.appliance_sales.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 83.0, 91.0, 94.0, 95.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-65,COM1.USACE_Galveston.contents.large_auto_dealer.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 20.0, 50.0, 90.0, 95.0, 98.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-66,COM1.USACE_Galveston.contents.bait_stand.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 7.0, 11.0, 16.0, 22.0, 29.0, 36.0, 44.0, 52.0, 60.0, 69.0, 79.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-67,COM1.USACE_Galveston.contents.bakery.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 14.0, 35.0, 70.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-68,COM1.USACE_Galveston.contents.bakery.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 55.0, 65.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-69,COM1.USACE_Galveston.contents.boat_sales/service.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 41.0, 65.0, 83.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-70,COM1.USACE_Galveston.contents.boat_sales/service.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 13.0, 24.0, 43.0, 82.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-71,COM1.USACE_Galveston.contents.book_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 14.0, 21.0, 27.0, 35.0, 42.0, 49.0, 57.0, 65.0, 73.0, 82.0, 92.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-72,COM1.USACE_Galveston.contents.camera_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 33.0, 65.0, 88.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-73,COM1.USACE_Galveston.contents.carpet_and_paint_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 60.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-74,COM1.USACE_Galveston.contents.carpet_and_paint_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 40.0, 60.0, 80.0, 95.0, 97.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-75,COM1.USACE_Galveston.contents.mens_clothing.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 41.0, 60.0, 78.0, 94.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-76,COM1.USACE_Galveston.contents.mens_clothing.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 6.0, 37.0, 50.0, 75.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-77,COM1.USACE_Galveston.contents.crafts.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-78,COM1.USACE_Galveston.contents.crafts.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 30.0, 50.0, 70.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-79,COM1.USACE_Galveston.contents.chain_drug_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-80,COM1.USACE_Galveston.contents.fabric_store.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 30.0, 40.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-81,COM1.USACE_Galveston.contents.fabric_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 30.0, 50.0, 75.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-82,COM1.USACE_Galveston.contents.feed_store.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-83,COM1.USACE_Galveston.contents.feed_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 15.0, 15.0, 15.0, 25.0, 25.0, 25.0, 25.0, 50.0, 50.0, 50.0, 50.0, 75.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-84,COM1.USACE_Galveston.contents.florist.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 49.0, 60.0, 75.0, 78.0, 79.0, 82.0, 85.0, 89.0, 93.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-85,COM1.USACE_Galveston.contents.florist.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 85.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-86,COM1.USACE_Galveston.contents.fruit_stand.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 80.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-87,COM1.USACE_Galveston.contents.large_furniture_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 20.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-88,COM1.USACE_Galveston.contents.gas/butane_supply.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 46.0, 65.0, 75.0, 81.0, 86.0, 90.0, 94.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-89,COM1.USACE_Galveston.contents.gift_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 54.0, 63.0, 75.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-90,COM1.USACE_Galveston.contents.greenhouse.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 34.0, 50.0, 66.0, 80.0, 92.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-91,COM1.USACE_Galveston.contents.greenhouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 66.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-92,COM1.USACE_Galveston.contents.small_grocery.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 20.0, 20.0, 20.0, 20.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-93,COM1.USACE_Galveston.contents.small_grocery.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 35.0, 50.0, 65.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-94,COM1.USACE_Galveston.contents.medium_grocery.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 4.0, 80.0, 90.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-95,COM1.USACE_Galveston.contents.medium_grocery.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 4.0, 22.0, 44.0, 74.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-96,COM1.USACE_Galveston.contents.gun_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 30.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-97,COM1.USACE_Galveston.contents.gun_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 39.0, 58.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-98,COM1.USACE_Galveston.contents.hardware.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 12.0, 20.0, 29.0, 40.0, 50.0, 59.0, 67.0, 75.0, 84.0, 92.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-99,COM1.USACE_Galveston.contents.hardware.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 8.0, 33.0, 52.0, 70.0, 75.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-100,COM1.USACE_Galveston.contents.hobby_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 87.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-101,COM1.USACE_Galveston.contents.hobby_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 49.0, 64.0, 77.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-102,COM1.USACE_Galveston.contents.lawnmower.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 24.0, 46.0, 57.0, 65.0, 72.0, 79.0, 86.0, 91.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-103,COM1.USACE_Galveston.contents.lawnmower.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-104,COM1.USACE_Galveston.contents.liquor_store.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 4.0, 9.0, 16.0, 84.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-105,COM1.USACE_Galveston.contents.liquor_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 40.0, 60.0, 81.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-106,COM1.USACE_Galveston.contents.meat_market.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 78.0, 81.0, 84.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-107,COM1.USACE_Galveston.contents.meat_market.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-108,COM1.USACE_Galveston.contents.motorcycle_dealer.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 60.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-109,COM1.USACE_Galveston.contents.motorcycle_dealer.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 45.0, 65.0, 85.0, 85.0, 85.0, 85.0, 85.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-110,COM1.USACE_Galveston.contents.music_center.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 52.0, 72.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-111,COM1.USACE_Galveston.contents.music_center.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 66.0, 72.0, 75.0, 80.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-112,COM1.USACE_Galveston.contents.plant_nursery.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 4.0, 8.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-113,COM1.USACE_Galveston.contents.plant_nursery.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 20.0, 79.0, 88.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-114,COM1.USACE_Galveston.contents.paint_store.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 25.0, 30.0, 35.0, 40.0, 45.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-115,COM1.USACE_Galveston.contents.paint_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 40.0, 60.0, 70.0, 73.0, 76.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-116,COM1.USACE_Galveston.contents.pawn_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 60.0, 70.0, 70.0, 70.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-117,COM1.USACE_Galveston.contents.pawn_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 40.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-118,COM1.USACE_Galveston.contents.remnant_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-119,COM1.USACE_Galveston.contents.remnant_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 40.0, 60.0, 80.0, 90.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-120,COM1.USACE_Galveston.contents.service_station.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 39.0, 59.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-121,COM1.USACE_Galveston.contents.service_station.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 42.0, 62.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-122,COM1.USACE_Galveston.contents.shoe_repair.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 28.0, 38.0, 41.0, 44.0, 47.0, 47.0, 47.0, 47.0, 47.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-123,COM1.USACE_Galveston.contents.shoe_repair.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 23.0, 35.0, 48.0, 60.0, 74.0, 87.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-124,COM1.USACE_Galveston.contents.toy_store.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 40.0, 70.0, 85.0, 90.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-125,COM1.USACE_Galveston.contents.tractor_sales.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 4.0, 18.0, 28.0, 36.0, 44.0, 48.0, 52.0, 56.0, 60.0, 65.0, 70.0, 74.0, 79.0, 84.0, 88.0, 93.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-126,COM1.USACE_Galveston.contents.tractor_sales.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 17.0, 29.0, 44.0, 59.0, 70.0, 77.0, 81.0, 84.0, 88.0, 92.0, 95.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-127,COM1.USACE_Galveston.contents.trailer_sales.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 37.0, 60.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-128,COM1.USACE_Galveston.contents.trophy_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 35.0, 38.0, 56.0, 60.0, 60.0, 60.0, 60.0, 60.0, 61.0, 62.0, 64.0, 66.0, 68.0, 71.0, 76.0, 84.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-129,COM1.USACE_Galveston.contents.trophy_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 5.0, 12.0, 31.0, 66.0, 82.0, 92.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-130,COM1.USACE_Galveston.contents.upholstery_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 10.0, 10.0, 10.0, 30.0, 35.0, 40.0, 45.0, 50.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-131,COM1.USACE_Galveston.contents.upholstery_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 30.0, 40.0, 45.0, 50.0, 53.0, 56.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-132,COM1.USACE_Galveston.contents.used_appliances/cloth.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 40.0, 50.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-133,COM1.USACE_Galveston.contents.used_appliances/cloth.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 35.0, 40.0, 50.0, 60.0, 80.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-134,COM1.USACE_Galveston.contents.used_furniture.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 40.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-135,COM1.USACE_Galveston.contents.used_furniture.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 30.0, 45.0, 65.0, 80.0, 80.0, 85.0, 85.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-136,COM1.USACE_Galveston.contents.vacuum_cleaner_sales.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 25.0, 30.0, 35.0, 40.0, 40.0, 40.0, 60.0, 60.0, 60.0, 60.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-137,COM1.USACE_Galveston.contents.vacuum_cleaner_sales.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 70.0, 80.0, 90.0, 95.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-138,COM1.USACE_Galveston.contents.video_games.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 10.0, 20.0, 30.0, 45.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 75.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-139,COM1.USACE_Galveston.contents.video_games.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-140,COM1.USACE_New-Orleans.contents.bakery.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 98.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-141,COM1.USACE_New-Orleans.contents.bakery.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 74.0, 81.0, 85.0, 88.0, 96.0, 96.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-142,COM1.USACE_New-Orleans.contents.candy_store.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 98.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-143,COM1.USACE_New-Orleans.contents.candy_store.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 74.0, 81.0, 85.0, 88.0, 96.0, 96.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-144,COM1.USACE_New-Orleans.contents.clothing_store.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-145,COM1.USACE_New-Orleans.contents.clothing_store.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 48.0, 54.0, 54.0, 55.0, 55.0, 55.0, 55.0, 55.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-146,COM1.USACE_New-Orleans.contents.convenience_store.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 98.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-147,COM1.USACE_New-Orleans.contents.convenience_store.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 74.0, 81.0, 85.0, 88.0, 96.0, 96.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-148,COM1.USACE_New-Orleans.contents.department_store.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-149,COM1.USACE_New-Orleans.contents.department_store.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 48.0, 54.0, 54.0, 55.0, 55.0, 55.0, 55.0, 55.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-150,COM1.USACE_New-Orleans.contents.furniture_store.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-151,COM1.USACE_New-Orleans.contents.furniture_store.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 48.0, 54.0, 54.0, 55.0, 55.0, 55.0, 55.0, 55.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-152,COM1.USACE_New-Orleans.contents.gas_stations.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 98.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-153,COM1.USACE_New-Orleans.contents.gas_stations.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 74.0, 81.0, 85.0, 88.0, 96.0, 96.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-154,COM1.USACE_New-Orleans.contents.large_grocery.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 98.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-155,COM1.USACE_New-Orleans.contents.large_grocery.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 74.0, 81.0, 85.0, 88.0, 96.0, 96.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-156,COM1.USACE_New-Orleans.contents.neighborhood_grocery.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 98.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-157,COM1.USACE_New-Orleans.contents.neighborhood_grocery.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 74.0, 81.0, 85.0, 88.0, 96.0, 96.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-158,COM1.USACE_New-Orleans.contents.home_repair_store.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 88.0, 88.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-159,COM1.USACE_New-Orleans.contents.home_repair_store.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 45.0, 60.0, 65.0, 86.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-160,COM1.USACE_New-Orleans.contents.liquor_store.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 98.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-161,COM1.USACE_New-Orleans.contents.liquor_store.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 74.0, 81.0, 85.0, 88.0, 96.0, 96.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-162,COM1.USACE_New-Orleans.contents.shoe_store.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-163,COM1.USACE_New-Orleans.contents.shoe_store.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 48.0, 54.0, 54.0, 55.0, 55.0, 55.0, 55.0, 55.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-164,COM1.USACE_New-Orleans.contents.wine_store.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 98.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-165,COM1.USACE_New-Orleans.contents.wine_store.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 74.0, 81.0, 85.0, 88.0, 96.0, 96.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-166,COM2.USACE_Galveston.contents.average_wholesale_trade-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 3.0, 16.0, 27.0, 36.0, 49.0, 57.0, 63.0, 69.0, 72.0, 76.0, 80.0, 82.0, 84.0, 86.0, 87.0, 87.0, 88.0, 89.0, 89.0, 89.0, 89.0, 89.0, 89.0, 89.0, 89.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-167,COM2.USACE_Galveston.contents.auto_parts.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 30.0, 59.0, 70.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-168,COM2.USACE_Galveston.contents.auto_parts/mufflers.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 40.0, 60.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-169,COM2.USACE_Galveston.contents.heavy_equipment_storage.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 14.0, 17.0, 20.0, 23.0, 25.0, 29.0, 35.0, 38.0, 42.0, 51.0, 63.0, 77.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-170,COM2.USACE_Galveston.contents.food_warehouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 40.0, 55.0, 70.0, 85.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-171,COM2.USACE_Galveston.contents.highway_material_storage.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 10.0, 10.0, 25.0, 25.0, 50.0, 50.0, 50.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-172,COM2.USACE_Galveston.contents.jewelry.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 15.0, 24.0, 33.0, 39.0, 45.0, 51.0, 56.0, 61.0, 65.0, 70.0, 74.0, 79.0, 83.0, 87.0, 92.0, 95.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-173,COM2.USACE_Galveston.contents.lumber_yard.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 30.0, 45.0, 60.0, 75.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-174,COM2.USACE_Galveston.contents.medical_supplies.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-175,COM2.USACE_Galveston.contents.medical_supplies.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 20.0, 27.0, 35.0, 43.0, 50.0, 57.0, 65.0, 73.0, 80.0, 88.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-176,COM2.USACE_Galveston.contents.municipal_storage_warehouse.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 40.0, 58.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-177,COM2.USACE_Galveston.contents.municipal_storage_warehouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 16.0, 19.0, 21.0, 23.0, 28.0, 35.0, 47.0, 67.0, 85.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-178,COM2.USACE_Galveston.contents.paper_products_warehouse.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 42.0, 58.0, 75.0, 87.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-179,COM2.USACE_Galveston.contents.paper_products_warehouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 27.0, 36.0, 44.0, 52.0, 59.0, 67.0, 73.0, 80.0, 90.0, 98.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-180,COM2.USACE_Galveston.contents.safety_equipment.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 25.0, 37.0, 50.0, 62.0, 75.0, 87.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-181,COM2.USACE_Galveston.contents.safety_equipment.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 25.0, 37.0, 50.0, 62.0, 75.0, 85.0, 93.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-182,COM2.USACE_Galveston.contents.sporting_goods.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-183,COM2.USACE_Galveston.contents.sporting_goods.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 30.0, 50.0, 53.0, 55.0, 57.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-184,COM2.USACE_Galveston.contents.sporting_goods_warehouse.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 50.0, 63.0, 75.0, 87.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-185,COM2.USACE_Galveston.contents.sporting_goods_warehouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 50.0, 63.0, 75.0, 87.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-186,COM2.USACE_Galveston.contents.storage_chemicals.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 15.0, 20.0, 25.0, 35.0, 45.0, 55.0, 65.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-187,COM2.USACE_Galveston.contents.storage_chemicals.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 20.0, 30.0, 40.0, 50.0, 60.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-188,COM2.USACE_Galveston.contents.storage_machine_parts.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 30.0, 40.0, 50.0, 50.0, 50.0, 75.0, 75.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-189,COM2.USACE_Galveston.contents.t.v._station.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 9.0, 9.0, 9.0, 9.0, 11.0, 13.0, 15.0, 18.0, 22.0, 26.0, 30.0, 35.0, 43.0, 54.0, 70.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-190,COM2.USACE_Galveston.contents.t.v._repair.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 7.0, 10.0, 11.0, 13.0, 16.0, 21.0, 27.0, 34.0, 42.0, 52.0, 63.0, 74.0, 86.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-191,COM2.USACE_Galveston.contents.t.v._repair.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-192,COM2.USACE_Galveston.contents.trailer_parts.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 50.0, 50.0, 50.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-193,COM2.USACE_Galveston.contents.trailer_parts.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 16.0, 28.0, 32.0, 40.0, 43.0, 46.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-194,COM2.USACE_Galveston.contents.warehouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 16.0, 19.0, 21.0, 23.0, 28.0, 35.0, 47.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-195,COM2.USACE_Galveston.contents.beer_warehouse.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 40.0, 55.0, 70.0, 85.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-196,COM2.USACE_Galveston.contents.beer_warehouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-197,COM2.USACE_Galveston.contents.bottled_gases_warehouse.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 35.0, 50.0, 50.0, 50.0, 60.0, 60.0, 60.0, 60.0, 60.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-198,COM2.USACE_Galveston.contents.bottled_gases_warehouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-199,COM2.USACE_Galveston.contents.cement_warehouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 40.0, 60.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-200,COM2.USACE_Galveston.contents.detergents_warehouse.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 10.0, 15.0, 20.0, 25.0, 35.0, 35.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-201,COM2.USACE_Galveston.contents.detergents_warehouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-202,COM2.USACE_Galveston.contents.heavy_machinery_warehouse.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 11.0, 17.0, 20.0, 23.0, 25.0, 29.0, 35.0, 42.0, 51.0, 63.0, 77.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-203,COM2.USACE_Galveston.contents.heavy_machinery_warehouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 25.0, 25.0, 35.0, 40.0, 50.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 85.0, 85.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-204,COM2.USACE_Galveston.contents.petroleum_warehouse.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 35.0, 50.0, 50.0, 50.0, 50.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-205,COM2.USACE_Galveston.contents.petroleum_warehouse.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 40.0, 60.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-206,COM2.USACE_Galveston.contents.western_auto.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 8.0, 16.0, 59.0, 65.0, 70.0, 73.0, 77.0, 81.0, 84.0, 87.0, 90.0, 93.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-207,COM2.USACE_Galveston.contents.western_auto.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 50.0, 75.0, 87.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-208,COM2.USACE_New-Orleans.contents.warehouse.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 70.0, 80.0, 96.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-209,COM2.USACE_New-Orleans.contents.warehouse.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 19.0, 31.0, 40.0, 45.0, 49.0, 54.0, 58.0, 63.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-210,COM2.USACE_St-Paul.contents.warehouse.fresh_water-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 15.0, 31.0, 43.0, 53.0, 61.0, 67.0, 71.0, 73.0, 76.0, 77.0, 78.0, 79.0, 80.0, 81.0, 82.0, 83.0, 84.0, 85.0, 86.0, 87.0, 88.0, 89.0, 90.0, 91.0, 92.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-211,COM3.USACE_Galveston.contents.average_personal/repair_services.invetory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 4.0, 29.0, 46.0, 67.0, 79.0, 85.0, 91.0, 92.0, 92.0, 93.0, 94.0, 96.0, 96.0, 97.0, 97.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-212,COM3.USACE_Galveston.contents.auto_repair.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 56.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-213,COM3.USACE_Galveston.contents.auto_repair.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 50.0, 80.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-214,COM3.USACE_Galveston.contents.auto_service.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 40.0, 60.0, 85.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-215,COM3.USACE_Galveston.contents.barber_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 22.0, 29.0, 37.0, 48.0, 62.0, 78.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-216,COM3.USACE_Galveston.contents.barber_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 50.0, 75.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-217,COM3.USACE_Galveston.contents.beauty_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 70.0, 87.0, 94.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-218,COM3.USACE_Galveston.contents.beauty_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 31.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-219,COM3.USACE_Galveston.contents.boat_service.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 12.0, 20.0, 29.0, 40.0, 50.0, 59.0, 67.0, 75.0, 84.0, 92.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-220,COM3.USACE_Galveston.contents.boat_service.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 8.0, 33.0, 52.0, 70.0, 75.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-221,COM3.USACE_Galveston.contents.car_wash.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 25.0, 40.0, 50.0, 60.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-222,COM3.USACE_Galveston.contents.car_wash.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-223,COM3.USACE_Galveston.contents.cemetary_complex.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 34.0, 76.0, 88.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-224,COM3.USACE_Galveston.contents.cemetary_complex.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 92.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-225,COM3.USACE_Galveston.contents.cleaners.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 30.0, 50.0, 75.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-226,COM3.USACE_Galveston.contents.cleaners_substation.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 10.0, 75.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-227,COM3.USACE_Galveston.contents.cleaners_substation.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 49.0, 75.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-228,COM3.USACE_Galveston.contents.private_day_care.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-229,COM3.USACE_Galveston.contents.private_day_care.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-230,COM3.USACE_Galveston.contents.funeral_home.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 30.0, 60.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-231,COM3.USACE_Galveston.contents.laundry.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 10.0, 13.0, 16.0, 19.0, 22.0, 27.0, 33.0, 40.0, 47.0, 56.0, 65.0, 74.0, 84.0, 94.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-232,COM3.USACE_Galveston.contents.photo_studio.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 10.0, 10.0, 10.0, 60.0, 60.0, 60.0, 60.0, 60.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-233,COM3.USACE_Galveston.contents.photo_studio.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 80.0, 80.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-234,COM3.USACE_Galveston.contents.truck_mfg_&_sales.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 65.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-235,COM3.USACE_Galveston.contents.truck_mfg_&_sales.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 34.0, 50.0, 57.0, 65.0, 71.0, 76.0, 80.0, 88.0, 89.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-236,COM3.USACE_Galveston.contents.washateria.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 55.0, 78.0, 83.0, 86.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-237,COM3.USACE_New-Orleans.contents.auto_repair.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 88.0, 88.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-238,COM3.USACE_New-Orleans.contents.auto_repair.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 45.0, 60.0, 65.0, 86.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-239,COM3.USACE_New-Orleans.contents.barber_shop.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-240,COM3.USACE_New-Orleans.contents.barber_shop.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 48.0, 54.0, 54.0, 55.0, 55.0, 55.0, 55.0, 55.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-241,COM3.USACE_New-Orleans.contents.beauty_salon.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-242,COM3.USACE_New-Orleans.contents.beauty_salon.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 48.0, 54.0, 54.0, 55.0, 55.0, 55.0, 55.0, 55.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-243,COM3.USACE_New-Orleans.contents.funeral_home.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-244,COM3.USACE_New-Orleans.contents.funeral_home.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 46.0, 94.0, 97.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-245,COM3.USACE_New-Orleans.contents.laundromat.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-246,COM3.USACE_New-Orleans.contents.laundromat.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 48.0, 54.0, 54.0, 55.0, 55.0, 55.0, 55.0, 55.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-247,COM3.USACE_New-Orleans.contents.reupholstery.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 88.0, 88.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-248,COM3.USACE_New-Orleans.contents.reupholstery.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 45.0, 60.0, 65.0, 86.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-249,COM3.USACE_New-Orleans.contents.watch_repair.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 88.0, 88.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-250,COM3.USACE_New-Orleans.contents.watch_repair.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 45.0, 60.0, 65.0, 86.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0, 94.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-251,COM4.USACE_Galveston.contents.average_prof/tech_services.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 18.0, 25.0, 35.0, 43.0, 49.0, 52.0, 55.0, 57.0, 58.0, 60.0, 65.0, 67.0, 68.0, 69.0, 70.0, 71.0, 71.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-252,COM4.USACE_Galveston.contents.airport.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-253,COM4.USACE_Galveston.contents.airport.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 40.0, 48.0, 55.0, 75.0, 78.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-254,COM4.USACE_Galveston.contents.boat_stalls.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 6.0, 8.0, 11.0, 13.0, 15.0, 17.0, 19.0, 21.0, 22.0, 24.0, 25.0, 27.0, 28.0, 29.0, 31.0, 32.0, 33.0, 34.0, 35.0, 36.0, 37.0, 38.0, 39.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-255,COM4.USACE_Galveston.contents.boat_storage.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 1.0, 4.0, 7.0, 12.0, 18.0, 24.0, 32.0, 40.0, 48.0, 54.0, 58.0, 63.0, 66.0, 68.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-256,COM4.USACE_Galveston.contents.business.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 6.0, 10.0, 15.0, 19.0, 24.0, 28.0, 33.0, 38.0, 44.0, 49.0, 55.0, 62.0, 69.0, 78.0, 86.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-257,COM4.USACE_Galveston.contents.import_sales.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-258,COM4.USACE_Galveston.contents.import_sales.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 65.0, 70.0, 75.0, 80.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-259,COM4.USACE_Galveston.contents.large_commercial_office.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 21.0, 24.0, 25.0, 26.0, 28.0, 31.0, 36.0, 42.0, 50.0, 71.0, 84.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-260,COM4.USACE_Galveston.contents.real_estate_office.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 9.0, 42.0, 75.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-261,COM4.USACE_Galveston.contents.real_estate_office.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 25.0, 43.0, 63.0, 70.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-262,COM4.USACE_Galveston.contents.transport_comapny.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 75.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-263,COM4.USACE_Galveston.contents.utility_company.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 30.0, 40.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-264,COM4.USACE_Galveston.contents.utility_company.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 5.0, 7.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 15.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0, 16.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-265,COM4.USACE_Galveston.contents.water_supply.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-266,COM4.USACE_New-Orleans.contents.accounting_firm.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-267,COM4.USACE_New-Orleans.contents.accounting_firm.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 46.0, 94.0, 97.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-268,COM4.USACE_New-Orleans.contents.legal_office.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-269,COM4.USACE_New-Orleans.contents.legal_office.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 46.0, 94.0, 97.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-270,COM4.USACE_New-Orleans.contents.real_estate_office.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-271,COM4.USACE_New-Orleans.contents.real_estate_office.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 46.0, 94.0, 97.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-272,COM4.USACE_New-Orleans.contents.utility_company.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-273,COM4.USACE_New-Orleans.contents.utility_company.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 18.0, 50.0, 50.0, 52.0, 58.0, 58.0, 58.0, 58.0, 58.0, 59.0, 69.0, 70.0, 70.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0, 79.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-274,COM4.USACE_St-Paul.contents.professional.fresh_water-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 15.0, 31.0, 43.0, 53.0, 61.0, 67.0, 71.0, 73.0, 76.0, 77.0, 78.0, 79.0, 80.0, 81.0, 82.0, 83.0, 84.0, 85.0, 86.0, 87.0, 88.0, 89.0, 90.0, 91.0, 92.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-275,COM5.USACE_Galveston.contents.bank-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 74.0, 83.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-276,COM5.USACE_Galveston.contents.bank.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 60.0, 70.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-277,COM5.USACE_Galveston.contents.bank.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 87.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-278,COM5.USACE_New-Orleans.contents.bank.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-279,COM5.USACE_New-Orleans.contents.bank.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 46.0, 94.0, 97.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-280,COM6.USACE_Galveston.contents.hospital-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 30.0, 65.0, 72.0, 78.0, 85.0, 95.0, 95.0, 95.0, 95.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-281,COM6.USACE_Galveston.contents.hospital.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0, 95.0, 95.0, 95.0, 95.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-282,COM6.USACE_Galveston.contents.hospital.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 80.0, 83.0, 86.0, 89.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-283,COM7.USACE_Galveston.contents.average_medical_offic/clinic.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 51.0, 60.0, 63.0, 67.0, 71.0, 72.0, 74.0, 77.0, 81.0, 86.0, 92.0, 94.0, 97.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-284,COM7.USACE_Galveston.contents.doctor's_office.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 12.0, 15.0, 16.0, 18.0, 22.0, 27.0, 34.0, 43.0, 57.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-285,COM7.USACE_Galveston.contents.dentist's_office.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-286,COM7.USACE_Galveston.contents.dentist's_office.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 21.0, 40.0, 55.0, 70.0, 85.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-287,COM7.USACE_Galveston.contents.chiropractic_clinic.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 30.0, 30.0, 30.0, 31.0, 32.0, 35.0, 38.0, 42.0, 47.0, 54.0, 62.0, 72.0, 84.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-288,COM7.USACE_Galveston.contents.x_ray_service.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-289,COM7.USACE_New-Orleans.contents.medical_office.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-290,COM7.USACE_New-Orleans.contents.medical_office.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 46.0, 94.0, 97.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-291,COM7.USACE_New-Orleans.contents.dentist's_office.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-292,COM7.USACE_New-Orleans.contents.dentist's_office.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 46.0, 94.0, 97.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-293,COM8.USACE_Galveston.contents.average_entertainment/recreation.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 13.0, 45.0, 55.0, 64.0, 73.0, 77.0, 80.0, 82.0, 83.0, 85.0, 87.0, 89.0, 90.0, 91.0, 92.0, 93.0, 94.0, 95.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0, 96.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-294,COM8.USACE_Galveston.contents.fishing_party_boat.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 24.0, 24.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-295,COM8.USACE_Galveston.contents.fishing_party_boat.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 40.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-296,COM8.USACE_Galveston.contents.bowling_alley.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 22.0, 25.0, 27.0, 27.0, 28.0, 30.0, 32.0, 35.0, 39.0, 45.0, 51.0, 58.0, 67.0, 76.0, 86.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-297,COM8.USACE_Galveston.contents.country_club.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 38.0, 41.0, 44.0, 47.0, 52.0, 56.0, 62.0, 67.0, 74.0, 80.0, 87.0, 94.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-298,COM8.USACE_Galveston.contents.country_club.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 19.0, 27.0, 34.0, 42.0, 48.0, 55.0, 62.0, 68.0, 73.0, 78.0, 84.0, 89.0, 94.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-299,COM8.USACE_Galveston.contents.physical_fitness.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 45.0, 75.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-300,COM8.USACE_Galveston.contents.private_pool.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-301,COM8.USACE_Galveston.contents.private_club.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 45.0, 49.0, 52.0, 55.0, 59.0, 63.0, 68.0, 74.0, 85.0, 90.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-302,COM8.USACE_Galveston.contents.private_club.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 21.0, 28.0, 35.0, 41.0, 47.0, 54.0, 62.0, 71.0, 83.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-303,COM8.USACE_Galveston.contents.radio_station.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-304,COM8.USACE_Galveston.contents.recreation_facilities.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 10.0, 20.0, 30.0, 45.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 75.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-305,COM8.USACE_Galveston.contents.recreation_facilities.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-306,COM8.USACE_Galveston.contents.tavern.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 36.0, 62.0, 73.0, 88.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-307,COM8.USACE_Galveston.contents.tavern.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 42.0, 53.0, 78.0, 92.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-308,COM8.USACE_Galveston.contents.telephone_exchange.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-309,COM8.USACE_Galveston.contents.ymca_inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 33.0, 33.0, 33.0, 33.0, 33.0, 33.0, 33.0, 33.0, 33.0, 35.0, 35.0, 35.0, 36.0, 36.0, 37.0, 37.0, 38.0, 38.0, 39.0, 39.0, 40.0, 40.0, 40.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-310,COM8.USACE_Galveston.contents.cafeteria_restaurant.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 57.0, 70.0, 71.0, 75.0, 82.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-311,COM8.USACE_Galveston.contents.cafeteria_restaurant.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 73.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-312,COM8.USACE_Galveston.contents.drive_in_restaurant.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 82.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-313,COM8.USACE_Galveston.contents.drive_in_restaurant.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 52.0, 60.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-314,COM8.USACE_New-Orleans.contents.bowling_alley.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 83.0, 88.0, 93.0, 94.0, 94.0, 94.0, 94.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-315,COM8.USACE_New-Orleans.contents.bowling_alley.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 61.0, 81.0, 89.0, 90.0, 92.0, 92.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-316,COM8.USACE_New-Orleans.contents.fast_food_restaurant.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 83.0, 88.0, 93.0, 94.0, 94.0, 94.0, 94.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-317,COM8.USACE_New-Orleans.contents.fast_food_restaurant.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 61.0, 81.0, 89.0, 90.0, 92.0, 92.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-318,COM8.USACE_New-Orleans.contents.full_service_restaurant.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 83.0, 88.0, 93.0, 94.0, 94.0, 94.0, 94.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-319,COM8.USACE_New-Orleans.contents.full_service_restaurant.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 61.0, 81.0, 89.0, 90.0, 92.0, 92.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-320,COM8.USACE_New-Orleans.contents.lounge.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 83.0, 88.0, 93.0, 94.0, 94.0, 94.0, 94.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-321,COM8.USACE_New-Orleans.contents.lounge.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 61.0, 81.0, 89.0, 90.0, 92.0, 92.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-322,COM8.USACE_St-Paul.contents.recreation.fresh_water-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 15.0, 31.0, 43.0, 53.0, 61.0, 67.0, 71.0, 73.0, 76.0, 77.0, 78.0, 79.0, 80.0, 81.0, 82.0, 83.0, 84.0, 85.0, 86.0, 87.0, 88.0, 89.0, 90.0, 91.0, 92.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-323,COM9.USACE_Galveston.contents.theater.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 6.0, 8.0, 9.0, 10.0, 12.0, 17.0, 22.0, 30.0, 41.0, 57.0, 66.0, 73.0, 79.0, 84.0, 90.0, 97.0, 98.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-324,COM9.USACE_Galveston.contents.private_hall.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 8.0, 10.0, 12.0, 14.0, 18.0, 24.0, 32.0, 44.0, 60.0, 85.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-325,COM9.USACE_Galveston.contents.indoor_theater.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 4.0, 5.0, 6.0, 6.0, 6.0, 9.0, 12.0, 16.0, 22.0, 28.0, 37.0, 46.0, 57.0, 68.0, 80.0, 93.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-326,COM9.USACE_New-Orleans.contents.movie_theater.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 83.0, 88.0, 93.0, 94.0, 94.0, 94.0, 94.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-327,COM9.USACE_New-Orleans.contents.movie_theater.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 61.0, 81.0, 89.0, 90.0, 92.0, 92.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0, 98.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-328,COM10.USACE_Galveston.contents.garage.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 17.0, 20.0, 23.0, 25.0, 29.0, 35.0, 42.0, 51.0, 63.0, 77.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-329,IND1.USACE_Galveston.contents.average_heavy_industrial.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 24.0, 34.0, 41.0, 47.0, 52.0, 57.0, 60.0, 63.0, 64.0, 66.0, 68.0, 69.0, 72.0, 73.0, 73.0, 73.0, 74.0, 74.0, 74.0, 74.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-330,IND1.USACE_Galveston.contents.boiler_building.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 10.0, 10.0, 10.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-331,IND1.USACE_Galveston.contents.cabinet_shop_mfg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 25.0, 30.0, 35.0, 40.0, 45.0, 50.0, 55.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-332,IND1.USACE_Galveston.contents.cabinet_shop_mfg.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 4.0, 8.0, 10.0, 11.0, 12.0, 13.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-333,IND1.USACE_Galveston.contents.concrete_mfg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 50.0, 51.0, 53.0, 54.0, 55.0, 55.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-334,IND1.USACE_Galveston.contents.door_mfg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 25.0, 45.0, 70.0, 80.0, 90.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-335,IND1.USACE_Galveston.contents.door_mfg.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 40.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-336,IND1.USACE_Galveston.contents.engine_room.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 25.0, 30.0, 35.0, 40.0, 45.0, 50.0, 55.0, 65.0, 65.0, 65.0, 65.0, 65.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-337,IND1.USACE_Galveston.contents.fabrication_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 75.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-338,IND1.USACE_Galveston.contents.heat_exchanger_mfg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 22.0, 32.0, 40.0, 46.0, 52.0, 55.0, 58.0, 60.0, 63.0, 71.0, 80.0, 85.0, 91.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-339,IND1.USACE_Galveston.contents.heat_exchanger_mfg.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 15.0, 17.0, 19.0, 21.0, 23.0, 24.0, 26.0, 28.0, 29.0, 32.0, 34.0, 36.0, 38.0, 39.0, 41.0, 43.0, 45.0, 47.0, 49.0, 51.0, 53.0, 55.0, 57.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-340,IND1.USACE_Galveston.contents.lock_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 12.0, 20.0, 29.0, 40.0, 50.0, 59.0, 67.0, 75.0, 84.0, 92.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-341,IND1.USACE_Galveston.contents.lock_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 8.0, 33.0, 52.0, 70.0, 75.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-342,IND1.USACE_Galveston.contents.lumber_mill.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 20.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-343,IND1.USACE_Galveston.contents.heavy_machine_shop.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 16.0, 24.0, 33.0, 41.0, 49.0, 58.0, 66.0, 74.0, 82.0, 91.0, 98.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-344,IND1.USACE_Galveston.contents.heavy_machine_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 5.0, 10.0, 15.0, 20.0, 25.0, 30.0, 40.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-345,IND1.USACE_Galveston.contents.light_machine_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 12.0, 18.0, 27.0, 35.0, 42.0, 42.0, 42.0, 55.0, 55.0, 55.0, 65.0, 65.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0, 70.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-346,IND1.USACE_Galveston.contents.metal_coatings_serv.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 50.0, 63.0, 75.0, 87.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-347,IND1.USACE_Galveston.contents.metal_coatings_serv.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-348,IND1.USACE_Galveston.contents.pipe_threader_facility.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 25.0, 50.0, 50.0, 50.0, 50.0, 75.0, 75.0, 75.0, 75.0, 90.0, 90.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-349,IND1.USACE_Galveston.contents.pressure_test_facility.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 20.0, 25.0, 25.0, 30.0, 30.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-350,IND1.USACE_Galveston.contents.metal_recycling.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 20.0, 20.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-351,IND1.USACE_Galveston.contents.machine_research_lab.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 25.0, 30.0, 35.0, 40.0, 42.0, 44.0, 46.0, 48.0, 50.0, 50.0, 50.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-352,IND1.USACE_Galveston.contents.machine_research_lab.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 40.0, 60.0, 80.0, 85.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-353,IND1.USACE_Galveston.contents.scale_bldg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 15.0, 25.0, 40.0, 50.0, 75.0, 85.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-354,IND1.USACE_Galveston.contents.welding_machine.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 6.0, 15.0, 18.0, 20.0, 21.0, 22.0, 24.0, 27.0, 30.0, 33.0, 37.0, 41.0, 45.0, 49.0, 54.0, 59.0, 63.0, 68.0, 72.0, 76.0, 80.0, 84.0, 88.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-355,IND2.USACE_Galveston.contents.average_light_industrial.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 23.0, 35.0, 44.0, 52.0, 58.0, 62.0, 65.0, 68.0, 70.0, 73.0, 74.0, 77.0, 78.0, 78.0, 79.0, 80.0, 80.0, 80.0, 80.0, 81.0, 81.0, 81.0, 81.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-356,IND2.USACE_Galveston.contents.battery_mfg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 30.0, 40.0, 60.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-357,IND2.USACE_Galveston.contents.battery_mfg.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 15.0, 15.0, 20.0, 20.0, 25.0, 25.0, 30.0, 30.0, 30.0, 30.0, 40.0, 40.0, 40.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-358,IND2.USACE_Galveston.contents.control_bldg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 75.0, 75.0, 85.0, 85.0, 90.0, 90.0, 90.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-359,IND2.USACE_Galveston.contents.electronic_equip_mfg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-360,IND2.USACE_Galveston.contents.electronic_equip_mfg.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 40.0, 55.0, 70.0, 85.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-361,IND2.USACE_Galveston.contents.frame_shop.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 45.0, 80.0, 88.0, 93.0, 95.0, 98.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-362,IND2.USACE_Galveston.contents.furniture_mfg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-363,IND2.USACE_Galveston.contents.furniture_mfg.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 50.0, 60.0, 70.0, 80.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-364,IND2.USACE_Galveston.contents.instrument_mfg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 13.0, 20.0, 27.0, 34.0, 42.0, 48.0, 57.0, 71.0, 80.0, 85.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-365,IND2.USACE_Galveston.contents.instrument_mfg.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 50.0, 61.0, 73.0, 82.0, 90.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-366,IND2.USACE_Galveston.contents.leather_goods_mfg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 6.0, 9.0, 12.0, 15.0, 18.0, 21.0, 24.0, 27.0, 30.0, 33.0, 36.0, 39.0, 42.0, 45.0, 48.0, 51.0, 54.0, 57.0, 60.0, 63.0, 66.0, 69.0, 72.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-367,IND2.USACE_Galveston.contents.leather_goods_mfg.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 12.0, 16.0, 20.0, 23.0, 26.0, 27.0, 29.0, 30.0, 30.0, 36.0, 39.0, 41.0, 44.0, 46.0, 49.0, 51.0, 54.0, 57.0, 60.0, 63.0, 66.0, 69.0, 72.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-368,IND2.USACE_Galveston.contents.industrial_loading_dock.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 25.0, 40.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-369,IND2.USACE_Galveston.contents.industrial_loading_dock.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 20.0, 20.0, 20.0, 20.0, 20.0, 30.0, 30.0, 30.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-370,IND2.USACE_Galveston.contents.locker_bldg.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 5.0, 25.0, 55.0, 75.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-371,IND2.USACE_Galveston.contents.maint_bldg_mfg_facilility.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 15.0, 20.0, 25.0, 35.0, 45.0, 45.0, 45.0, 45.0, 50.0, 50.0, 50.0, 55.0, 55.0, 55.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-372,IND2.USACE_Galveston.contents.newspaper_print_plant.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 8.0, 11.0, 13.0, 16.0, 20.0, 25.0, 31.0, 39.0, 48.0, 59.0, 70.0, 82.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-373,IND2.USACE_Galveston.contents.newspaper_sales_office.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 9.0, 18.0, 33.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-374,IND2.USACE_Galveston.contents.newspaper_sales_office.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 46.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-375,IND2.USACE_Galveston.contents.manuf_facility_office.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-376,IND2.USACE_Galveston.contents.manuf_facility_office.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 21.0, 30.0, 40.0, 45.0, 50.0, 60.0, 75.0, 85.0, 90.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-377,IND2.USACE_Galveston.contents.commercial_printing.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-378,IND2.USACE_Galveston.contents.commercial_printing.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 35.0, 50.0, 70.0, 73.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-379,IND3.USACE_Galveston.contents.average_food/drugs/chemicals.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 20.0, 41.0, 51.0, 62.0, 67.0, 71.0, 73.0, 76.0, 78.0, 79.0, 82.0, 83.0, 84.0, 86.0, 87.0, 87.0, 88.0, 88.0, 88.0, 88.0, 88.0, 88.0, 88.0, 88.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-380,IND3.USACE_Galveston.contents.chemical_plant.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 38.0, 44.0, 52.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0, 92.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-381,IND3.USACE_Galveston.contents.chemical_plant.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-382,IND3.USACE_Galveston.contents.chemical_plant_bonding.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 38.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0, 69.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-383,IND3.USACE_Galveston.contents.chemical_plant_bonding.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-384,IND3.USACE_Galveston.contents.chemical_refinery.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 45.0, 60.0, 75.0, 90.0, 93.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-385,IND3.USACE_Galveston.contents.chemical_refinery.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-386,IND3.USACE_Galveston.contents.deodorizer_bldg_chemical.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 15.0, 20.0, 20.0, 20.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0, 25.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-387,IND3.USACE_Galveston.contents.deodorizer_bldg_chem.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 75.0, 75.0, 90.0, 90.0, 90.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-388,IND3.USACE_Galveston.contents.feed_mill.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-389,IND3.USACE_Galveston.contents.feed_mill.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 22.0, 24.0, 26.0, 28.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 50.0, 55.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-390,IND3.USACE_Galveston.contents.food_processor.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 27.0, 33.0, 40.0, 50.0, 60.0, 70.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-391,IND3.USACE_Galveston.contents.food_processor.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-392,IND3.USACE_Galveston.contents.chemical_laboratory.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 25.0, 50.0, 50.0, 60.0, 70.0, 80.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-393,IND3.USACE_Galveston.contents.chemical_laboratory.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 43.0, 60.0, 60.0, 60.0, 60.0, 70.0, 70.0, 80.0, 80.0, 90.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-394,IND3.USACE_Galveston.contents.detergent_manuf._facility.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 21.0, 24.0, 25.0, 26.0, 28.0, 31.0, 36.0, 42.0, 50.0, 71.0, 84.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-395,IND3.USACE_Galveston.contents.detergent_manuf._facility.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 40.0, 55.0, 70.0, 85.0, 90.0, 90.0, 90.0, 90.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-396,IND3.USACE_Galveston.contents.meat_packing.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 30.0, 30.0, 70.0, 75.0, 85.0, 90.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-397,IND3.USACE_Galveston.contents.meat_packing.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-398,IND3.USACE_Galveston.contents.detergent_mixer_bldg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 25.0, 25.0, 25.0, 25.0, 25.0, 35.0, 35.0, 45.0, 45.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0, 55.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-399,IND3.USACE_Galveston.contents.detergent_mixer_bldg.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-400,IND3.USACE_Galveston.contents.plastic_mfg.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0, 90.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-401,IND3.USACE_Galveston.contents.plastic_mfg.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 30.0, 40.0, 47.0, 55.0, 62.0, 67.0, 72.0, 77.0, 80.0, 92.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-402,IND3.USACE_Galveston.contents.caustic_materials_refinery.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 38.0, 50.0, 75.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-403,IND3.USACE_Galveston.contents.caustic_materials_refinery.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 30.0, 30.0, 40.0, 40.0, 50.0, 50.0, 60.0, 60.0, 70.0, 70.0, 80.0, 80.0, 90.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-404,IND4.USACE_Galveston.contents.average_metals/minerals_processing.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 15.0, 20.0, 26.0, 31.0, 37.0, 40.0, 44.0, 48.0, 53.0, 56.0, 57.0, 60.0, 62.0, 63.0, 63.0, 63.0, 64.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-405,IND4.USACE_Galveston.contents.foundry.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 17.0, 24.0, 29.0, 34.0, 38.0, 43.0, 45.0, 50.0, 58.0, 62.0, 67.0, 70.0, 75.0, 78.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0, 82.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-406,IND4.USACE_Galveston.contents.foundry.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 11.0, 16.0, 19.0, 21.0, 23.0, 28.0, 35.0, 47.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-407,IND4.USACE_Galveston.contents.lead_refinery.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 30.0, 40.0, 50.0, 60.0, 70.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-408,IND4.USACE_Galveston.contents.lead_refinery.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 21.0, 30.0, 40.0, 45.0, 50.0, 60.0, 75.0, 85.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-409,IND4.USACE_Galveston.contents.sand_&_gravel.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 10.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-410,IND4.USACE_Galveston.contents.sand_&_gravel.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 3.0, 6.0, 10.0, 13.0, 16.0, 19.0, 24.0, 27.0, 30.0, 45.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-411,IND4.USACE_Galveston.contents.sheet_metal.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 24.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-412,IND4.USACE_Galveston.contents.sheet_metal.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-413,IND5.USACE_Galveston.contents.average_high_technology.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 20.0, 41.0, 51.0, 62.0, 67.0, 71.0, 73.0, 76.0, 78.0, 79.0, 82.0, 83.0, 84.0, 86.0, 87.0, 87.0, 88.0, 88.0, 88.0, 88.0, 88.0, 88.0, 88.0, 88.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-414,IND6.USACE_Galveston.contents.average_construction.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 35.0, 47.0, 56.0, 59.0, 66.0, 69.0, 71.0, 72.0, 78.0, 79.0, 80.0, 80.0, 81.0, 81.0, 81.0, 82.0, 82.0, 82.0, 83.0, 83.0, 83.0, 83.0, 83.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-415,IND6.USACE_Galveston.contents.carpet_tile_flooring.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 42.0, 54.0, 65.0, 75.0, 85.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-416,IND6.USACE_Galveston.contents.carpet_tile_flooring.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 70.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-417,IND6.USACE_Galveston.contents.contractor_roofing.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 27.0, 36.0, 43.0, 48.0, 50.0, 50.0, 50.0, 50.0, 50.0, 51.0, 51.0, 51.0, 52.0, 52.0, 52.0, 52.0, 53.0, 53.0, 53.0, 54.0, 54.0, 54.0, 55.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-418,IND6.USACE_Galveston.contents.contractor_roofing.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 27.0, 36.0, 43.0, 48.0, 53.0, 57.0, 59.0, 60.0, 66.0, 69.0, 72.0, 76.0, 79.0, 83.0, 86.0, 90.0, 93.0, 97.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-419,IND6.USACE_Galveston.contents.contractor_electric.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 10.0, 10.0, 40.0, 40.0, 40.0, 40.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-420,IND6.USACE_Galveston.contents.pier_drilling_co.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 23.0, 39.0, 55.0, 55.0, 56.0, 56.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-421,IND6.USACE_Galveston.contents.plumbing_co.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 45.0, 55.0, 63.0, 70.0, 76.0, 82.0, 87.0, 92.0, 98.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-422,IND6.USACE_Galveston.contents.plumbing_co.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 25.0, 35.0, 44.0, 53.0, 61.0, 69.0, 77.0, 85.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-423,IND6.USACE_Galveston.contents.sandblasting_co.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 45.0, 68.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-424,IND6.USACE_Galveston.contents.water_well_service.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-425,IND6.USACE_New-Orleans.contents.carpeting_service.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 70.0, 80.0, 96.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-426,IND6.USACE_New-Orleans.contents.carpeting_service.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 19.0, 31.0, 40.0, 45.0, 49.0, 54.0, 58.0, 63.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-427,IND6.USACE_New-Orleans.contents.heating_&_air_conditioning_service.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 70.0, 80.0, 96.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-428,IND6.USACE_New-Orleans.contents.heating_&_air_conditioning_service.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 19.0, 31.0, 40.0, 45.0, 49.0, 54.0, 58.0, 63.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-429,IND6.USACE_New-Orleans.contents.plumbing_services.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 70.0, 80.0, 96.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-430,IND6.USACE_New-Orleans.contents.plumbing_services.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 19.0, 31.0, 40.0, 45.0, 49.0, 54.0, 58.0, 63.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0, 72.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-431,AGR1.USACE_Galveston.contents.average_agriculture.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 6.0, 20.0, 43.0, 58.0, 65.0, 66.0, 66.0, 67.0, 70.0, 75.0, 76.0, 76.0, 76.0, 77.0, 77.0, 77.0, 78.0, 78.0, 78.0, 79.0, 79.0, 79.0, 79.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-432,AGR1.USACE_Galveston.contents.dairy_processing.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 50.0, 50.0, 50.0, 50.0, 60.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0, 80.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-433,AGR1.USACE_Galveston.contents.dairy_processing.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-434,AGR1.USACE_Galveston.contents.horse_stalls.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 6.0, 8.0, 11.0, 13.0, 15.0, 17.0, 19.0, 21.0, 22.0, 24.0, 25.0, 27.0, 28.0, 29.0, 31.0, 32.0, 33.0, 34.0, 34.0, 36.0, 37.0, 38.0, 39.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-435,AGR1.USACE_Galveston.contents.veterinary_clinic.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 25.0, 50.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-436,AGR1.USACE_New-Orleans.contents.veterinary_office.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-437,AGR1.USACE_New-Orleans.contents.veterinary_office.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 46.0, 94.0, 97.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-438,REL1.USACE_Galveston.contents.church-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 52.0, 72.0, 85.0, 92.0, 95.0, 98.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-439,REL1.USACE_Galveston.contents.church.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 75.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-440,REL1.USACE_Galveston.contents.church.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 28.0, 54.0, 70.0, 84.0, 90.0, 95.0, 97.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-441,REL1.USACE_New-Orleans.contents.civic_association.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-442,REL1.USACE_New-Orleans.contents.civic_association.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 18.0, 50.0, 50.0, 52.0, 58.0, 58.0, 58.0, 58.0, 58.0, 59.0, 69.0, 70.0, 70.0, 79.0, 88.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-443,GOV1.USACE_Galveston.contents.average_govt_services.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 59.0, 74.0, 83.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-444,GOV1.USACE_Galveston.contents.city_hall.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 75.0, 85.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-445,GOV1.USACE_Galveston.contents.post_office.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 43.0, 63.0, 70.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-446,GOV1.USACE_New-Orleans.contents.government_facility.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-447,GOV1.USACE_New-Orleans.contents.government_facility.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 18.0, 50.0, 50.0, 52.0, 58.0, 58.0, 58.0, 58.0, 58.0, 59.0, 69.0, 70.0, 70.0, 79.0, 88.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-448,GOV2.USACE_Galveston.contents.average_emergency_response.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 20.0, 38.0, 55.0, 70.0, 81.0, 89.0, 98.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-449,GOV2.USACE_Galveston.contents.fire_station.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 25.0, 50.0, 75.0, 91.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-450,GOV2.USACE_Galveston.contents.police_station.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 15.0, 25.0, 35.0, 48.0, 62.0, 78.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-451,EDU1.USACE_Galveston.contents.average_school.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 38.0, 53.0, 64.0, 68.0, 70.0, 72.0, 75.0, 79.0, 83.0, 88.0, 94.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-452,EDU1.USACE_Galveston.contents.commercial_school.equipment-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 26.0, 30.0, 33.0, 35.0, 39.0, 44.0, 50.0, 58.0, 66.0, 76.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-453,EDU1.USACE_Galveston.contents.library.inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 50.0, 75.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-454,EDU1.USACE_New-Orleans.contents.elementary_school.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-455,EDU1.USACE_New-Orleans.contents.elementary_school.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 18.0, 50.0, 50.0, 52.0, 58.0, 58.0, 58.0, 58.0, 58.0, 59.0, 69.0, 70.0, 70.0, 79.0, 88.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-456,EDU2.USACE_Galveston.contents.average_college/university.equipment/inventory-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 38.0, 53.0, 64.0, 68.0, 70.0, 72.0, 75.0, 79.0, 83.0, 88.0, 94.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-457,EDU2.USACE_New-Orleans.contents.college.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-458,EDU2.USACE_New-Orleans.contents.college.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 18.0, 50.0, 50.0, 52.0, 58.0, 58.0, 58.0, 58.0, 58.0, 59.0, 69.0, 70.0, 70.0, 79.0, 88.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-459,RES1.BCAR_Jan-201.contents.all_floors.slab_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 30.0, 45.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-460,RES3A.BCAR_Jan-201.contents.1to2_stories.slab_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 30.0, 45.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-461,RES3B.BCAR_Jan-201.contents.1to2_stories.slab_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 30.0, 45.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-462,RES1.BCAR_Jan-201.contents.all_floors.wall_2ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 20.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-463,RES3A.BCAR_Jan-201.contents.1to2_stories.wall_2ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 20.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-464,RES3B.BCAR_Jan-201.contents.1to2_stories.wall_2ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 20.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-465,RES1.BCAR_Jan-201.contents.all_floors.wall_3ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 10.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-466,RES3A.BCAR_Jan-201.contents.1to2_stories.wall_3ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 10.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-467,RES3B.BCAR_Jan-201.contents.1to2_stories.wall_3ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 10.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-468,RES2.BCAR_Jan-201.contents.manufactured_home_mobile.structure.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-469,RES1.BCAR_Jan-201.contents.all_floors.elevated_open+2ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 45.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-470,RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_open+2ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 45.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-471,RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_open+2ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 45.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-472,RES1.BCAR_Jan-201.contents.all_floors.elevated_open+4ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 35.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-473,RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_open+4ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 35.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-474,RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_open+4ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 35.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-475,RES1.BCAR_Jan-201.contents.all_floors.elevated_open+6ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 30.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-476,RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_open+6ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 30.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-477,RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_open+6ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 30.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-478,RES1.BCAR_Jan-201.contents.all_floors.elevated_open+8ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 25.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-479,RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_open+8ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 25.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-480,RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_open+8ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 25.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-481,RES1.BCAR_Jan-201.contents.all_floors.elevated_open+10ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"25.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-482,RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_open+10ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"25.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-483,RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_open+10ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"25.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-484,RES1.BCAR_Jan-201.contents.all_floors.elevated_open+12ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"65.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-485,RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_open+12ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"65.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-486,RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_open+12ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"65.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-487,RES1.BCAR_Jan-201.contents.all_floors.elevated_obstr+2ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 2.0, 3.0, 48.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-488,RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+2ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 2.0, 3.0, 48.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-489,RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+2ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 2.0, 3.0, 48.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-490,RES1.BCAR_Jan-201.contents.all_floors.elevated_obstr+4ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"2.0, 3.0, 3.0, 38.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-491,RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+4ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"2.0, 3.0, 3.0, 38.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-492,RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+4ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"2.0, 3.0, 3.0, 38.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-493,RES1.BCAR_Jan-201.contents.all_floors.elevated_obstr+6ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"3.0, 3.0, 33.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-494,RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+6ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"3.0, 3.0, 33.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-495,RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+6ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"3.0, 3.0, 33.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-496,RES1.BCAR_Jan-201.contents.all_floors.elevated_obstr+8ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"3.0, 28.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-497,RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+8ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"3.0, 28.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-498,RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+8ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"3.0, 28.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-499,RES1.BCAR_Jan-201.contents.all_floors.elevated_obstr+10ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"28.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-500,RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+10ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"28.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-501,RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+10ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"28.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-502,RES1.BCAR_Jan-201.contents.all_floors.elevated_obstr+12ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"68.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-503,RES3A.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+12ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"68.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-504,RES3B.BCAR_Jan-201.contents.1to2_stories.elevated_obstr+12ft_no_basement.coastal_a_or_v_zone-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"68.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-505,RES3.USACE_Chicago.contents.apartment_unit_grade-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 12.0, 24.0, 33.0, 35.0, 37.0, 41.0, 45.0, 50.0, 55.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0, 60.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-506,RES1.BCAR_Jan-201.contents.one_story.with_basement.b14-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 11.0, 13.0, 16.0, 19.0, 22.0, 25.0, 27.0, 30.0, 32.0, 35.0, 36.0, 38.0, 39.0, 39.0, 39.0, 39.0, 39.0, 39.0, 39.0, 39.0, 39.0, 39.0, 39.0, 39.0, 39.0, 39.0, 39.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-507,AGR1.USACE-Sacramento.contents.usace_sacramento_farms.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 30.0, 76.0, 76.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-508,AGR1.USACE-Sacramento.contents.usace_sacramento_farms.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 56.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-509,AGR1.USACE-Sacramento.contents.usace_sacramento_farms.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 27.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-510,COM.USACE-NACCS.contents.naccs_2_commercial_engineeered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 3.5, 24.0, 33.25, 40.0, 42.75, 45.5, 52.75, 60.0, 61.66667, 63.33333, 65.0, 66.66667, 68.33333, 70.0, 71.66667, 73.33333, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-511,COM.USACE-NACCS.contents.naccs_2_commercial_engineeered_waves-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 15.0, 26.25, 38.5, 52.375, 66.25, 73.125, 80.0, 82.0, 84.0, 86.0, 88.0, 90.0, 92.0, 94.0, 96.0, 97.5, 97.5, 97.5, 97.5, 97.5, 97.5, 97.5, 97.5, 97.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-512,COM.USACE-NACCS.contents.naccs_3_commercial_non/pre_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 1.0, 21.0, 29.75, 44.5, 49.75, 55.0, 59.75, 64.5, 67.5, 70.5, 73.5, 76.5, 79.5, 82.5, 85.5, 88.5, 90.5, 90.5, 90.5, 90.5, 90.5, 90.5, 90.5, 90.5, 90.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-513,COM.USACE-NACCS.contents.naccs_3_commercial_non/pre_engineered_waves-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.5, 21.0, 33.75, 52.5, 67.5, 82.5, 91.25, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-514,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_furniture_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 46.85714, 61.85714, 68.14286, 79.14286, 85.71429, 90.71429, 97.14286, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-515,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_electronics_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 34.14286, 44.28571, 67.0, 77.71429, 86.71429, 95.42857, 97.42857, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-516,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_clothing_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 46.28571, 55.42857, 70.0, 79.0, 89.0, 95.71429, 97.85714, 97.85714, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-517,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_service_station_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.35714, 16.42857, 28.92857, 40.85714, 57.71429, 63.28571, 70.71429, 79.28571, 84.28571, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-518,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_convenience_store_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.14286, 39.85714, 52.85714, 70.71429, 79.28571, 88.0, 94.14286, 95.71429, 97.14286, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-519,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_grocery_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.71429, 40.92857, 52.85714, 64.0, 75.42857, 87.28571, 98.85714, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-520,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_furniture_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 46.85714, 61.85714, 68.14286, 79.14286, 85.71429, 90.71429, 97.14286, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-521,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_electronics_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 34.14286, 44.28571, 67.0, 77.71429, 86.71429, 95.42857, 97.42857, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-522,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_clothing_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 46.28571, 55.42857, 70.0, 79.0, 89.0, 95.71429, 97.85714, 97.85714, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-523,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_service_station_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.35714, 16.42857, 28.92857, 40.85714, 57.71429, 63.28571, 70.71429, 79.28571, 84.28571, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-524,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_convenience_store_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.14286, 39.85714, 52.85714, 70.71429, 79.28571, 88.0, 94.14286, 95.71429, 97.14286, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-525,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_grocery_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.71429, 40.92857, 52.85714, 64.0, 75.42857, 87.28571, 98.85714, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-526,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_furniture_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 46.85714, 61.85714, 68.14286, 79.14286, 85.71429, 90.71429, 97.14286, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-527,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_electronics_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 34.14286, 44.28571, 67.0, 77.71429, 86.71429, 95.42857, 97.42857, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-528,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_clothing_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 46.28571, 55.42857, 70.0, 79.0, 89.0, 95.71429, 97.85714, 97.85714, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-529,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_service_station_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.35714, 16.42857, 28.92857, 40.85714, 57.71429, 63.28571, 70.71429, 79.28571, 84.28571, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-530,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_convenience_store_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.14286, 39.85714, 52.85714, 70.71429, 79.28571, 88.0, 94.14286, 95.71429, 97.14286, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-531,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_grocery_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.71429, 40.92857, 52.85714, 64.0, 75.42857, 87.28571, 98.85714, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-532,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_furniture_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 46.85714, 61.85714, 68.14286, 79.14286, 85.71429, 90.71429, 97.14286, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-533,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_electronics_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 34.14286, 44.28571, 67.0, 77.71429, 86.71429, 95.42857, 97.42857, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-534,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_retail_clothing_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 46.28571, 55.42857, 70.0, 79.0, 89.0, 95.71429, 97.85714, 97.85714, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-535,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_service_station_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.35714, 16.42857, 28.92857, 40.85714, 57.71429, 63.28571, 70.71429, 79.28571, 84.28571, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-536,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_convenience_store_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.14286, 39.85714, 52.85714, 70.71429, 79.28571, 88.0, 94.14286, 95.71429, 97.14286, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-537,COM1.FEMA-BCA-Toolkit.contents.bca_toolkit_grocery_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.71429, 40.92857, 52.85714, 64.0, 75.42857, 87.28571, 98.85714, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-538,COM1.FEMA-BCA-Toolkit.contents.convenience_store.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 23.14286, 39.85714, 52.85714, 70.71429, 79.28571, 88.0, 94.14286, 95.71429, 97.14286, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-539,COM1.FEMA-BCA-Toolkit.contents.convenience_store.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 23.14286, 39.85714, 52.85714, 70.71429, 79.28571, 88.0, 94.14286, 95.71429, 97.14286, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-540,COM1.FEMA-BCA-Toolkit.contents.grocery.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.71429, 40.92857, 52.85714, 64.0, 75.42857, 87.28571, 98.85714, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-541,COM1.FEMA-BCA-Toolkit.contents.grocery.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.71429, 40.92857, 52.85714, 64.0, 75.42857, 87.28571, 98.85714, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-542,COM1.FEMA-BCA-Toolkit.contents.retail_clothing.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 46.28571, 55.42857, 70.0, 79.0, 89.0, 95.71429, 97.85714, 97.85714, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-543,COM1.FEMA-BCA-Toolkit.contents.retail_clothing.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 46.28571, 55.42857, 70.0, 79.0, 89.0, 95.71429, 97.85714, 97.85714, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-544,COM1.FEMA-BCA-Toolkit.contents.retail_electronics.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 34.14286, 44.28571, 67.0, 77.71429, 86.71429, 95.42857, 97.42857, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-545,COM1.FEMA-BCA-Toolkit.contents.retail_electronics.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 34.14286, 44.28571, 67.0, 77.71429, 86.71429, 95.42857, 97.42857, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-546,COM1.FEMA-BCA-Toolkit.contents.retail_furniture.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 46.85714, 61.85714, 68.14286, 79.14286, 85.71429, 90.71429, 97.14286, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-547,COM1.FEMA-BCA-Toolkit.contents.retail_furniture.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 46.85714, 61.85714, 68.14286, 79.14286, 85.71429, 90.71429, 97.14286, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571, 99.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-548,COM1.FEMA-BCA-Toolkit.contents.service_station.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.35714, 16.42857, 28.92857, 40.85714, 57.71429, 63.28571, 70.71429, 79.28571, 84.28571, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-549,COM1.FEMA-BCA-Toolkit.contents.service_station.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.35714, 16.42857, 28.92857, 40.85714, 57.71429, 63.28571, 70.71429, 79.28571, 84.28571, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286, 87.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-550,COM1.USACE-New-Orleans.contents.usace_new_orleans_department_store.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.3, 48.2, 54.1, 54.3, 54.8, 54.8, 54.8, 54.8, 54.8, 98.9, 99.9, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-551,COM1.USACE-New-Orleans.contents.usace_new_orleans_department_store.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 99.5, 99.8, 99.9, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-552,COM1.USACE-New-Orleans.contents.usace_new_orleans_large_grocery.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 73.6, 81.4, 84.8, 87.6, 96.3, 96.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3, 98.3|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-553,COM1.USACE-New-Orleans.contents.usace_new_orleans_large_grocery.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 97.5, 99.1, 99.4, 99.7, 99.7, 99.7, 99.7, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-554,COM1.USACE-Sacramento.contents.usace_sacramento_food_stores.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 29.0, 96.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-555,COM1.USACE-Sacramento.contents.usace_sacramento_furniture_retail.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 80.0, 80.0, 96.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-556,COM1.USACE-Sacramento.contents.usace_sacramento_grocery_store.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 32.0, 89.0, 89.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-557,COM1.USACE-Sacramento.contents.usace_sacramento_retail.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 80.0, 80.0, 96.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-558,COM1.USACE-Sacramento.contents.usace_sacramento_shopping_centers.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 33.0, 72.0, 72.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-559,COM1.USACE-Sacramento.contents.usace_sacramento_food_stores.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 25.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-560,COM1.USACE-Sacramento.contents.usace_sacramento_furniture_retail.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 42.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-561,COM1.USACE-Sacramento.contents.usace_sacramento_grocery_store.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 27.0, 49.0, 49.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-562,COM1.USACE-Sacramento.contents.usace_sacramento_retail.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 19.0, 19.0, 36.0, 36.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-563,COM1.USACE-Sacramento.contents.usace_sacramento_shopping_centers.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 28.0, 40.0, 40.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-564,COM1.USACE-Sacramento.contents.usace_sacramento_food_stores.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 78.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-565,COM1.USACE-Sacramento.contents.usace_sacramento_furniture_retail.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 98.0, 98.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-566,COM1.USACE-Sacramento.contents.usace_sacramento_grocery_store.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 87.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-567,COM1.USACE-Sacramento.contents.usace_sacramento_retail.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 80.0, 80.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-568,COM1.USACE-Sacramento.contents.usace_sacramento_shopping_centers.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 96.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-569,COM1.USACE-Sacramento.contents.usace_sacramento_food_stores.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 38.0, 38.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-570,COM1.USACE-Sacramento.contents.usace_sacramento_furniture_retail.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 47.0, 47.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-571,COM1.USACE-Sacramento.contents.usace_sacramento_grocery_store.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 42.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-572,COM1.USACE-Sacramento.contents.usace_sacramento_retail.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 38.0, 38.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-573,COM1.USACE-Sacramento.contents.usace_sacramento_shopping_centers.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 46.0, 46.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-574,COM2.FEMA-BCA-Toolkit.contents.bca_toolkit_warehouse.refrig_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.71429, 48.0, 59.14286, 65.71429, 74.28571, 79.71429, 84.0, 89.85714, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-575,COM2.FEMA-BCA-Toolkit.contents.bca_toolkit_warehouse.non_refrig_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.71429, 33.71429, 47.42857, 56.85714, 65.57143, 73.57143, 81.28571, 88.42857, 91.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-576,COM2.FEMA-BCA-Toolkit.contents.bca_toolkit_warehouse.refrig_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.71429, 48.0, 59.14286, 65.71429, 74.28571, 79.71429, 84.0, 89.85714, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-577,COM2.FEMA-BCA-Toolkit.contents.bca_toolkit_warehouse.non_refrig_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.71429, 33.71429, 47.42857, 56.85714, 65.57143, 73.57143, 81.28571, 88.42857, 91.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-578,COM2.FEMA-BCA-Toolkit.contents.bca_toolkit_warehouse.refrig_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.71429, 48.0, 59.14286, 65.71429, 74.28571, 79.71429, 84.0, 89.85714, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-579,COM2.FEMA-BCA-Toolkit.contents.bca_toolkit_warehouse.non_refrig_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.71429, 33.71429, 47.42857, 56.85714, 65.57143, 73.57143, 81.28571, 88.42857, 91.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-580,COM2.FEMA-BCA-Toolkit.contents.bca_toolkit_warehouse.refrig_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.71429, 48.0, 59.14286, 65.71429, 74.28571, 79.71429, 84.0, 89.85714, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-581,COM2.FEMA-BCA-Toolkit.contents.bca_toolkit_warehouse.non_refrig_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.71429, 33.71429, 47.42857, 56.85714, 65.57143, 73.57143, 81.28571, 88.42857, 91.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-582,COM2.USACE-New-Orleans.contents.usace_new_orleans_warehouse.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 19.2, 30.7, 39.7, 44.5, 48.8, 54.1, 58.3, 62.6, 71.6, 71.6, 71.6, 71.6, 71.6, 71.6, 71.6, 71.6, 71.6, 71.6, 71.6, 71.6, 71.6, 71.6, 71.6, 71.6|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-583,COM2.USACE-New-Orleans.contents.usace_new_orleans_warehouse.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 69.9, 79.9, 96.3, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0, 97.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-584,COM2.FEMA-BCA-Toolkit.contents.warehouse.non_refrig_default.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.71429, 33.71429, 47.42857, 56.85714, 65.57143, 73.57143, 81.28571, 88.42857, 91.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-585,COM2.FEMA-BCA-Toolkit.contents.warehouse.non_refrig_default.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.71429, 33.71429, 47.42857, 56.85714, 65.57143, 73.57143, 81.28571, 88.42857, 91.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-586,COM2.FEMA-BCA-Toolkit.contents.warehouse.refrig_default.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 29.71429, 48.0, 59.14286, 65.71429, 74.28571, 79.71429, 84.0, 89.85714, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-587,COM2.FEMA-BCA-Toolkit.contents.warehouse.refrig_default.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 29.71429, 48.0, 59.14286, 65.71429, 74.28571, 79.71429, 84.0, 89.85714, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143, 93.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-588,COM2.USACE-Sacramento.contents.usace_sacramento_warehouse.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 23.0, 69.0, 69.0, 96.0, 96.0, 96.0, 96.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-589,COM2.USACE-Sacramento.contents.usace_sacramento_warehouse.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 20.0, 38.0, 38.0, 48.0, 48.0, 48.0, 48.0, 48.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-590,COM2.USACE-Sacramento.contents.usace_sacramento_warehouse.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 84.0, 84.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-591,COM2.USACE-Sacramento.contents.usace_sacramento_warehouse.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 40.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-592,COM3.FEMA-BCA-Toolkit.contents.protective_services.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 14.28571, 24.71429, 36.71429, 46.57143, 55.28571, 62.85714, 74.42857, 82.71429, 84.42857, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-593,COM3.FEMA-BCA-Toolkit.contents.protective_services.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 14.28571, 24.71429, 36.71429, 46.57143, 55.28571, 62.85714, 74.42857, 82.71429, 84.42857, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-594,COM3.USACE-Sacramento.contents.usace_sacramento_service_auto.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 9.0, 10.0, 23.0, 23.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-595,COM3.USACE-Sacramento.contents.usace_sacramento_service_auto.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 8.0, 8.0, 19.0, 19.0, 37.0, 37.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-596,COM3.USACE-Sacramento.contents.usace_sacramento_service_auto.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 10.0, 10.0, 74.0, 74.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-597,COM3.USACE-Sacramento.contents.usace_sacramento_service_auto.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 5.0, 5.0, 35.0, 35.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-598,COM4.FEMA-BCA-Toolkit.contents.bca_toolkit_protective_services_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.28571, 24.71429, 36.71429, 46.57143, 55.28571, 62.85714, 74.42857, 82.71429, 84.42857, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-599,COM4.FEMA-BCA-Toolkit.contents.bca_toolkit_office_one_story_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.71429, 0.71429, 1.0, 20.0, 34.28571, 45.42857, 55.0, 63.85714, 73.28571, 76.42857, 83.42857, 89.28571, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-600,COM4.FEMA-BCA-Toolkit.contents.bca_toolkit_protective_services_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.28571, 24.71429, 36.71429, 46.57143, 55.28571, 62.85714, 74.42857, 82.71429, 84.42857, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-601,COM4.FEMA-BCA-Toolkit.contents.bca_toolkit_office_one_story_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.71429, 0.71429, 1.0, 20.0, 34.28571, 45.42857, 55.0, 63.85714, 73.28571, 76.42857, 83.42857, 89.28571, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-602,COM4.FEMA-BCA-Toolkit.contents.bca_toolkit_protective_services_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.28571, 24.71429, 36.71429, 46.57143, 55.28571, 62.85714, 74.42857, 82.71429, 84.42857, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-603,COM4.FEMA-BCA-Toolkit.contents.bca_toolkit_office_one_story_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.71429, 0.71429, 1.0, 20.0, 34.28571, 45.42857, 55.0, 63.85714, 73.28571, 76.42857, 83.42857, 89.28571, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-604,COM4.FEMA-BCA-Toolkit.contents.bca_toolkit_protective_services_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.28571, 24.71429, 36.71429, 46.57143, 55.28571, 62.85714, 74.42857, 82.71429, 84.42857, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0, 86.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-605,COM4.FEMA-BCA-Toolkit.contents.bca_toolkit_office_one_story_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.71429, 0.71429, 1.0, 20.0, 34.28571, 45.42857, 55.0, 63.85714, 73.28571, 76.42857, 83.42857, 89.28571, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-606,COM4.FEMA-BCA-Toolkit.contents.office_one_story.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.71429, 0.71429, 1.0, 20.0, 34.28571, 45.42857, 55.0, 63.85714, 73.28571, 76.42857, 83.42857, 89.28571, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-607,COM4.FEMA-BCA-Toolkit.contents.office_one_story.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.71429, 0.71429, 1.0, 20.0, 34.28571, 45.42857, 55.0, 63.85714, 73.28571, 76.42857, 83.42857, 89.28571, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857, 91.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-608,COM4.USACE-New-Orleans.contents.usace_new_orleans_utility_company.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.1, 17.5, 49.8, 50.1, 51.8, 57.6, 57.6, 57.6, 57.6, 57.8, 59.4, 69.2, 69.6, 69.7, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-609,COM4.USACE-New-Orleans.contents.usace_new_orleans_utility_company.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-610,COM4.USACE-Sacramento.contents.usace_sacramento_office.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 35.0, 90.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-611,COM4.USACE-Sacramento.contents.usace_sacramento_office.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 29.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-612,COM4.USACE-Sacramento.contents.usace_sacramento_office.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 97.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-613,COM4.USACE-Sacramento.contents.usace_sacramento_office.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 46.0, 46.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-614,COM6.FEMA-BCA-Toolkit.contents.bca_toolkit_hospital_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.625, 27.0, 37.0, 53.375, 70.0, 79.125, 85.625, 92.5, 95.625, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-615,COM6.FEMA-BCA-Toolkit.contents.bca_toolkit_hospital_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.625, 27.0, 37.0, 53.375, 70.0, 79.125, 85.625, 92.5, 95.625, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-616,COM6.FEMA-BCA-Toolkit.contents.bca_toolkit_hospital_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.625, 27.0, 37.0, 53.375, 70.0, 79.125, 85.625, 92.5, 95.625, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-617,COM6.FEMA-BCA-Toolkit.contents.bca_toolkit_hospital_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.625, 27.0, 37.0, 53.375, 70.0, 79.125, 85.625, 92.5, 95.625, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-618,COM6.FEMA-BCA-Toolkit.contents.hospital.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 14.625, 27.0, 37.0, 53.375, 70.0, 79.125, 85.625, 92.5, 95.625, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-619,COM6.FEMA-BCA-Toolkit.contents.hospital.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 14.625, 27.0, 37.0, 53.375, 70.0, 79.125, 85.625, 92.5, 95.625, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25, 96.25|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-620,COM6.USACE-New-Orleans.contents.usace_new_orleans_medical_office.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.8, 45.7, 94.1, 96.9, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3, 99.3|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-621,COM6.USACE-New-Orleans.contents.usace_new_orleans_medical_office.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 98.5, 98.5, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-622,COM6.USACE-Sacramento.contents.usace_sacramento_medical.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 33.0, 89.0, 89.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-623,COM6.USACE-Sacramento.contents.usace_sacramento_medical.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 28.0, 49.0, 49.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-624,COM6.USACE-Sacramento.contents.usace_sacramento_medical.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 75.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-625,COM6.USACE-Sacramento.contents.usace_sacramento_medical.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 36.0, 36.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-626,COM7.FEMA-BCA-Toolkit.contents.bca_toolkit_medical_office_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.25, 26.875, 40.375, 57.125, 67.25, 75.375, 82.25, 91.25, 96.25, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-627,COM7.FEMA-BCA-Toolkit.contents.bca_toolkit_medical_office_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.25, 26.875, 40.375, 57.125, 67.25, 75.375, 82.25, 91.25, 96.25, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-628,COM7.FEMA-BCA-Toolkit.contents.bca_toolkit_medical_office_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.25, 26.875, 40.375, 57.125, 67.25, 75.375, 82.25, 91.25, 96.25, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-629,COM7.FEMA-BCA-Toolkit.contents.bca_toolkit_medical_office_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.25, 26.875, 40.375, 57.125, 67.25, 75.375, 82.25, 91.25, 96.25, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-630,COM7.FEMA-BCA-Toolkit.contents.medical_office.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 14.25, 26.875, 40.375, 57.125, 67.25, 75.375, 82.25, 91.25, 96.25, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-631,COM7.FEMA-BCA-Toolkit.contents.medical_office.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 14.25, 26.875, 40.375, 57.125, 67.25, 75.375, 82.25, 91.25, 96.25, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875, 96.875|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-632,COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_fast_food_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.28571, 38.57143, 52.71429, 62.57143, 73.0, 79.28571, 88.28571, 94.85714, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-633,COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_non_fast_food_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.71429, 48.85714, 57.28571, 71.85714, 79.71429, 84.85714, 92.85714, 93.42857, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-634,COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_recreation_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.71429, 43.71429, 62.71429, 72.85714, 80.0, 84.0, 91.14286, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-635,COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_fast_food_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.28571, 38.57143, 52.71429, 62.57143, 73.0, 79.28571, 88.28571, 94.85714, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-636,COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_non_fast_food_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.71429, 48.85714, 57.28571, 71.85714, 79.71429, 84.85714, 92.85714, 93.42857, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-637,COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_recreation_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.71429, 43.71429, 62.71429, 72.85714, 80.0, 84.0, 91.14286, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-638,COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_fast_food_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.28571, 38.57143, 52.71429, 62.57143, 73.0, 79.28571, 88.28571, 94.85714, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-639,COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_non_fast_food_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.71429, 48.85714, 57.28571, 71.85714, 79.71429, 84.85714, 92.85714, 93.42857, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-640,COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_recreation_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.71429, 43.71429, 62.71429, 72.85714, 80.0, 84.0, 91.14286, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-641,COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_fast_food_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.28571, 38.57143, 52.71429, 62.57143, 73.0, 79.28571, 88.28571, 94.85714, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-642,COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_non_fast_food_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.71429, 48.85714, 57.28571, 71.85714, 79.71429, 84.85714, 92.85714, 93.42857, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-643,COM8.FEMA-BCA-Toolkit.contents.bca_toolkit_recreation_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.71429, 43.71429, 62.71429, 72.85714, 80.0, 84.0, 91.14286, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-644,COM8.FEMA-BCA-Toolkit.contents.fast_food.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 21.28571, 38.57143, 52.71429, 62.57143, 73.0, 79.28571, 88.28571, 94.85714, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-645,COM8.FEMA-BCA-Toolkit.contents.fast_food.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 21.28571, 38.57143, 52.71429, 62.57143, 73.0, 79.28571, 88.28571, 94.85714, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143, 98.57143|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-646,COM8.FEMA-BCA-Toolkit.contents.non_fast_food.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 27.71429, 48.85714, 57.28571, 71.85714, 79.71429, 84.85714, 92.85714, 93.42857, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-647,COM8.FEMA-BCA-Toolkit.contents.non_fast_food.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 27.71429, 48.85714, 57.28571, 71.85714, 79.71429, 84.85714, 92.85714, 93.42857, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571, 94.28571|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-648,COM8.FEMA-BCA-Toolkit.contents.recreation.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.71429, 43.71429, 62.71429, 72.85714, 80.0, 84.0, 91.14286, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-649,COM8.FEMA-BCA-Toolkit.contents.recreation.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.71429, 43.71429, 62.71429, 72.85714, 80.0, 84.0, 91.14286, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-650,COM8.USACE-Sacramento.contents.usace_sacramento_restaurant.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 30.0, 96.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-651,COM8.USACE-Sacramento.contents.usace_sacramento_restaurant_fast_food.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 23.0, 90.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-652,COM8.USACE-Sacramento.contents.usace_sacramento_recreation.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 38.0, 38.0, 95.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-653,COM8.USACE-Sacramento.contents.usace_sacramento_restaurant.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 25.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-654,COM8.USACE-Sacramento.contents.usace_sacramento_restaurant_fast_food.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 20.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-655,COM8.USACE-Sacramento.contents.usace_sacramento_recreation.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 32.0, 49.0, 49.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-656,COM8.USACE-Sacramento.contents.usace_sacramento_restaurant.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 91.0, 91.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-657,COM8.USACE-Sacramento.contents.usace_sacramento_restaurant_fast_food.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 88.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-658,COM8.USACE-Sacramento.contents.usace_sacramento_recreation.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 98.0, 98.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-659,COM8.USACE-Sacramento.contents.usace_sacramento_restaurant.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 44.0, 44.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-660,COM8.USACE-Sacramento.contents.usace_sacramento_restaurant_fast_food.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 42.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-661,COM8.USACE-Sacramento.contents.usace_sacramento_recreation.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 47.0, 47.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-662,EDU1.FEMA-BCA-Toolkit.contents.bca_toolkit_schools_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-663,EDU1.FEMA-BCA-Toolkit.contents.bca_toolkit_schools_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-664,EDU1.FEMA-BCA-Toolkit.contents.bca_toolkit_schools_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-665,EDU1.FEMA-BCA-Toolkit.contents.bca_toolkit_schools_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-666,EDU1.FEMA-BCA-Toolkit.contents.schools.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-667,EDU1.FEMA-BCA-Toolkit.contents.schools.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-668,EDU1.USACE-New-Orleans.contents.usace_new_orleans_elementary_school.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.1, 17.5, 49.8, 50.1, 51.8, 57.6, 57.6, 57.6, 57.6, 57.8, 59.4, 69.2, 69.6, 69.7, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-669,EDU1.USACE-New-Orleans.contents.usace_new_orleans_elementary_school.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-670,EDU1.USACE-Sacramento.contents.usace_sacramento_schools.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 22.0, 67.0, 67.0, 88.0, 88.0, 88.0, 88.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-671,EDU1.USACE-Sacramento.contents.usace_sacramento_schools.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 18.0, 37.0, 37.0, 44.0, 44.0, 44.0, 44.0, 44.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-672,EDU1.USACE-Sacramento.contents.usace_sacramento_schools.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 88.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-673,EDU1.USACE-Sacramento.contents.usace_sacramento_schools.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 42.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-674,EDU2.USACE-New-Orleans.contents.usace_new_orleans_college.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.1, 17.5, 49.8, 50.1, 51.8, 57.6, 57.6, 57.6, 57.6, 57.8, 59.4, 69.2, 69.6, 69.7, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-675,EDU2.USACE-New-Orleans.contents.usace_new_orleans_college.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-676,GOV1.USACE-New-Orleans.contents.usace_new_orleans_government_facility.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 5.1, 17.5, 49.8, 50.1, 51.8, 57.6, 57.6, 57.6, 57.6, 57.8, 59.4, 69.2, 69.6, 69.7, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9, 78.9|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-677,GOV1.USACE-New-Orleans.contents.usace_new_orleans_government_facility.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 60.2, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-678,GOV1.USACE-Sacramento.contents.usace_sacramento_government.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 35.0, 90.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-679,GOV1.USACE-Sacramento.contents.usace_sacramento_government.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 30.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-680,GOV1.USACE-Sacramento.contents.usace_sacramento_government.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 97.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-681,GOV1.USACE-Sacramento.contents.usace_sacramento_government.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 45.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-682,IND1.USACE-Sacramento.contents.usace_sacramento_heavy.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 16.0, 56.0, 56.0, 92.0, 92.0, 92.0, 92.0, 92.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-683,IND1.USACE-Sacramento.contents.usace_sacramento_heavy.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 14.0, 31.0, 31.0, 46.0, 46.0, 46.0, 46.0, 46.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-684,IND1.USACE-Sacramento.contents.usace_sacramento_heavy.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 33.0, 77.0, 77.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-685,IND1.USACE-Sacramento.contents.usace_sacramento_heavy.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 40.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-686,IND2.FEMA-BCA-Toolkit.contents.bca_toolkit_industrial_light_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19.28571, 31.0, 42.28571, 52.28571, 60.71429, 72.0, 82.14286, 90.71429, 94.28571, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-687,IND2.FEMA-BCA-Toolkit.contents.bca_toolkit_industrial_light_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19.28571, 31.0, 42.28571, 52.28571, 60.71429, 72.0, 82.14286, 90.71429, 94.28571, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-688,IND2.FEMA-BCA-Toolkit.contents.bca_toolkit_industrial_light_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19.28571, 31.0, 42.28571, 52.28571, 60.71429, 72.0, 82.14286, 90.71429, 94.28571, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-689,IND2.FEMA-BCA-Toolkit.contents.bca_toolkit_industrial_light_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19.28571, 31.0, 42.28571, 52.28571, 60.71429, 72.0, 82.14286, 90.71429, 94.28571, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-690,IND2.FEMA-BCA-Toolkit.contents.industrial_light.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 19.28571, 31.0, 42.28571, 52.28571, 60.71429, 72.0, 82.14286, 90.71429, 94.28571, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-691,IND2.FEMA-BCA-Toolkit.contents.industrial_light.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 19.28571, 31.0, 42.28571, 52.28571, 60.71429, 72.0, 82.14286, 90.71429, 94.28571, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-692,IND2.USACE-Sacramento.contents.usace_sacramento_light.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 35.0, 75.0, 75.0, 96.0, 96.0, 96.0, 96.0, 96.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-693,IND2.USACE-Sacramento.contents.usace_sacramento_light.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 30.0, 41.0, 41.0, 48.0, 48.0, 48.0, 48.0, 48.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-694,IND2.USACE-Sacramento.contents.usace_sacramento_light.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 88.0, 88.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-695,IND2.USACE-Sacramento.contents.usace_sacramento_light.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 42.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-696,REL1.FEMA-BCA-Toolkit.contents.bca_toolkit_religious_facilities_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.28571, 48.42857, 60.0, 69.28571, 76.42857, 81.42857, 88.42857, 94.28571, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-697,REL1.FEMA-BCA-Toolkit.contents.bca_toolkit_religious_facilities_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.28571, 48.42857, 60.0, 69.28571, 76.42857, 81.42857, 88.42857, 94.28571, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-698,REL1.FEMA-BCA-Toolkit.contents.bca_toolkit_religious_facilities_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.28571, 48.42857, 60.0, 69.28571, 76.42857, 81.42857, 88.42857, 94.28571, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-699,REL1.FEMA-BCA-Toolkit.contents.bca_toolkit_religious_facilities_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.28571, 48.42857, 60.0, 69.28571, 76.42857, 81.42857, 88.42857, 94.28571, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-700,REL1.FEMA-BCA-Toolkit.contents.religious_facilities.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 29.28571, 48.42857, 60.0, 69.28571, 76.42857, 81.42857, 88.42857, 94.28571, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-701,REL1.FEMA-BCA-Toolkit.contents.religious_facilities.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 29.28571, 48.42857, 60.0, 69.28571, 76.42857, 81.42857, 88.42857, 94.28571, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286, 97.14286|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-702,REL1.USACE-Sacramento.contents.usace_sacramento_churches.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 33.0, 85.0, 85.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-703,REL1.USACE-Sacramento.contents.usace_sacramento_churches.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 28.0, 47.0, 47.0, 49.0, 49.0, 49.0, 49.0, 49.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-704,REL1.USACE-Sacramento.contents.usace_sacramento_churches.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 73.0, 73.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-705,REL1.USACE-Sacramento.contents.usace_sacramento_churches.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 35.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-706,RES1.USACE-NACCS.contents.naccs_5a_single_story_residence_no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 60.0, 80.0, 85.0, 90.0, 95.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-707,RES1.USACE-NACCS.contents.naccs_5a_single_story_residence_no_basement_wave_crawlspace-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 10.0, 30.0, 60.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-708,RES1.USACE-NACCS.contents.naccs_5b_two_story_residence_no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 5.0, 25.0, 35.0, 45.0, 50.0, 55.0, 62.5, 70.0, 73.33333, 76.66667, 80.0, 83.33333, 86.66667, 90.0, 93.33333, 96.66667, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-709,RES1.USACE-NACCS.contents.naccs_5b_two_story_residence_no_basement_wave_crawlspace-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 5.0, 20.0, 35.0, 45.0, 94.0, 97.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-710,RES1.USACE-NACCS.contents.naccs_6a_single_story_residence_with_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 10.0, 15.0, 15.0, 45.0, 64.0, 80.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-711,RES1.USACE-NACCS.contents.naccs_6b_two_story_residence_with_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 10.0, 15.0, 20.0, 35.0, 40.0, 50.0, 55.0, 60.0, 65.0, 70.0, 76.66667, 83.33333, 90.0, 96.66667, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-712,RES1.USACE-NACCS.contents.naccs_7a_building_on_open_pile_foundation-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 1.0, 1.0, 10.0, 40.0, 50.0, 80.0, 89.0, 98.0, 99.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-713,RES1.USACE-NACCS.contents.naccs_7a_building_on_open_pile_foundation_waves-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 12.5, 20.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-714,RES1.USACE-NACCS.contents.naccs_7b_building_on_pile_foundation_with_enclosure-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 9.0, 11.0, 20.0, 40.0, 75.0, 85.0, 92.5, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-715,RES1.USACE-NACCS.contents.naccs_7b_building_on_pile_foundation_with_enclosure_waves-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 25.0, 40.0, 50.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-716,RES1.USACE-Generic.contents.single_family_residential.1_story_with_basements-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 10.5, 13.2, 16.0, 18.9, 21.8, 24.7, 27.4, 30.0, 32.4, 34.5, 36.3, 37.7, 38.6, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-717,RES1.USACE-Generic.contents.single_family_residential.2_or_more_stories_with_basements-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 8.4, 10.1, 11.9, 13.8, 15.7, 17.7, 19.8, 22.0, 24.3, 26.7, 29.1, 31.7, 34.4, 37.2, 40.0, 43.0, 46.1, 49.3, 52.6, 52.6, 52.6, 52.6, 52.6, 52.6, 52.6, 52.6, 52.6|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-718,RES1.USACE-Generic.contents.single_family_residential.split_level_with_basements-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 7.3, 9.4, 11.6, 13.8, 16.1, 18.2, 20.2, 22.1, 23.6, 24.9, 25.8, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-719,RES1.USACE-Generic.contents.single_family_residential.1_story_with_no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 2.4, 8.1, 13.3, 17.9, 22.0, 25.7, 28.8, 31.5, 33.8, 35.7, 37.2, 38.4, 39.2, 39.7, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-720,RES1.USACE-Generic.contents.single_family_residential.2_or_more_stories_with_no_basements-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 1.0, 5.0, 8.7, 12.2, 15.5, 18.5, 21.3, 23.9, 26.3, 28.4, 30.3, 32.0, 33.4, 34.7, 35.6, 36.4, 36.9, 37.2, 37.2, 37.2, 37.2, 37.2, 37.2, 37.2, 37.2, 37.2|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-721,RES1.USACE-Generic.contents.single_family_residential.split_level_with_no_basements-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 2.2, 2.9, 4.7, 7.5, 11.1, 15.3, 20.1, 25.2, 30.5, 35.7, 40.9, 45.8, 50.2, 54.1, 57.2, 59.4, 60.5, 60.5, 60.5, 60.5, 60.5, 60.5, 60.5, 60.5, 60.5, 60.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-722,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_slab_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 30.0, 45.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-723,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_wall_2_feet_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-724,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_wall_3_feet_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-725,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_open_+2_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-726,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_open_+4_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-727,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_open_+6_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-728,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_open_+8_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-729,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_open_+10_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 25.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-730,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_open_+12_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 10.0, 65.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-731,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_obstr_+2_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 48.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-732,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_obstr_+4_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 3.0, 3.0, 38.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-733,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_obstr_+6_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 2.0, 3.0, 3.0, 3.0, 33.0, 93.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-734,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_obstr_+8_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 3.0, 3.0, 3.0, 28.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-735,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_obstr_+10_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 3.0, 3.0, 28.0, 78.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-736,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_elevated_obstr_+12_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 3.0, 13.0, 68.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-737,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_1_story_without_basement_outside_caz_usace_generic_riverine-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.4, 8.1, 13.3, 17.9, 22.0, 25.7, 28.8, 31.5, 33.8, 35.7, 37.2, 38.4, 39.2, 39.7, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-738,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_2_story_without_basement_outside_caz_usace_generic_riverine-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 5.0, 8.7, 12.2, 15.5, 18.5, 21.3, 23.9, 26.3, 28.4, 30.3, 32.0, 33.4, 34.7, 35.6, 36.4, 36.9, 37.2, 37.2, 37.2, 37.2, 37.2|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-739,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_split_level_without_basement_outside_caz_usace_generic_riverine-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.2, 2.9, 4.7, 7.5, 11.1, 15.3, 20.1, 25.2, 30.5, 35.7, 40.9, 45.8, 50.2, 54.1, 57.2, 59.4, 60.5, 60.5, 60.5, 60.5, 60.5, 60.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-740,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_1_story_with_basement_outside_caz_usace_generic_riverine-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.5, 13.2, 16.0, 18.9, 21.8, 24.7, 27.4, 30.0, 32.4, 34.5, 36.3, 37.7, 38.6, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-741,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_2_story_with_basement_outside_caz_usace_generic_riverine-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.4, 10.1, 11.9, 13.8, 15.7, 17.7, 19.8, 22.0, 24.3, 26.7, 29.1, 31.7, 34.4, 37.2, 40.0, 43.0, 46.1, 49.3, 52.6, 52.6, 52.6, 52.6, 52.6|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-742,RES1.FEMA-BCA-Toolkit.contents.bca_toolkit_split_level_with_basement_outside_caz_usace_generic_riverine-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.3, 9.4, 11.6, 13.8, 16.1, 18.2, 20.2, 22.1, 23.6, 24.9, 25.8, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-743,RES1.FEMA-FIMA.contents.fema_fia_split_level_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.5, 13.5, 19.5, 37.5, 40.5, 42.0, 49.5, 51.0, 61.5, 64.5, 67.5, 69.0, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-744,RES1.FEMA-FIMA.contents.fema_fia_two_or_more_stories_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 12.0, 16.5, 22.5, 30.0, 34.5, 42.0, 49.5, 57.0, 66.0, 73.5, 76.5, 79.5, 82.5, 85.5, 88.5, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-745,RES1.FEMA-FIMA.contents.fema_fia_split_level_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.5, 7.5, 9.0, 24.0, 28.5, 33.0, 40.5, 48.0, 52.5, 54.0, 66.0, 72.0, 75.0, 78.0, 81.0, 84.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-746,RES1.FEMA-FIMA.contents.fema_fia_one_story_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 12.0, 16.5, 22.5, 30.0, 34.5, 42.0, 49.5, 57.0, 66.0, 73.5, 76.5, 79.5, 82.5, 85.5, 88.5, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-747,RES1.FEMA-FIMA.contents.fema_fia_coastal_building_zone_v-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 15.0, 23.0, 35.0, 50.0, 58.0, 63.0, 66.5, 69.5, 72.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 87.0, 87.0, 87.0, 87.0, 87.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-748,RES1.FEMA-FIMA.contents.fema_fia_two_or_more_stories_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.5, 13.5, 19.5, 27.0, 30.0, 33.0, 36.0, 39.0, 43.5, 49.5, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-749,RES1.FEMA-FIMA.contents.fema_fia_one_story_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.5, 21.0, 33.0, 40.5, 43.5, 45.0, 60.0, 64.5, 66.0, 67.5, 69.0, 70.5, 72.0, 73.5, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-750,RES1.FEMA-FIMA.contents.fema_fia_coastal_building_zone_v-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 24.0, 29.0, 37.0, 54.0, 60.5, 64.5, 68.0, 70.0, 72.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 87.0, 87.0, 87.0, 87.0, 87.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-751,RES1.FEMA-FIMA.contents.fema_fia.split_level.with_basement_split_level-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.5, 7.5, 9.0, 24.0, 28.5, 33.0, 40.5, 48.0, 52.5, 54.0, 66.0, 72.0, 75.0, 78.0, 81.0, 84.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-752,RES1.FEMA-FIMA.contents.fema_fia_default_one_story_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 12.0, 16.5, 22.5, 30.0, 34.5, 42.0, 49.5, 57.0, 66.0, 73.5, 76.5, 79.5, 82.5, 85.5, 88.5, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-753,RES1.FEMA-FIMA.contents.fema_fia.1_story.no_basement_one_story-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.5, 21.0, 33.0, 40.5, 43.5, 45.0, 60.0, 64.5, 66.0, 67.5, 69.0, 70.5, 72.0, 73.5, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-754,RES1.FEMA-FIMA.contents.fema_fia.2_story.no_basement_two_or_more_stories-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.5, 13.5, 19.5, 27.0, 30.0, 33.0, 36.0, 39.0, 43.5, 49.5, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-755,RES1.FEMA-FIMA.contents.fema_fia_default_one_story_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.5, 21.0, 33.0, 40.5, 43.5, 45.0, 60.0, 64.5, 66.0, 67.5, 69.0, 70.5, 72.0, 73.5, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-756,RES1.FEMA-FIMA.contents.fema_fia_default_coastal_building_zone_v-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 24.0, 29.0, 37.0, 54.0, 60.5, 64.5, 68.0, 70.0, 72.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 87.0, 87.0, 87.0, 87.0, 87.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-757,RES1.FEMA-FIMA.contents.fema_fia_default_two_or_more_stories_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.5, 13.5, 19.5, 27.0, 30.0, 33.0, 36.0, 39.0, 43.5, 49.5, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-758,RES1.FEMA-FIMA.contents.fema_fia.1_story.with_basement_one_story-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 12.0, 16.5, 22.5, 30.0, 34.5, 42.0, 49.5, 57.0, 66.0, 73.5, 76.5, 79.5, 82.5, 85.5, 88.5, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-759,RES1.FEMA-FIMA.contents.fema_fia_default_split_level_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.5, 13.5, 19.5, 37.5, 40.5, 42.0, 49.5, 51.0, 61.5, 64.5, 67.5, 69.0, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-760,RES1.FEMA-FIMA.contents.fema_fia_default_two_or_more_stories_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 12.0, 16.5, 22.5, 30.0, 34.5, 42.0, 49.5, 57.0, 66.0, 73.5, 76.5, 79.5, 82.5, 85.5, 88.5, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-761,RES1.FEMA-FIMA.contents.fema_fia_default_coastal_building_zone_v-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 15.0, 23.0, 35.0, 50.0, 58.0, 63.0, 66.5, 69.5, 72.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 87.0, 87.0, 87.0, 87.0, 87.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-762,RES1.FEMA-BCA-Toolkit.contents.1_story_single_family_home.basement.fema_fia_original_source-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 6.0, 12.0, 16.5, 22.5, 30.0, 34.5, 42.0, 49.5, 57.0, 66.0, 73.5, 76.5, 79.5, 82.5, 85.5, 88.5, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-763,RES1.FEMA-BCA-Toolkit.contents.1_story_single_family_home.no_basement.fema_fia_original_source-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 13.5, 21.0, 33.0, 40.5, 43.5, 45.0, 60.0, 64.5, 66.0, 67.5, 69.0, 70.5, 72.0, 73.5, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0, 75.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-764,RES1.FEMA-BCA-Toolkit.contents.split_level_single_family_home.basement.fema_fia_original_source-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 4.5, 7.5, 9.0, 24.0, 28.5, 33.0, 40.5, 48.0, 52.5, 54.0, 66.0, 72.0, 75.0, 78.0, 81.0, 84.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-765,RES1.FEMA-BCA-Toolkit.contents.split_level_single_family_home.no_basement.fema_fia_original_source-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 4.5, 13.5, 19.5, 37.5, 40.5, 42.0, 49.5, 51.0, 61.5, 64.5, 67.5, 69.0, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5, 70.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-766,RES1.FEMA-BCA-Toolkit.contents.2_or_more_story_single_family_home.basement.fema_fia_original_source-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 6.0, 12.0, 16.5, 22.5, 30.0, 34.5, 42.0, 49.5, 57.0, 66.0, 73.5, 76.5, 79.5, 82.5, 85.5, 88.5, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-767,RES1.FEMA-BCA-Toolkit.contents.2_or_more_story_single_family_home.no_basement.fema_fia_original_source-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 7.5, 13.5, 19.5, 27.0, 30.0, 33.0, 36.0, 39.0, 43.5, 49.5, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0, 57.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-768,RES1.FEMA-BCA-Toolkit.contents.single_family_home.basement.fema_fia_original_source-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 11.0, 24.0, 29.0, 37.0, 54.0, 60.5, 64.5, 68.0, 70.0, 72.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-769,RES1.FEMA-BCA-Toolkit.contents.single_family_home.no_basement.fema_fia_original_source-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 6.0, 15.0, 23.0, 35.0, 50.0, 58.0, 63.0, 66.5, 69.5, 72.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 76.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0, 87.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-770,RES1.USACE-New-Orleans.contents.one_story.usace_new_orleans_one_story.pier_foundation.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 41.8, 62.9, 82.1, 84.6, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-771,RES1.USACE-New-Orleans.contents.one_story.usace_new_orleans_one_story.pier_foundation.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-772,RES1.USACE-New-Orleans.contents.one_story.usace_new_orleans_one_story.slab_foundation.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 41.8, 62.9, 82.1, 84.6, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2, 91.2|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-773,RES1.USACE-New-Orleans.contents.one_story.usace_new_orleans_one_story.slab_foundation.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-774,RES1.USACE-New-Orleans.contents.two_or_more.usace_new_orleans_two_story.pier_foundation.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 36.5, 50.8, 50.8, 55.3, 55.3, 55.3, 55.3, 55.3, 72.5, 80.7, 87.1, 90.1, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-775,RES1.USACE-New-Orleans.contents.two_or_more.usace_new_orleans_two_story.pier_foundation.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-776,RES1.USACE-New-Orleans.contents.two_or_more.usace_new_orleans_two_story.slab_foundation.structure.fresh_water.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 36.5, 50.8, 50.8, 55.3, 55.3, 55.3, 55.3, 55.3, 72.5, 80.7, 87.1, 90.1, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5, 92.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-777,RES1.USACE-New-Orleans.contents.two_or_more.usace_new_orleans_two_story.slab_foundation.structure.salt_water.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0, 95.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-778,RES1.USACE-Generic.contents.one_story.usace_generic.with_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 10.5, 13.2, 16.0, 18.9, 21.8, 24.7, 27.4, 30.0, 32.4, 34.5, 36.3, 37.7, 38.6, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1, 39.1|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-779,RES1.USACE-Generic.contents.one_story.usace_generic.with_no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 2.4, 8.1, 13.3, 17.9, 22.0, 25.7, 28.8, 31.5, 33.8, 35.7, 37.2, 38.4, 39.2, 39.7, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0, 40.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-780,RES1.USACE-Generic.contents.split_level.usace_generic.with_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 7.3, 9.4, 11.6, 13.8, 16.1, 18.2, 20.2, 22.1, 23.6, 24.9, 25.8, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3, 26.3|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-781,RES1.USACE-Generic.contents.split_level.usace_generic.with_no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 2.2, 2.9, 4.7, 7.5, 11.1, 15.3, 20.1, 25.2, 30.5, 35.7, 40.9, 45.8, 50.2, 54.1, 57.2, 59.4, 60.5, 60.5, 60.5, 60.5, 60.5, 60.5, 60.5, 60.5, 60.5, 60.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-782,RES1.USACE-Generic.contents.two_or_more_stories.usace_generic.with_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 8.4, 10.1, 11.9, 13.8, 15.7, 17.7, 19.8, 22.0, 24.3, 26.7, 29.1, 31.7, 34.4, 37.2, 40.0, 43.0, 46.1, 49.3, 52.6, 52.6, 52.6, 52.6, 52.6, 52.6, 52.6, 52.6, 52.6|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-783,RES1.USACE-Generic.contents.two_or_more_stories.usace_generic.with_no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 1.0, 5.0, 8.7, 12.2, 15.5, 18.5, 21.3, 23.9, 26.3, 28.4, 30.3, 32.0, 33.4, 34.7, 35.6, 36.4, 36.9, 37.2, 37.2, 37.2, 37.2, 37.2, 37.2, 37.2, 37.2, 37.2|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-784,RES2.FEMA-BCA-Toolkit.contents.bca_toolkit_manufactured_home_caz_and_v_zone_expert_panel-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-785,RES2.FEMA-BCA-Toolkit.contents.bca_toolkit_mobile_home_outside_caz_fema_fia_riverine_adjusted-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 66.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-786,RES2.FEMA-FIMA.contents.fema_fia_mobile_home_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 66.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-787,RES2.FEMA-FIMA.contents.fema_fia_mobile_home-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 66.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-788,RES2.FEMA-FIMA.contents.fema_fia_default_mobile_home-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 66.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-789,RES2.FEMA-FIMA.contents.fema_fia_default_mobile_home_zone_a-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 66.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-790,RES2.FEMA-BCA-Toolkit.contents.mobile_home.no_basement.fema_fia_original_source-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 12.0, 66.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0, 90.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-791,RES3.USACE-NACCS.contents.naccs_1a_1_apartments_1_story_no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 3.5, 28.0, 45.0, 60.0, 70.5, 81.0, 90.5, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-792,RES3.USACE-NACCS.contents.naccs_1a_3_apartments_3_story_no_basement-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.0, 15.0, 20.0, 25.0, 27.5, 30.0, 32.5, 35.0, 38.33333, 41.66667, 45.0, 48.33333, 51.66667, 55.0, 58.33333, 61.66667, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0, 65.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-793,RES3.USACE-NACCS.contents.naccs_4a_urban_high_rise-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.375, 0.5, 4.0, 5.0, 7.0, 7.5, 8.75, 10.0, 10.5, 11.0, 11.33333, 11.66667, 12.0, 12.33333, 12.66667, 13.0, 13.33333, 13.66667, 14.0, 14.0, 14.0, 14.0, 14.0, 14.0, 14.0, 14.0, 14.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-794,RES3.USACE-NACCS.contents.naccs_4b_beach_high_rise-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 4.5, 5.5, 6.25, 7.0, 7.75, 8.5, 8.66667, 8.83333, 9.0, 9.16667, 9.33333, 9.5, 9.66667, 9.83333, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0, 10.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-795,RES3.USACE-NACCS.contents.naccs_4b_beach_high_rise_waves-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 2.5, 21.0, 33.75, 52.5, 67.5, 82.5, 91.25, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-796,RES3.FEMA-BCA-Toolkit.contents.bca_toolkit_apartment_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-797,RES3.FEMA-BCA-Toolkit.contents.bca_toolkit_apartment_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-798,RES3.FEMA-BCA-Toolkit.contents.bca_toolkit_apartment_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-799,RES3.FEMA-BCA-Toolkit.contents.bca_toolkit_apartment_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-800,RES3.FEMA-BCA-Toolkit.contents.apartment.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-801,RES3.FEMA-BCA-Toolkit.contents.apartment.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 21.71429, 30.42857, 39.0, 45.0, 47.85714, 51.85714, 55.71429, 59.28571, 60.57143, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857, 63.42857|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-802,RES4.FEMA-BCA-Toolkit.contents.bca_toolkit_hotel_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.14286, 26.28571, 34.14286, 39.71429, 48.71429, 52.42857, 58.42857, 61.28571, 63.14286, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-803,RES4.FEMA-BCA-Toolkit.contents.bca_toolkit_hotel_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.14286, 26.28571, 34.14286, 39.71429, 48.71429, 52.42857, 58.42857, 61.28571, 63.14286, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-804,RES4.FEMA-BCA-Toolkit.contents.bca_toolkit_hotel_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.14286, 26.28571, 34.14286, 39.71429, 48.71429, 52.42857, 58.42857, 61.28571, 63.14286, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-805,RES4.FEMA-BCA-Toolkit.contents.bca_toolkit_hotel_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.14286, 26.28571, 34.14286, 39.71429, 48.71429, 52.42857, 58.42857, 61.28571, 63.14286, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-806,RES4.FEMA-BCA-Toolkit.contents.hotel.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 16.14286, 26.28571, 34.14286, 39.71429, 48.71429, 52.42857, 58.42857, 61.28571, 63.14286, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-807,RES4.FEMA-BCA-Toolkit.contents.hotel.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 16.14286, 26.28571, 34.14286, 39.71429, 48.71429, 52.42857, 58.42857, 61.28571, 63.14286, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714, 64.85714|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-808,RES4.USACE-Sacramento.contents.usace_sacramento_hotel_full_service.1_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 23.0, 90.0, 90.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-809,RES4.USACE-Sacramento.contents.usace_sacramento_hotel_full_service.2_story.short_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 20.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-810,RES4.USACE-Sacramento.contents.usace_sacramento_hotel_full_service.1_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 88.0, 88.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-811,RES4.USACE-Sacramento.contents.usace_sacramento_hotel_full_service.2_story.long_duration-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 42.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 56.0, 67.0, 67.0, 67.0, 67.0, 67.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0, 100.0|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-812,RES5.FEMA-BCA-Toolkit.contents.bca_toolkit_correctional_facility_default_non_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.125, 21.25, 31.0, 44.125, 53.0, 62.25, 69.5, 77.5, 83.75, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-813,RES5.FEMA-BCA-Toolkit.contents.bca_toolkit_correctional_facility_default_generic_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.125, 21.25, 31.0, 44.125, 53.0, 62.25, 69.5, 77.5, 83.75, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-814,RES5.FEMA-BCA-Toolkit.contents.bca_toolkit_correctional_facility_default_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.125, 21.25, 31.0, 44.125, 53.0, 62.25, 69.5, 77.5, 83.75, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-815,RES5.FEMA-BCA-Toolkit.contents.bca_toolkit_correctional_facility_default_non_generic_non_engineered_building-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.125, 21.25, 31.0, 44.125, 53.0, 62.25, 69.5, 77.5, 83.75, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-816,RES5.FEMA-BCA-Toolkit.contents.correctional_facility.engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 13.125, 21.25, 31.0, 44.125, 53.0, 62.25, 69.5, 77.5, 83.75, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
-817,RES5.FEMA-BCA-Toolkit.contents.correctional_facility.non_engineered-Cost,0,Peak Inundation Height,in,0,1,loss_ratio,"0.0, 0.0, 0.0, 0.0, 0.0, 13.125, 21.25, 31.0, 44.125, 53.0, 62.25, 69.5, 77.5, 83.75, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5, 87.5|-4.0, -3.0, -2.0, -1.0, 0.0, 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0, 13.0, 14.0, 15.0, 16.0, 17.0, 18.0, 19.0, 20.0, 21.0, 22.0, 23.0, 24.0"
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 00000000..136d8f80
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1,13 @@
+numpy
+scipy
+pandas
+matplotlib
+plotly
+pelicun
+colorlover
+sphinx
+sphinx_design
+sphinx-rtd-theme
+sphinxcontrib-bibtex
+numpydoc
+tqdm