Spaces:
Runtime error
Runtime error
Commit ·
1b0654b
1
Parent(s): fe74069
Migrated from github ComputationalModelling/demo
Browse filesOld repo: https://github.com/TomorrowsCities/ComputationalModelling/tree/main/demo
- Dockerfile +20 -0
- LICENSE +21 -0
- Museo900.otf +0 -0
- Museo900.woff +0 -0
- building_tv50_1.geojson +0 -0
- building_tv50_2.geojson +0 -0
- building_tv50_3.geojson +0 -0
- demo/.DS_Store +0 -0
- demo/__init__.py +3 -0
- demo/__pycache__/__init__.cpython-310.pyc +0 -0
- demo/assets/custom.css +18 -0
- demo/pages/.DS_Store +0 -0
- demo/pages/__init__.py +800 -0
- demo/pages/__pycache__/__init__.cpython-310.pyc +0 -0
- demo/pages/__pycache__/engine.cpython-310.pyc +0 -0
- demo/pages/engine.py +334 -0
- demo/public/Museo700-Regular.woff2 +0 -0
- demo/public/Museo900-Regular.woff +0 -0
- demo/public/Museo900-Regular.woff2 +0 -0
- demo/public/OpenSans400.woff2 +0 -0
- demo/public/open-sans.regular.ttf +0 -0
- demo/public/tomorrows-cities-logo-header.png +0 -0
- earthquake_fragility.csv +12 -0
- flood_vulnerability.csv +1261 -0
- hazard_debris.geojson +0 -0
- hazard_debris.xlsx +0 -0
- hazard_earthquake.geojson +0 -0
- hazard_flood.geojson +0 -0
- household_tv50_1.json +0 -0
- household_tv50_2.json +0 -0
- household_tv50_3.json +0 -0
- individual_tv50_1.json +0 -0
- individual_tv50_2.json +0 -0
- individual_tv50_3.json +0 -0
- landuse_tv0.geojson +0 -0
- landuse_tv50_1.geojson +0 -0
- landuse_tv50_1.png +0 -0
- landuse_tv50_1_selected.png +0 -0
- landuse_tv50_2.geojson +0 -0
- landuse_tv50_2.png +0 -0
- landuse_tv50_2_selected.png +0 -0
- landuse_tv50_3.geojson +0 -0
- landuse_tv50_3.png +0 -0
- landuse_tv50_3_selected.png +0 -0
- mypy.ini +3 -0
- pre_process.py +27 -0
- pyproject.toml +26 -0
- requirements.txt +8 -0
Dockerfile
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM python:3.9
|
| 2 |
+
|
| 3 |
+
RUN useradd -m -u 1000 user
|
| 4 |
+
|
| 5 |
+
#USER root
|
| 6 |
+
RUN apt update
|
| 7 |
+
RUN apt -y install gdal-bin libgdal-dev
|
| 8 |
+
|
| 9 |
+
USER user
|
| 10 |
+
|
| 11 |
+
ENV HOME=/home/user \
|
| 12 |
+
PATH=/home/user/.local/bin:$PATH
|
| 13 |
+
|
| 14 |
+
COPY --chown=user . $HOME/app
|
| 15 |
+
|
| 16 |
+
WORKDIR $HOME/app
|
| 17 |
+
|
| 18 |
+
RUN (cd demo & pip install -e .)
|
| 19 |
+
|
| 20 |
+
CMD ["solara", "run", "--theme-variant", "dark", "demo.pages", "--host", "0.0.0.0", "--port", "7860"]
|
LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
The MIT License (MIT)
|
| 2 |
+
|
| 3 |
+
Copyright (c) 2022
|
| 4 |
+
|
| 5 |
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
| 6 |
+
of this software and associated documentation files (the "Software"), to deal
|
| 7 |
+
in the Software without restriction, including without limitation the rights
|
| 8 |
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
| 9 |
+
copies of the Software, and to permit persons to whom the Software is
|
| 10 |
+
furnished to do so, subject to the following conditions:
|
| 11 |
+
|
| 12 |
+
The above copyright notice and this permission notice shall be included in
|
| 13 |
+
all copies or substantial portions of the Software.
|
| 14 |
+
|
| 15 |
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
| 16 |
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
| 17 |
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
| 18 |
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
| 19 |
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
| 20 |
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
| 21 |
+
THE SOFTWARE.
|
Museo900.otf
ADDED
|
Binary file (129 kB). View file
|
|
|
Museo900.woff
ADDED
|
Binary file (26.2 kB). View file
|
|
|
building_tv50_1.geojson
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
building_tv50_2.geojson
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
building_tv50_3.geojson
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
demo/.DS_Store
ADDED
|
Binary file (6.15 kB). View file
|
|
|
demo/__init__.py
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Example Solara app as python packages"""
|
| 2 |
+
__title__ = "Solara example app"
|
| 3 |
+
__version__ = "0.0.1"
|
demo/__pycache__/__init__.cpython-310.pyc
ADDED
|
Binary file (366 Bytes). View file
|
|
|
demo/assets/custom.css
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
header {
|
| 2 |
+
background-image: url('/static/public/tomorrows-cities-logo-header.png'); /* Replace 'your-image.jpg' with the path to your image file */
|
| 3 |
+
background-position: center; /* Center the background image */
|
| 4 |
+
background-repeat: no-repeat; /* Prevent image from repeating */
|
| 5 |
+
height: 200px; /* Set a specific height for the header */
|
| 6 |
+
}
|
| 7 |
+
|
| 8 |
+
.v-application--wrap > div:nth-child(2) > div:nth-child(2){
|
| 9 |
+
display: none !important;
|
| 10 |
+
}
|
| 11 |
+
|
| 12 |
+
.theme--light.v-sheet {
|
| 13 |
+
background-color: #EBEBEB;
|
| 14 |
+
}
|
| 15 |
+
|
| 16 |
+
.v-navigation-drawer__content {
|
| 17 |
+
background-color: #EBEBEB;
|
| 18 |
+
}
|
demo/pages/.DS_Store
ADDED
|
Binary file (6.15 kB). View file
|
|
|
demo/pages/__init__.py
ADDED
|
@@ -0,0 +1,800 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#%%
|
| 2 |
+
css = """
|
| 3 |
+
|
| 4 |
+
@font-face {
|
| 5 |
+
font-family: 'Open Sans';
|
| 6 |
+
font-style: normal;
|
| 7 |
+
font-weight: 400;
|
| 8 |
+
font-stretch: 100%;
|
| 9 |
+
font-display: swap;
|
| 10 |
+
src: url('/static/public/open-sans.regular.ttf') format('truetype');
|
| 11 |
+
}
|
| 12 |
+
|
| 13 |
+
@font-face {
|
| 14 |
+
font-family: 'Museo 900';
|
| 15 |
+
src: url('/static/public/Museo900-Regular.woff2') format('woff2'),
|
| 16 |
+
url('/static/public/Museo900-Regular.woff') format('woff');
|
| 17 |
+
font-weight: 900;
|
| 18 |
+
font-style: normal;
|
| 19 |
+
font-display: swap;
|
| 20 |
+
}
|
| 21 |
+
|
| 22 |
+
|
| 23 |
+
@font-face {
|
| 24 |
+
font-family: 'Museo 700';
|
| 25 |
+
src: url('/static/public/Museo700-Regular.woff2') format('woff2')
|
| 26 |
+
}
|
| 27 |
+
|
| 28 |
+
|
| 29 |
+
.v-application {
|
| 30 |
+
font-family: 'Open Sans'
|
| 31 |
+
}
|
| 32 |
+
|
| 33 |
+
.v-card__title {
|
| 34 |
+
padding: 2px;
|
| 35 |
+
font-family: 'Museo 900'
|
| 36 |
+
}
|
| 37 |
+
|
| 38 |
+
.v-application .ma-2 {
|
| 39 |
+
margin: 2px!important;
|
| 40 |
+
}
|
| 41 |
+
|
| 42 |
+
.leaflet-control-attribution {
|
| 43 |
+
display: none;
|
| 44 |
+
}
|
| 45 |
+
.v-btn__content {
|
| 46 |
+
font-size: 12px;
|
| 47 |
+
}
|
| 48 |
+
|
| 49 |
+
.v-input__control {
|
| 50 |
+
height: 30px
|
| 51 |
+
}
|
| 52 |
+
|
| 53 |
+
.jupyter-widgets.leaflet-widgets {
|
| 54 |
+
height: 300px;
|
| 55 |
+
overflow: hidden;
|
| 56 |
+
}
|
| 57 |
+
|
| 58 |
+
.col {
|
| 59 |
+
overflow: hidden;
|
| 60 |
+
}
|
| 61 |
+
|
| 62 |
+
.v-card__title {
|
| 63 |
+
font-size: 20px;
|
| 64 |
+
text-color: "orange";
|
| 65 |
+
}
|
| 66 |
+
|
| 67 |
+
label.v-label.theme--dark {
|
| 68 |
+
font-size: 14px;
|
| 69 |
+
line-height: 100%;
|
| 70 |
+
}
|
| 71 |
+
|
| 72 |
+
.metricdesc {
|
| 73 |
+
font-size: 15px;
|
| 74 |
+
margin-top: -30px;
|
| 75 |
+
text-align: center;
|
| 76 |
+
}
|
| 77 |
+
.infobox {
|
| 78 |
+
font-size: 14px;
|
| 79 |
+
line-height: 110%;
|
| 80 |
+
}
|
| 81 |
+
|
| 82 |
+
.infoitem {
|
| 83 |
+
font-size: 12px;
|
| 84 |
+
line-height: 110%;
|
| 85 |
+
}
|
| 86 |
+
|
| 87 |
+
.maintitle {
|
| 88 |
+
font-family: 'Museo 900';
|
| 89 |
+
font-size: 30px;
|
| 90 |
+
text-align: center;
|
| 91 |
+
}
|
| 92 |
+
|
| 93 |
+
"""
|
| 94 |
+
|
| 95 |
+
import solara
|
| 96 |
+
from lorem_text import lorem
|
| 97 |
+
#import solara.express as px
|
| 98 |
+
import plotly.express as px
|
| 99 |
+
import pandas as pd
|
| 100 |
+
import geopandas as gpd
|
| 101 |
+
import plotly.graph_objects as go
|
| 102 |
+
import ipyleaflet
|
| 103 |
+
from random import uniform
|
| 104 |
+
import random
|
| 105 |
+
import numpy as np
|
| 106 |
+
from branca.colormap import linear
|
| 107 |
+
import json
|
| 108 |
+
import math
|
| 109 |
+
import matplotlib.pyplot as plt
|
| 110 |
+
from plotly.subplots import make_subplots
|
| 111 |
+
from matplotlib.figure import Figure
|
| 112 |
+
from .engine import run_engine
|
| 113 |
+
|
| 114 |
+
languages = ["EN","TR"]
|
| 115 |
+
lang = solara.reactive("EN")
|
| 116 |
+
|
| 117 |
+
lbl_land_use_btn = [{'EN': 'school and hospital oriented',
|
| 118 |
+
'TR': 'okul ve hastane odaklı'},
|
| 119 |
+
{'EN': 'population increase oriented',
|
| 120 |
+
'TR': 'nüfus artışı odaklı'},
|
| 121 |
+
{'EN': 'green area oriented',
|
| 122 |
+
'TR': 'Yeşil çevre odaklı'},]
|
| 123 |
+
lbl_maintitle = {'EN': 'Tomorrow\'s Cities Decision Making Simulation','TR': 'Yarının Şehirleri için Karar Verme Simülasyonu'}
|
| 124 |
+
lbl_earthquake= {'EN': 'Earthquake', 'TR': 'Deprem'}
|
| 125 |
+
lbl_flood = {'EN': 'Flood', 'TR': 'Sel'}
|
| 126 |
+
lbl_debris = {'EN': 'Landslide', 'TR': 'Heyelan'}
|
| 127 |
+
lbl_reset = {'EN': 'Reset Simulation', 'TR': 'Simülasyonu Sıfırla'}
|
| 128 |
+
lbl_language = {'EN': 'Language', 'TR': 'Dil'}
|
| 129 |
+
lbl_luf_res_high = {'EN': 'Residential (High Density)', 'TR': 'Yerlesim Alani (Yuksek Yogunluk)'}
|
| 130 |
+
lbl_tv0_map_title = {'EN': '1. Today\'s land use', 'TR': '1. Mevcut plan'}
|
| 131 |
+
lbl_density_map_title = {'EN': '2. Select the potential hazard', 'TR': '2. Olası tehlikeyi seçin'}
|
| 132 |
+
lbl_policy_card_title = {'EN': '4. Select three policies to make your city resillient', 'TR': '4. Şehrinizi dayanıklı hale getirmek için üç politika seçin'}
|
| 133 |
+
lbl_too_many_policy_selected_error = {'EN': 'You cannot select more than three policies',
|
| 134 |
+
'TR': 'Üçten fazla politika seçemezsiniz.'}
|
| 135 |
+
lbl_infobox = {'EN': f'''
|
| 136 |
+
Our decisions directly influence our future. It is critical for a
|
| 137 |
+
resilient city life where the decisions at the city scale reduces the disaster risk in the future.
|
| 138 |
+
In this simulation, we calculate possible disaster impacts calculated with Tomorrow's Cities Decision
|
| 139 |
+
Support System (TCDSE). The simulation shows how earthquake, flood and landslide hazards that may occur
|
| 140 |
+
in an imaginary urban environment affect different urban scenarios. To use the simulation 1) Select the
|
| 141 |
+
possible hazard 2) Select the possible city scenarios for the future 3) In order to reduce the impact
|
| 142 |
+
against potential hazards; choose policies.
|
| 143 |
+
''',
|
| 144 |
+
"TR": f'''
|
| 145 |
+
Aldığımız kararlar, geleceğimizi doğrudan etkilemektedir. Kent ölçeğinde alınan kararların, gelecekte afet riskini azaltacak
|
| 146 |
+
nitelikte olması dayanıklı bir şehir hayatı için kritik öneme sahiptir.
|
| 147 |
+
Bu simülasyonda, Yarının Şehirleri Karar Destek Sistemi (TCDSE) ile hesaplanan olası afet etkilerini hesaplıyoruz. Simülasyon,
|
| 148 |
+
hayali bir kent ortamında meydana gelebilecek deprem, sel ve heyelan tehlikelerinin, farklı kent senaryolarını nasıl etkilediğini gösteriyor.
|
| 149 |
+
Simülasyonu kullanmak için 1) Olası tehlikeyi seçin 2) Geleceğe dair olası şehir senaryolarını seçin 3) Bu şehrin olası tehlikeler karşısında en
|
| 150 |
+
az etkiye maruz kalması için; hangi politikalarla yönetileceğini seçin.'''}
|
| 151 |
+
lbl_infobox_title = {'EN': '', 'TR': ''}
|
| 152 |
+
lbl_landuse_plans_title = {'EN': '3. Future land uses', 'TR': '3. Geleceğin alternatif yerleşim planlarından birini seçin'}
|
| 153 |
+
lbl_run_btn = {'EN': 'RUN', 'TR': 'ÇALIŞTIR'}
|
| 154 |
+
lbl_results_card_title = {'EN': '5. Impact metrics', 'TR': '5. Etki metrikleri'}
|
| 155 |
+
lbl_info1 = {'EN': 'Number of individuals<br>39058', 'TR': 'Kişi Sayısı<br>39058'}
|
| 156 |
+
lbl_info2 = {'EN': 'Number of households<br>10397', 'TR': 'Hane Sayısı<br>10397'}
|
| 157 |
+
lbl_info3 = {'EN': 'Number of buildings<br>4810', 'TR': 'Bina Sayısı<br>4810'}
|
| 158 |
+
lbl_info4 = {'EN': 'Number of schools<br>4', 'TR': 'Okul Sayısı<br>4'}
|
| 159 |
+
lbl_info5 = {'EN': 'Number of hospitals<br>1', 'TR': 'Hastane Sayısı<br>1'}
|
| 160 |
+
#lbl_info6 = {'EN': 'Number of green field<br>', 'TR': 'Yesil Alan Sayisi<br>'}
|
| 161 |
+
|
| 162 |
+
hazard_types = ["earthquake", "flood", "debris"]
|
| 163 |
+
hazard_type_default = hazard_types[0]
|
| 164 |
+
hazard_type = solara.reactive("earthquake")
|
| 165 |
+
|
| 166 |
+
flood_df = gpd.read_file('hazard_flood.geojson')
|
| 167 |
+
debris_df = gpd.read_file('hazard_debris.geojson')
|
| 168 |
+
earthquake_df = gpd.read_file('hazard_earthquake.geojson')
|
| 169 |
+
|
| 170 |
+
earthquake_df_as_geo = gpd.read_file('hazard_earthquake.geojson')
|
| 171 |
+
print('bir',earthquake_df_as_geo.crs)
|
| 172 |
+
earthquake_df_as_geo = earthquake_df_as_geo.set_crs("EPSG:4326",allow_override=True)
|
| 173 |
+
print('iki',earthquake_df_as_geo.crs)
|
| 174 |
+
earthquake_df_as_geo = earthquake_df_as_geo.to_crs(32645)
|
| 175 |
+
print('uc',earthquake_df_as_geo.crs)
|
| 176 |
+
|
| 177 |
+
|
| 178 |
+
debris_df_as_geo = gpd.read_file('hazard_debris.geojson')
|
| 179 |
+
debris_df_as_geo = debris_df_as_geo.set_crs("EPSG:4326",allow_override=True)
|
| 180 |
+
debris_df_as_geo = debris_df_as_geo.to_crs("EPSG:32645")
|
| 181 |
+
|
| 182 |
+
flood_df_as_geo = gpd.read_file('hazard_flood.geojson')
|
| 183 |
+
flood_df_as_geo = flood_df_as_geo.set_crs("EPSG:4326",allow_override=True)
|
| 184 |
+
flood_df_as_geo = flood_df_as_geo.to_crs("EPSG:32645")
|
| 185 |
+
|
| 186 |
+
landuse_tv0_df = gpd.read_file('landuse_tv0.geojson')
|
| 187 |
+
landuse_tv50_1_df = gpd.read_file('landuse_tv50_1.geojson')
|
| 188 |
+
landuse_tv50_2_df = gpd.read_file('landuse_tv50_2.geojson')
|
| 189 |
+
landuse_tv50_3_df = gpd.read_file('landuse_tv50_3.geojson')
|
| 190 |
+
n_landuses = 3
|
| 191 |
+
|
| 192 |
+
luf_types = pd.unique(landuse_tv0_df['luf'])
|
| 193 |
+
|
| 194 |
+
luf_colors = dict()
|
| 195 |
+
for luf_label in luf_types:
|
| 196 |
+
if luf_label == 'RESIDENTIAL (HIGH DENSITY)':
|
| 197 |
+
luf_colors[luf_label] = {
|
| 198 |
+
'color': 'black',
|
| 199 |
+
'fillColor': '#A0522D', # sienna
|
| 200 |
+
}
|
| 201 |
+
elif luf_label == 'HISTORICAL PRESERVATION AREA':
|
| 202 |
+
luf_colors[luf_label] = {
|
| 203 |
+
'color': 'black',
|
| 204 |
+
'fillColor': '#673147', # plum
|
| 205 |
+
}
|
| 206 |
+
elif luf_label == 'RESIDENTIAL (MODERATE DENSITY)':
|
| 207 |
+
luf_colors[luf_label] = {
|
| 208 |
+
'color': 'black',
|
| 209 |
+
'fillColor': '#cd853f', # peru
|
| 210 |
+
}
|
| 211 |
+
elif luf_label == 'COMMERCIAL AND RESIDENTIAL':
|
| 212 |
+
luf_colors[luf_label] = {
|
| 213 |
+
'color': 'black',
|
| 214 |
+
'fillColor': 'red',
|
| 215 |
+
}
|
| 216 |
+
elif luf_label == 'CITY CENTER':
|
| 217 |
+
luf_colors[luf_label] = {
|
| 218 |
+
'color': 'black',
|
| 219 |
+
'fillColor': '#E6E6FA', # lavender
|
| 220 |
+
}
|
| 221 |
+
elif luf_label == 'INDUSTRY':
|
| 222 |
+
luf_colors[luf_label] = {
|
| 223 |
+
'color': 'black',
|
| 224 |
+
'fillColor': 'grey',
|
| 225 |
+
}
|
| 226 |
+
elif luf_label == 'RESIDENTIAL (LOW DENSITY)':
|
| 227 |
+
luf_colors[luf_label] = {
|
| 228 |
+
'color': 'black',
|
| 229 |
+
'fillColor': '#D2B48C', # tan
|
| 230 |
+
}
|
| 231 |
+
elif luf_label == 'RESIDENTIAL (GATED NEIGHBORHOOD)':
|
| 232 |
+
luf_colors[luf_label] = {
|
| 233 |
+
'color': 'black',
|
| 234 |
+
'fillColor': 'orange',
|
| 235 |
+
}
|
| 236 |
+
elif luf_label == 'AGRICULTURE':
|
| 237 |
+
luf_colors[luf_label] = {
|
| 238 |
+
'color': 'black',
|
| 239 |
+
'fillColor': 'yellow',
|
| 240 |
+
}
|
| 241 |
+
elif luf_label == 'FOREST':
|
| 242 |
+
luf_colors[luf_label] = {
|
| 243 |
+
'color': 'black',
|
| 244 |
+
'fillColor': 'green',
|
| 245 |
+
}
|
| 246 |
+
elif luf_label == 'VACANT ZONE':
|
| 247 |
+
luf_colors[luf_label] = {
|
| 248 |
+
'color': 'black',
|
| 249 |
+
'fillColor': '#90EE90', # lightgreen
|
| 250 |
+
}
|
| 251 |
+
elif luf_label == 'RECREATION AREA':
|
| 252 |
+
luf_colors[luf_label] = {
|
| 253 |
+
'color': 'black',
|
| 254 |
+
'fillColor': '#32CD32', #lime
|
| 255 |
+
}
|
| 256 |
+
else:
|
| 257 |
+
luf_colors[luf_label] = {
|
| 258 |
+
'color': 'black',
|
| 259 |
+
'fillColor': random.choice(['red', 'yellow', 'green', 'orange','blue']),
|
| 260 |
+
}
|
| 261 |
+
|
| 262 |
+
#
|
| 263 |
+
plt.switch_backend("agg")
|
| 264 |
+
plt.rcParams['axes.facecolor'] = '#1e1e1e'
|
| 265 |
+
plt.rcParams['axes.edgecolor'] = '#1e1e1e'
|
| 266 |
+
#plt.switch_backend('macosx')
|
| 267 |
+
#%matplotlib inline
|
| 268 |
+
for j in range(1, n_landuses+1):
|
| 269 |
+
df = eval(f'landuse_tv50_{j}_df')
|
| 270 |
+
title = f'tv50_{j}'
|
| 271 |
+
for i, row in df.iterrows():
|
| 272 |
+
df.loc[i, 'color'] = luf_colors[row['luf']]['fillColor']
|
| 273 |
+
fig, ax = plt.subplots(nrows=1, ncols=1,figsize=(4*1.3, 5*1.3))
|
| 274 |
+
fig.set_tight_layout(True)
|
| 275 |
+
fig.patch.set_facecolor('white')
|
| 276 |
+
#fig.patch.set_alpha(0.7)
|
| 277 |
+
df.plot(color=df['color'],ax=ax)
|
| 278 |
+
#ax.set_title(f'{title}')
|
| 279 |
+
ax.set_xticks([])
|
| 280 |
+
ax.set_yticks([])
|
| 281 |
+
plt.savefig(f'landuse_{title}_selected.png')
|
| 282 |
+
|
| 283 |
+
fig, ax = plt.subplots(nrows=1, ncols=1,figsize=(4*1.3,5*1.3))
|
| 284 |
+
fig.set_tight_layout(True)
|
| 285 |
+
#fig.patch.set_facecolor('black')
|
| 286 |
+
fig.patch.set_alpha(0.0)
|
| 287 |
+
df.plot(color=df['color'],ax=ax)
|
| 288 |
+
#ax.set_title(f'{title}')
|
| 289 |
+
ax.set_xticks([])
|
| 290 |
+
ax.set_yticks([])
|
| 291 |
+
plt.savefig(f'landuse_{title}.png')
|
| 292 |
+
|
| 293 |
+
landuse_tv0_json = json.loads(landuse_tv0_df.to_json())
|
| 294 |
+
luf_filtered_data = solara.reactive(landuse_tv0_json)
|
| 295 |
+
|
| 296 |
+
luf_selected = solara.reactive(luf_types)
|
| 297 |
+
luf_type_selected = dict()
|
| 298 |
+
for luf_type in luf_types:
|
| 299 |
+
luf_type_selected[luf_type] = solara.reactive(True)
|
| 300 |
+
|
| 301 |
+
lbl_luf = dict()
|
| 302 |
+
for luf_label in luf_types:
|
| 303 |
+
if luf_label == 'RESIDENTIAL (HIGH DENSITY)':
|
| 304 |
+
lbl_luf[luf_label] = {'EN': 'Residential (High Density)', 'TR': 'Konut Alanı (Yuksek Yoğunluk)'}
|
| 305 |
+
elif luf_label == 'HISTORICAL PRESERVATION AREA':
|
| 306 |
+
lbl_luf[luf_label] = {'EN': 'Historical Preservation', 'TR': 'Tarihi Sit Alanı'}
|
| 307 |
+
elif luf_label == 'RESIDENTIAL (MODERATE DENSITY)':
|
| 308 |
+
lbl_luf[luf_label] = {'EN': 'Residential (Moderate Density)', 'TR': 'Konut Alanı (Orta Yoğunluk)'}
|
| 309 |
+
elif luf_label == 'COMMERCIAL AND RESIDENTIAL':
|
| 310 |
+
lbl_luf[luf_label] = {'EN': 'Commercial and Residential', 'TR': 'Konut ve Ticari'}
|
| 311 |
+
elif luf_label == 'CITY CENTER':
|
| 312 |
+
lbl_luf[luf_label] = {'EN': 'City Center', 'TR': 'Şehir Merkezi'}
|
| 313 |
+
elif luf_label == 'INDUSTRY':
|
| 314 |
+
lbl_luf[luf_label] = {'EN': 'Industry', 'TR': 'Sanayi'}
|
| 315 |
+
elif luf_label == 'RESIDENTIAL (LOW DENSITY)':
|
| 316 |
+
lbl_luf[luf_label] = {'EN': 'Residential (Low Density)', 'TR': 'Konut Alanı (Düşük Yoğunluk)'}
|
| 317 |
+
elif luf_label == 'RESIDENTIAL (GATED NEIGHBORHOOD)':
|
| 318 |
+
lbl_luf[luf_label] = {'EN': 'Residential (Gated Community)', 'TR': 'Konut Alanı (Site)'}
|
| 319 |
+
elif luf_label == 'AGRICULTURE':
|
| 320 |
+
lbl_luf[luf_label] = {'EN': 'Agriculture', 'TR': 'Tarım'}
|
| 321 |
+
elif luf_label == 'FOREST':
|
| 322 |
+
lbl_luf[luf_label] = {'EN': 'Forest', 'TR': 'Orman'}
|
| 323 |
+
elif luf_label == 'VACANT ZONE':
|
| 324 |
+
lbl_luf[luf_label] = {'EN': 'Vacant Zone', 'TR': 'Boş Alan'}
|
| 325 |
+
elif luf_label == 'RECREATION AREA':
|
| 326 |
+
lbl_luf[luf_label] = {'EN': 'Recreation Area', 'TR': 'Park'}
|
| 327 |
+
else:
|
| 328 |
+
lbl_luf[luf_label] = {'EN': luf_label, 'TR': '(TR)'+luf_label}
|
| 329 |
+
|
| 330 |
+
policies = [1,2,3,4,5,6]
|
| 331 |
+
lbl_policy = dict()
|
| 332 |
+
lbl_policy[1] = {'EN': 'Loans for reconstruction for minor to moderate damages',
|
| 333 |
+
'TR': 'Küçük ila orta dereceli hasarlar için yeniden yapılanma kredileri'}
|
| 334 |
+
lbl_policy[2] = {'EN': 'Knowledge sharing about disaster risk reduction in public and private schools',
|
| 335 |
+
'TR': 'Devlet ve özel okullarda afet risklerinin azaltılması hakkında bilgi paylaşımı'}
|
| 336 |
+
lbl_policy[3] = {'EN': 'Cat-bond agreement for education and health facilities',
|
| 337 |
+
'TR': 'Eğitim ve sağlık tesisleri için afet bonosu'}
|
| 338 |
+
lbl_policy[4] = {'EN': 'Repair loan assistance for flooding',
|
| 339 |
+
'TR': 'Sel için onarım kredisi yardımı'}
|
| 340 |
+
lbl_policy[5] = {'EN': 'Technical assistance for debris removal in education facilities',
|
| 341 |
+
'TR': 'Eğitim tesislerinde enkaz kaldırma için teknik yardım'}
|
| 342 |
+
lbl_policy[6] = {'EN': 'Compulsory content insurance for schools and hospitals',
|
| 343 |
+
'TR': 'Okullar ve hastaneler için zorunlu eşya sigortası'}
|
| 344 |
+
#lbl_policy[7] = {'EN': 'Green resilient infrastructure (prevention) & financial support for business recovery', 'TR': 'Politika 7'}
|
| 345 |
+
#lbl_policy[8] = {'EN': 'Green resilient infrastructure (prevention), reinforcement of schools, hospitals & shelters, financial support for affected business & household', 'TR': 'Politika 8'}
|
| 346 |
+
policy_selected = dict()
|
| 347 |
+
for policy in policies:
|
| 348 |
+
policy_selected[policy] = solara.reactive(False)
|
| 349 |
+
last_selected_policies = solara.reactive(set())
|
| 350 |
+
|
| 351 |
+
earthquake_locs = np.array([earthquake_df.geometry.y.to_list(), earthquake_df.geometry.x.to_list(), earthquake_df.im.to_list()]).transpose().tolist()
|
| 352 |
+
flood_locs = np.array([flood_df.geometry.y.to_list(), flood_df.geometry.x.to_list(), flood_df.im.to_list()]).transpose().tolist()
|
| 353 |
+
debris_locs = np.array([debris_df.geometry.y.to_list(), debris_df.geometry.x.to_list(), debris_df.im.to_list()]).transpose().tolist()
|
| 354 |
+
|
| 355 |
+
hazard_intensities = {
|
| 356 |
+
"earthquake": earthquake_locs,
|
| 357 |
+
"flood": flood_locs,
|
| 358 |
+
"debris": debris_locs
|
| 359 |
+
}
|
| 360 |
+
|
| 361 |
+
hazard_df = {
|
| 362 |
+
"earthquake": earthquake_df,
|
| 363 |
+
"flood": flood_df,
|
| 364 |
+
"debris": debris_df
|
| 365 |
+
}
|
| 366 |
+
|
| 367 |
+
hazard_df_as_geo = {
|
| 368 |
+
"earthquake": earthquake_df_as_geo,
|
| 369 |
+
"flood": flood_df_as_geo,
|
| 370 |
+
"debris": debris_df_as_geo
|
| 371 |
+
}
|
| 372 |
+
|
| 373 |
+
zoom_default = 13
|
| 374 |
+
tv0_zoom = solara.reactive(zoom_default)
|
| 375 |
+
|
| 376 |
+
tv0_center_default = (flood_df.geometry.y.mean(), flood_df.geometry.x.mean())
|
| 377 |
+
tv0_center = solara.reactive(tv0_center_default)
|
| 378 |
+
print(tv0_center)
|
| 379 |
+
def random_color(feature):
|
| 380 |
+
return luf_colors[feature['properties']['luf']]
|
| 381 |
+
|
| 382 |
+
@solara.component
|
| 383 |
+
def TV0MAP():
|
| 384 |
+
selected_lufs = set()
|
| 385 |
+
for luf_type in luf_types:
|
| 386 |
+
if luf_type_selected[luf_type].value:
|
| 387 |
+
selected_lufs.add(luf_type)
|
| 388 |
+
x = {'type':landuse_tv0_json['type'] }
|
| 389 |
+
x['features'] = []
|
| 390 |
+
for f in landuse_tv0_json['features']:
|
| 391 |
+
if f['properties']['luf'] in selected_lufs:
|
| 392 |
+
x['features'].append(f)
|
| 393 |
+
ipyleaflet.Map.element(
|
| 394 |
+
zoom=tv0_zoom.value,
|
| 395 |
+
on_zoom=tv0_zoom.set,
|
| 396 |
+
max_zoom=zoom_default,
|
| 397 |
+
min_zoom=zoom_default,
|
| 398 |
+
center=tv0_center.value,
|
| 399 |
+
on_center=tv0_center.set,
|
| 400 |
+
scroll_wheel_zoom=False,
|
| 401 |
+
dragging=False,
|
| 402 |
+
double_click_zoom=False,
|
| 403 |
+
touch_zoom=False,
|
| 404 |
+
box_zoom=False,
|
| 405 |
+
keyboard=False,
|
| 406 |
+
zoom_control=False,
|
| 407 |
+
layers=[
|
| 408 |
+
ipyleaflet.basemap_to_tiles(ipyleaflet.basemaps.Esri.WorldImagery),
|
| 409 |
+
ipyleaflet.GeoJSON(
|
| 410 |
+
data=x,
|
| 411 |
+
style={
|
| 412 |
+
'opacity': 1, 'dashArray': '9', 'fillOpacity': 0.5, 'weight': 1
|
| 413 |
+
},
|
| 414 |
+
hover_style={
|
| 415 |
+
'color': 'white', 'dashArray': '0', 'fillOpacity': 0.5
|
| 416 |
+
},
|
| 417 |
+
style_callback=random_color)
|
| 418 |
+
],
|
| 419 |
+
)
|
| 420 |
+
|
| 421 |
+
@solara.component
|
| 422 |
+
def DensityMap(hazard_type):
|
| 423 |
+
locs = hazard_intensities[hazard_type]
|
| 424 |
+
ipyleaflet.Map.element(
|
| 425 |
+
zoom=tv0_zoom.value,
|
| 426 |
+
max_zoom=zoom_default,
|
| 427 |
+
min_zoom=zoom_default,
|
| 428 |
+
on_zoom=tv0_zoom.set,
|
| 429 |
+
center=tv0_center.value,
|
| 430 |
+
on_center=tv0_center.set,
|
| 431 |
+
scroll_wheel_zoom=False,
|
| 432 |
+
dragging=False,
|
| 433 |
+
double_click_zoom=False,
|
| 434 |
+
touch_zoom=False,
|
| 435 |
+
box_zoom=False,
|
| 436 |
+
keyboard=False,
|
| 437 |
+
zoom_control=False,
|
| 438 |
+
layers=[
|
| 439 |
+
ipyleaflet.basemap_to_tiles(ipyleaflet.basemaps.Esri.WorldTopoMap),
|
| 440 |
+
ipyleaflet.Heatmap(
|
| 441 |
+
name=hazard_type,
|
| 442 |
+
locations=locs,
|
| 443 |
+
radius=10
|
| 444 |
+
),
|
| 445 |
+
],
|
| 446 |
+
)
|
| 447 |
+
|
| 448 |
+
|
| 449 |
+
run_is_allowed = solara.reactive(True)
|
| 450 |
+
|
| 451 |
+
@solara.component
|
| 452 |
+
def PolicyValidation():
|
| 453 |
+
npolicies_selected = 0
|
| 454 |
+
selected_policies = set()
|
| 455 |
+
for p in policies:
|
| 456 |
+
if policy_selected[p].value:
|
| 457 |
+
selected_policies.add(p)
|
| 458 |
+
npolicies_selected += 1
|
| 459 |
+
if npolicies_selected > 3:
|
| 460 |
+
print("roll-back")
|
| 461 |
+
solara.Warning(label=lbl_too_many_policy_selected_error[lang.value])
|
| 462 |
+
run_is_allowed.value = False
|
| 463 |
+
# Roll-back to last selection
|
| 464 |
+
#for p in policies:
|
| 465 |
+
# if p in last_selected_policies.value:
|
| 466 |
+
# policy_selected[p].value = True
|
| 467 |
+
# else:
|
| 468 |
+
# policy_selected[p].value = False
|
| 469 |
+
else:
|
| 470 |
+
last_selected_policies.value = selected_policies
|
| 471 |
+
run_is_allowed.value = True
|
| 472 |
+
|
| 473 |
+
|
| 474 |
+
landuseplan_selected = solara.reactive(1)
|
| 475 |
+
|
| 476 |
+
lbl_metric1 = {"EN": "Number of workers unemployed", "TR": "İşini kaybedenlerin sayısı"}
|
| 477 |
+
lbl_metric2 = {"EN": "Number of children with no access to education", "TR": "Okula gidemeyen çocuk sayısı"}
|
| 478 |
+
lbl_metric3 = {"EN": "Number of households with no access to hospital", "TR": "Hastane erişimi olmayan hane sayısı"}
|
| 479 |
+
lbl_metric4 = {"EN": "Number of individuals with no access to hospital", "TR": "Hastane erişimi olmayan kişi sayısı"}
|
| 480 |
+
lbl_metric5 = {"EN": "Number of homeless households", "TR": "İşlevsiz kalan hane sayısı"}
|
| 481 |
+
lbl_metric6 = {"EN": "Number of homeless individuals", "TR": "Evsiz kalan sayısı"}
|
| 482 |
+
lbl_metric7 = {"EN": "Population displacement", "TR": "Yer değiştirmek zorunda kalan kişi sayısı"}
|
| 483 |
+
|
| 484 |
+
metrics = {"metric1": {"desc": lbl_metric1, "value": solara.reactive(0), "max_value": solara.reactive(0)},
|
| 485 |
+
"metric2": {"desc": lbl_metric2, "value": solara.reactive(0), "max_value": solara.reactive(0)},
|
| 486 |
+
"metric3": {"desc": lbl_metric3, "value": solara.reactive(0), "max_value": solara.reactive(0)},
|
| 487 |
+
"metric4": {"desc": lbl_metric4, "value": solara.reactive(0), "max_value": solara.reactive(0)},
|
| 488 |
+
"metric5": {"desc": lbl_metric5, "value": solara.reactive(0), "max_value": solara.reactive(0)},
|
| 489 |
+
"metric6": {"desc": lbl_metric6, "value": solara.reactive(0), "max_value": solara.reactive(0)},
|
| 490 |
+
"metric7": {"desc": lbl_metric7, "value": solara.reactive(0), "max_value": solara.reactive(0)}}
|
| 491 |
+
|
| 492 |
+
|
| 493 |
+
@solara.component
|
| 494 |
+
def DialWidget(desc, value, max_value=10000):
|
| 495 |
+
if max_value == 0:
|
| 496 |
+
max_value = 10000
|
| 497 |
+
fig = Figure(tight_layout=True,dpi=50, edgecolor="dimgray",frameon=False)
|
| 498 |
+
fig.set_size_inches(2.5, 1)
|
| 499 |
+
ax = fig.subplots()
|
| 500 |
+
ax.axis('equal')
|
| 501 |
+
#ax.axis('off')
|
| 502 |
+
|
| 503 |
+
ax.set_xticks([])
|
| 504 |
+
ax.set_yticks([])
|
| 505 |
+
|
| 506 |
+
t = np.linspace(0, math.pi, 100)
|
| 507 |
+
|
| 508 |
+
cos = np.cos(t)
|
| 509 |
+
sin = np.sin(t)
|
| 510 |
+
|
| 511 |
+
ax.plot(cos,sin, linewidth=2)
|
| 512 |
+
value_t = math.pi * (1 - (value / max_value))
|
| 513 |
+
|
| 514 |
+
fill_color = 'red'
|
| 515 |
+
if value_t > math.pi / 2 :
|
| 516 |
+
x1 = np.linspace(-1,np.cos(value_t),100)
|
| 517 |
+
y1 = np.sqrt(1 - x1**2)
|
| 518 |
+
ax.fill_between(x1,y1,color=fill_color)
|
| 519 |
+
x1 = np.linspace(np.cos(value_t),0,100)
|
| 520 |
+
y1 = np.tan(value_t) * x1
|
| 521 |
+
ax.fill_between(x1,y1,color=fill_color)
|
| 522 |
+
else:
|
| 523 |
+
x = np.linspace(-1, np.cos(value_t),100)
|
| 524 |
+
y1 = np.sqrt(1-x**2)
|
| 525 |
+
y2a = np.zeros(100)
|
| 526 |
+
y2b = np.tan(value_t) * x
|
| 527 |
+
y2 = np.maximum(y2a,y2b)
|
| 528 |
+
ax.fill_between(x,y1,y2,color=fill_color)
|
| 529 |
+
|
| 530 |
+
ax.plot([0,0.9*np.cos(value_t)],[0, 0.9*np.sin(value_t)], linewidth=2)
|
| 531 |
+
ax.scatter([0],[0],color='white',s=50)
|
| 532 |
+
ax.text(-1.1,0,0,fontdict={'fontsize':12},verticalalignment="center",
|
| 533 |
+
horizontalalignment="right",color="white")
|
| 534 |
+
ax.text(1.1,0,max_value,fontdict={'fontsize':12},verticalalignment="center",
|
| 535 |
+
horizontalalignment="left",color="white")
|
| 536 |
+
ax.plot([-0.9,-1.1],[0,0],color="white")
|
| 537 |
+
ax.plot([0.9,1.1],[0,0],color="white")
|
| 538 |
+
ax.plot([0,0],[0.9,1.1],color="white")
|
| 539 |
+
horizontalalignment = "right" if value_t > math.pi/2 else "left"
|
| 540 |
+
ax.text(1.1*np.cos(value_t),1.1*np.sin(value_t),value,fontdict={'fontsize':12},verticalalignment="center",
|
| 541 |
+
horizontalalignment=horizontalalignment,color="white")
|
| 542 |
+
ax.set_xlim(-1.7,1.7)
|
| 543 |
+
ax.set_ylim(-0.2,1.2)
|
| 544 |
+
#ax.text(0, -0.1, desc,fontdict={'fontsize':20},verticalalignment="center",
|
| 545 |
+
# horizontalalignment='center',color="white")
|
| 546 |
+
solara.FigureMatplotlib(fig)
|
| 547 |
+
|
| 548 |
+
#@solara.component
|
| 549 |
+
#def MetricWidget(desc, value, max_value=10000):
|
| 550 |
+
# DialWidget(desc, value, max_value)
|
| 551 |
+
|
| 552 |
+
@solara.component
|
| 553 |
+
def MetricWidget(name, description, value, max_value=10000):
|
| 554 |
+
value, set_value = solara.use_state_or_update(value)
|
| 555 |
+
max_value, set_max_value = solara.use_state_or_update(max_value)
|
| 556 |
+
options = {
|
| 557 |
+
"series": [ {
|
| 558 |
+
"type": 'gauge',
|
| 559 |
+
"min": 0,
|
| 560 |
+
"name": description,
|
| 561 |
+
"max": max(1,max_value), # workaround when max_value = 0
|
| 562 |
+
"startAngle": 180,
|
| 563 |
+
"endAngle": 0,
|
| 564 |
+
"progress": {"show": True, "width": 8, "itemStyle": {"color": 'red'}},
|
| 565 |
+
"pointer": { "show": False},
|
| 566 |
+
"axisLine": {"lineStyle": {"width": 8}},
|
| 567 |
+
"axisTick": {"show": False},
|
| 568 |
+
"splitLine": {"show": False},
|
| 569 |
+
"axisLabel": {"show": False},
|
| 570 |
+
"anchor": {"show": False},
|
| 571 |
+
"title": {"show": False},
|
| 572 |
+
"detail": {
|
| 573 |
+
"valueAnimation": True,
|
| 574 |
+
"offsetCenter": [0, '-15%'],
|
| 575 |
+
"fontSize": 14,
|
| 576 |
+
"color": 'white'},
|
| 577 |
+
"title": {"fontSize": 12},
|
| 578 |
+
"data": [{"value": value, "name": name}]}]}
|
| 579 |
+
print(f'value/max_value {value}:{max_value}')
|
| 580 |
+
|
| 581 |
+
|
| 582 |
+
solara.FigureEcharts(option=options, attributes={ "style": "height: 100px; width: 100px" })
|
| 583 |
+
|
| 584 |
+
|
| 585 |
+
|
| 586 |
+
|
| 587 |
+
@solara.component
|
| 588 |
+
def MetricsPanel(metrics):
|
| 589 |
+
'''
|
| 590 |
+
with solara.Columns([33,33,33]):
|
| 591 |
+
with solara.Column(align="center", gap="2px"):
|
| 592 |
+
for key in ["metric1","metric2"]:
|
| 593 |
+
MetricWidget(key, metrics[key]["desc"], metrics[key]["value"].value,
|
| 594 |
+
max_value=metrics[key]["max_value"].value)
|
| 595 |
+
solara.HTML(unsafe_innerHTML=metrics[key]["desc"][lang.value], classes=["metricdesc"])
|
| 596 |
+
with solara.Column(align="center", gap="2px"):
|
| 597 |
+
for key in ["metric3","metric4"]:
|
| 598 |
+
MetricWidget(key, metrics[key]["desc"], metrics[key]["value"].value,
|
| 599 |
+
max_value=metrics[key]["max_value"].value)
|
| 600 |
+
solara.HTML(unsafe_innerHTML=metrics[key]["desc"][lang.value], classes=["metricdesc"])
|
| 601 |
+
with solara.Column(align="center", gap="2px"):
|
| 602 |
+
for key in ["metric6","metric7"]:
|
| 603 |
+
MetricWidget(key, metrics[key]["desc"], metrics[key]["value"].value,
|
| 604 |
+
max_value=metrics[key]["max_value"].value)
|
| 605 |
+
solara.HTML(unsafe_innerHTML=metrics[key]["desc"][lang.value], classes=["metricdesc"])
|
| 606 |
+
'''
|
| 607 |
+
with solara.GridFixed(columns=3):
|
| 608 |
+
for key in ["metric1","metric2","metric3"]:
|
| 609 |
+
with solara.Row(justify="center"):
|
| 610 |
+
MetricWidget(key, metrics[key]["desc"], metrics[key]["value"].value,
|
| 611 |
+
max_value=metrics[key]["max_value"].value)
|
| 612 |
+
for key in ["metric1","metric2","metric3"]:
|
| 613 |
+
with solara.Row(justify="center"):
|
| 614 |
+
solara.HTML(unsafe_innerHTML=metrics[key]["desc"][lang.value], classes=["metricdesc"])
|
| 615 |
+
for key in ["metric4","metric6","metric7"]:
|
| 616 |
+
with solara.Row(justify="center"):
|
| 617 |
+
MetricWidget(key,metrics[key]["desc"], metrics[key]["value"].value,
|
| 618 |
+
max_value=metrics[key]["max_value"].value)
|
| 619 |
+
for key in ["metric4","metric6","metric7"]:
|
| 620 |
+
with solara.Row(justify="center"):
|
| 621 |
+
solara.HTML(unsafe_innerHTML=metrics[key]["desc"][lang.value], classes=["metricdesc"])
|
| 622 |
+
|
| 623 |
+
|
| 624 |
+
|
| 625 |
+
def run_simulation():
|
| 626 |
+
print("Running simulation")
|
| 627 |
+
print(f"Selected landuse plans: {landuseplan_selected.value}")
|
| 628 |
+
selected_policies = set()
|
| 629 |
+
for p in policies:
|
| 630 |
+
if policy_selected[p].value:
|
| 631 |
+
selected_policies.add(p)
|
| 632 |
+
print(f"Selected policies: {selected_policies}")
|
| 633 |
+
|
| 634 |
+
new_metrics = run_engine(hazard_type.value,
|
| 635 |
+
landuseplan_selected.value,
|
| 636 |
+
hazard_df_as_geo[hazard_type.value],
|
| 637 |
+
list(selected_policies))
|
| 638 |
+
for key in new_metrics.keys():
|
| 639 |
+
metrics[key]["value"].value = new_metrics[key]["value"]
|
| 640 |
+
metrics[key]["max_value"].value = new_metrics[key]["max_value"]
|
| 641 |
+
|
| 642 |
+
print(metrics)
|
| 643 |
+
|
| 644 |
+
@solara.component
|
| 645 |
+
def LandUsePlans():
|
| 646 |
+
for p in policies:
|
| 647 |
+
if policy_selected[p].value:
|
| 648 |
+
print(p, 'selected')
|
| 649 |
+
|
| 650 |
+
for p in policies:
|
| 651 |
+
if policy_selected[p].value:
|
| 652 |
+
print(p, 'selected')
|
| 653 |
+
|
| 654 |
+
#with solara.Column(gap="2px"):
|
| 655 |
+
# with solara.Columns([2,32,32,32,2]):
|
| 656 |
+
# solara.HTML(unsafe_innerHTML="")
|
| 657 |
+
# for i in range(1, n_landuses+1):
|
| 658 |
+
# if landuseplan_selected.value == i:
|
| 659 |
+
# solara.Image(f"landuse_tv50_{i}_selected.png", width="230px")
|
| 660 |
+
# else:
|
| 661 |
+
# solara.Image(f"landuse_tv50_{i}.png",width="230px")
|
| 662 |
+
# solara.HTML(unsafe_innerHTML="")
|
| 663 |
+
# with solara.Row():
|
| 664 |
+
# with solara.ToggleButtonsSingle(value=landuseplan_selected):
|
| 665 |
+
# for i in range(0, n_landuses):
|
| 666 |
+
# solara.Button(lbl_land_use_btn[i][lang.value], value=i+1, text=True, style="width: 320px; height: 26px")
|
| 667 |
+
|
| 668 |
+
|
| 669 |
+
def landuse_1():
|
| 670 |
+
landuseplan_selected.value = 1
|
| 671 |
+
|
| 672 |
+
def landuse_2():
|
| 673 |
+
landuseplan_selected.value = 2
|
| 674 |
+
|
| 675 |
+
def landuse_3():
|
| 676 |
+
landuseplan_selected.value = 3
|
| 677 |
+
|
| 678 |
+
funcs = {1: landuse_1, 2: landuse_2, 3: landuse_3}
|
| 679 |
+
|
| 680 |
+
butons = []
|
| 681 |
+
with solara.Columns([32,32,32]):
|
| 682 |
+
for i in range(0, n_landuses):
|
| 683 |
+
with solara.Column():
|
| 684 |
+
if landuseplan_selected.value == i + 1:
|
| 685 |
+
solara.Button(lbl_land_use_btn[i][lang.value], value=i+1,
|
| 686 |
+
text=True, on_click=funcs[i+1], style="background-color: #545454; height: 26px")
|
| 687 |
+
with solara.Row(justify="center"):
|
| 688 |
+
solara.Image(f"landuse_tv50_{i+1}_selected.png", width="200px")
|
| 689 |
+
|
| 690 |
+
else:
|
| 691 |
+
solara.Button(lbl_land_use_btn[i][lang.value], value=i+1,
|
| 692 |
+
text=True, on_click=funcs[i+1], style="height: 26px")
|
| 693 |
+
with solara.Row(justify="center"):
|
| 694 |
+
solara.Image(f"landuse_tv50_{i+1}.png", width="200px")
|
| 695 |
+
|
| 696 |
+
|
| 697 |
+
|
| 698 |
+
@solara.component
|
| 699 |
+
def Page():
|
| 700 |
+
def reset_view():
|
| 701 |
+
tv0_zoom.value = zoom_default
|
| 702 |
+
tv0_center.value = tv0_center_default
|
| 703 |
+
hazard_type.value = hazard_type_default
|
| 704 |
+
for luf_type in luf_types:
|
| 705 |
+
luf_type_selected[luf_type].value = True
|
| 706 |
+
landuseplan_selected.value = 1
|
| 707 |
+
|
| 708 |
+
solara.Style(css)
|
| 709 |
+
with solara.Columns([1,98,1]):
|
| 710 |
+
solara.HTML(unsafe_innerHTML="")
|
| 711 |
+
with solara.Column():
|
| 712 |
+
with solara.Columns(([10,80,10])):
|
| 713 |
+
solara.Button(label=lbl_reset[lang.value], on_click=reset_view, style="height: 26px;")
|
| 714 |
+
solara.HTML(unsafe_innerHTML=lbl_maintitle[lang.value],classes=["maintitle"])
|
| 715 |
+
with solara.ToggleButtonsSingle(value=lang, style="align-items: center;"):
|
| 716 |
+
solara.Button(label="EN", value="EN", text=True,classes=["langbutton"],style="height: 26px;")
|
| 717 |
+
solara.Button(label="TR", value="TR", text=True,classes=["langbutton"],style="height: 26px;")
|
| 718 |
+
with solara.Columns([50,50]):
|
| 719 |
+
with solara.Column(gap="2px"):
|
| 720 |
+
with solara.Card(title=lbl_tv0_map_title[lang.value]):
|
| 721 |
+
with solara.Columns([35,35,30], classes=["mycol"]):
|
| 722 |
+
TV0MAP()
|
| 723 |
+
with solara.Column(gap="0px"):
|
| 724 |
+
for luf_type in luf_types:
|
| 725 |
+
with solara.Row():
|
| 726 |
+
#solara.Button(label="",
|
| 727 |
+
# color=luf_colors[luf_type]['fillColor'],
|
| 728 |
+
# classes=["lufbox"])
|
| 729 |
+
solara.HTML(unsafe_innerHTML=" ",
|
| 730 |
+
style=f"margin: 1px; background-color: {luf_colors[luf_type]['fillColor']};")
|
| 731 |
+
solara.HTML(unsafe_innerHTML=lbl_luf[luf_type][lang.value],
|
| 732 |
+
style="font-size: 12px; line-height: 100%; display: flex; justify-content: center; align-items: center;")
|
| 733 |
+
#solara.Checkbox(label=lbl_luf[luf_type][lang.value],value=luf_type_selected[luf_type],
|
| 734 |
+
# style="margin-top: 0px; line-height: 80%;")
|
| 735 |
+
with solara.Column(gap="20px"):
|
| 736 |
+
solara.HTML(unsafe_innerHTML=lbl_info1[lang.value], classes=["infoitem"])
|
| 737 |
+
solara.HTML(unsafe_innerHTML=lbl_info2[lang.value], classes=["infoitem"])
|
| 738 |
+
solara.HTML(unsafe_innerHTML=lbl_info3[lang.value], classes=["infoitem"])
|
| 739 |
+
solara.HTML(unsafe_innerHTML=lbl_info4[lang.value], classes=["infoitem"])
|
| 740 |
+
solara.HTML(unsafe_innerHTML=lbl_info5[lang.value], classes=["infoitem"])
|
| 741 |
+
with solara.Card(title=lbl_infobox_title[lang.value]):
|
| 742 |
+
solara.HTML(unsafe_innerHTML=lbl_infobox[lang.value], classes=["infobox"])
|
| 743 |
+
with solara.Card(title=lbl_density_map_title[lang.value]):
|
| 744 |
+
with solara.Columns([30,30,30]):
|
| 745 |
+
with solara.Column():
|
| 746 |
+
if hazard_type.value == "earthquake":
|
| 747 |
+
bgcolor = "background-color: #545454;"
|
| 748 |
+
else:
|
| 749 |
+
bgcolor = ""
|
| 750 |
+
with solara.Row(justify="center"):
|
| 751 |
+
solara.Button(lbl_earthquake[lang.value], value="earthquake", text=True, on_click=lambda: hazard_type.set("earthquake"), style=f"{bgcolor} width: 200px; height: 26px")
|
| 752 |
+
DensityMap("earthquake")
|
| 753 |
+
with solara.Column():
|
| 754 |
+
if hazard_type.value == "flood":
|
| 755 |
+
bgcolor = "background-color: #545454;"
|
| 756 |
+
else:
|
| 757 |
+
bgcolor = ""
|
| 758 |
+
with solara.Row(justify="center"):
|
| 759 |
+
solara.Button(lbl_flood[lang.value], value="flood", text=True, on_click=lambda: hazard_type.set("flood"), style=f"{bgcolor} width: 200px; height: 26px")
|
| 760 |
+
DensityMap("flood")
|
| 761 |
+
with solara.Column():
|
| 762 |
+
if hazard_type.value == "debris":
|
| 763 |
+
bgcolor = "background-color: #545454;"
|
| 764 |
+
else:
|
| 765 |
+
bgcolor = ""
|
| 766 |
+
with solara.Row(justify="center"):
|
| 767 |
+
solara.Button(lbl_debris[lang.value], value="debris", text=True, on_click=lambda: hazard_type.set("debris"), style=f"{bgcolor} width: 200px; height: 26px")
|
| 768 |
+
DensityMap("debris")
|
| 769 |
+
#with solara.Columns([30,30,30]):
|
| 770 |
+
# DensityMap("earthquake")
|
| 771 |
+
# DensityMap("flood")
|
| 772 |
+
# DensityMap("debris")
|
| 773 |
+
with solara.Column(gap="2px"):
|
| 774 |
+
with solara.Card(title=lbl_landuse_plans_title[lang.value]):
|
| 775 |
+
LandUsePlans()
|
| 776 |
+
with solara.Card(lbl_policy_card_title[lang.value]):
|
| 777 |
+
with solara.GridFixed(columns=3,row_gap="2px", column_gap="2px"):
|
| 778 |
+
for p in policies:
|
| 779 |
+
solara.Checkbox(label=lbl_policy[p][lang.value],value=policy_selected[p], style="font-size: 15px")
|
| 780 |
+
solara.Button(label=lbl_run_btn[lang.value],on_click=run_simulation, disabled=not run_is_allowed.value, style="height: 50px")
|
| 781 |
+
PolicyValidation()
|
| 782 |
+
with solara.Card(title=lbl_results_card_title[lang.value]):
|
| 783 |
+
MetricsPanel(metrics)
|
| 784 |
+
solara.HTML(unsafe_innerHTML="")
|
| 785 |
+
|
| 786 |
+
|
| 787 |
+
|
| 788 |
+
@solara.component
|
| 789 |
+
def Layout(children):
|
| 790 |
+
# if you need the normal applayout
|
| 791 |
+
# layout = solara.AppLayout(children=children, style)
|
| 792 |
+
layout = solara.Div(children=children, style={"width": "100%", "min-height": "100vh"})
|
| 793 |
+
|
| 794 |
+
def log(*args):
|
| 795 |
+
print("stop doing that!")
|
| 796 |
+
|
| 797 |
+
#solara.v.use_event(layout, "contextmenu.prevent", log)
|
| 798 |
+
return layout
|
| 799 |
+
|
| 800 |
+
Page()
|
demo/pages/__pycache__/__init__.cpython-310.pyc
ADDED
|
Binary file (23.8 kB). View file
|
|
|
demo/pages/__pycache__/engine.cpython-310.pyc
ADDED
|
Binary file (7.79 kB). View file
|
|
|
demo/pages/engine.py
ADDED
|
@@ -0,0 +1,334 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#%%
|
| 2 |
+
import warnings
|
| 3 |
+
import json
|
| 4 |
+
import sys
|
| 5 |
+
import argparse
|
| 6 |
+
import io
|
| 7 |
+
import os
|
| 8 |
+
import pandas as pd
|
| 9 |
+
import psycopg2
|
| 10 |
+
import geopandas as gpd
|
| 11 |
+
import numpy as np
|
| 12 |
+
from scipy.stats import norm
|
| 13 |
+
from scipy.interpolate import interp1d
|
| 14 |
+
|
| 15 |
+
# Damage States
|
| 16 |
+
DS_NO = 1
|
| 17 |
+
DS_SLIGHT = 2
|
| 18 |
+
DS_MODERATE = 3
|
| 19 |
+
DS_EXTENSIZE = 4
|
| 20 |
+
DS_COLLAPSED = 5
|
| 21 |
+
|
| 22 |
+
# Hazard Types
|
| 23 |
+
HAZARD_EARTHQUAKE = "earthquake"
|
| 24 |
+
HAZARD_FLOOD = "flood"
|
| 25 |
+
HAZARD_DEBRIS = "debris"
|
| 26 |
+
|
| 27 |
+
weights = {
|
| 28 |
+
"earthquake": {"metric1": 0.2,
|
| 29 |
+
"metric2": 0.2,
|
| 30 |
+
"metric3": 0.2,
|
| 31 |
+
"metric4": 0.2,
|
| 32 |
+
"metric5": 0.2,
|
| 33 |
+
"metric6": 0.2,
|
| 34 |
+
"metric7": 0.2,
|
| 35 |
+
},
|
| 36 |
+
"flood": {"metric1": 20,
|
| 37 |
+
"metric2": 20,
|
| 38 |
+
"metric3": 20,
|
| 39 |
+
"metric4": 20,
|
| 40 |
+
"metric5": 20,
|
| 41 |
+
"metric6": 20,
|
| 42 |
+
"metric7": 20,
|
| 43 |
+
},
|
| 44 |
+
"debris": {"metric1": 200,
|
| 45 |
+
"metric2": 200,
|
| 46 |
+
"metric3": 200,
|
| 47 |
+
"metric4": 200,
|
| 48 |
+
"metric5": 200,
|
| 49 |
+
"metric6": 200,
|
| 50 |
+
"metric7": 200,
|
| 51 |
+
}
|
| 52 |
+
}
|
| 53 |
+
|
| 54 |
+
def run_engine(hazard_type, scenario, gdf_intensity, policies=[]):
|
| 55 |
+
|
| 56 |
+
building_file = f"building_tv50_{scenario}.geojson"
|
| 57 |
+
household_file = f"household_tv50_{scenario}.json"
|
| 58 |
+
individual_file = f"individual_tv50_{scenario}.json"
|
| 59 |
+
|
| 60 |
+
threshold = 1
|
| 61 |
+
threshold_flood = 0.2
|
| 62 |
+
threshold_flood_distance = 40
|
| 63 |
+
epsg = 32645 # katmandu
|
| 64 |
+
|
| 65 |
+
df_buildings = gpd.read_file(building_file)
|
| 66 |
+
df_household = pd.read_json(household_file)
|
| 67 |
+
df_individual = pd.read_json(individual_file)
|
| 68 |
+
#gdf_intensity = intensity_df.copy()
|
| 69 |
+
|
| 70 |
+
# Read vulnerability from this table if hazard is earthquake
|
| 71 |
+
if hazard_type == HAZARD_EARTHQUAKE:
|
| 72 |
+
df_eq = pd.read_csv('earthquake_fragility.csv')
|
| 73 |
+
|
| 74 |
+
elif hazard_type == HAZARD_FLOOD or hazard_type == HAZARD_DEBRIS:
|
| 75 |
+
df_flood = pd.read_csv('flood_vulnerability.csv')
|
| 76 |
+
|
| 77 |
+
# TODO: Fix the confusion geometry/geograhy etc
|
| 78 |
+
gdf_buildings = gpd.GeoDataFrame(df_buildings,
|
| 79 |
+
geometry=gpd.points_from_xy(df_buildings.xcoord, df_buildings.ycoord))
|
| 80 |
+
|
| 81 |
+
#
|
| 82 |
+
# We asssume all input is EPSG:4326
|
| 83 |
+
gdf_buildings = gdf_buildings.set_crs("EPSG:4326",allow_override=True)
|
| 84 |
+
#gdf_intensity = gdf_intensity.set_crs("EPSG:4326",allow_override=True)
|
| 85 |
+
|
| 86 |
+
# Convert both to the same target coordinate system
|
| 87 |
+
print(epsg)
|
| 88 |
+
gdf_buildings = gdf_buildings.to_crs(f"EPSG:{epsg}")
|
| 89 |
+
#gdf_intensity = gdf_intensity.to_crs(f"EPSG:{epsg}")
|
| 90 |
+
|
| 91 |
+
#%%
|
| 92 |
+
gdf_building_intensity = gpd.sjoin_nearest(gdf_buildings,gdf_intensity,
|
| 93 |
+
how='left', rsuffix='intensity',distance_col='distance')
|
| 94 |
+
gdf_building_intensity = gdf_building_intensity.drop_duplicates(subset=['bldid'], keep='first')
|
| 95 |
+
|
| 96 |
+
# TODO: Check if the logic makes sense
|
| 97 |
+
if hazard_type == HAZARD_FLOOD or hazard_type == HAZARD_DEBRIS:
|
| 98 |
+
away_from_flood = gdf_building_intensity['distance'] > threshold_flood_distance
|
| 99 |
+
print('threshold_flood_distance',threshold_flood_distance)
|
| 100 |
+
print('number of distant buildings', len(gdf_building_intensity.loc[away_from_flood, 'im']))
|
| 101 |
+
gdf_building_intensity.loc[away_from_flood, 'im'] = 0
|
| 102 |
+
|
| 103 |
+
#%%
|
| 104 |
+
gdf_building_intensity[['material','code_level','storeys','occupancy']] = \
|
| 105 |
+
gdf_building_intensity['expstr'].str.split('+',expand=True)
|
| 106 |
+
gdf_building_intensity['height'] = gdf_building_intensity['storeys'].str.extract(r'([0-9]+)s').astype('int')
|
| 107 |
+
#%%
|
| 108 |
+
lr = (gdf_building_intensity['height'] <= 4)
|
| 109 |
+
mr = (gdf_building_intensity['height'] >= 5) & (gdf_building_intensity['height'] <= 8)
|
| 110 |
+
hr = (gdf_building_intensity['height'] >= 9)
|
| 111 |
+
gdf_building_intensity.loc[lr, 'height_level'] = 'LR'
|
| 112 |
+
gdf_building_intensity.loc[mr, 'height_level'] = 'MR'
|
| 113 |
+
gdf_building_intensity.loc[hr, 'height_level'] = 'HR'
|
| 114 |
+
|
| 115 |
+
#%%
|
| 116 |
+
gdf_building_intensity['vulnstreq'] = \
|
| 117 |
+
gdf_building_intensity[['material','code_level','height_level']] \
|
| 118 |
+
.agg('+'.join,axis=1)
|
| 119 |
+
|
| 120 |
+
#%%
|
| 121 |
+
if hazard_type == HAZARD_EARTHQUAKE:
|
| 122 |
+
bld_eq = gdf_building_intensity.merge(df_eq, on='vulnstreq', how='left')
|
| 123 |
+
nulls = bld_eq['muds1_g'].isna()
|
| 124 |
+
bld_eq.loc[nulls, ['muds1_g','muds2_g','muds3_g','muds4_g']] = [0.048,0.203,0.313,0.314]
|
| 125 |
+
bld_eq.loc[nulls, ['sigmads1','sigmads2','sigmads3','sigmads4']] = [0.301,0.276,0.252,0.253]
|
| 126 |
+
bld_eq['logim'] = np.log(bld_eq['im']/9.81)
|
| 127 |
+
for m in ['muds1_g','muds2_g','muds3_g','muds4_g']:
|
| 128 |
+
bld_eq[m] = np.log(bld_eq[m])
|
| 129 |
+
|
| 130 |
+
for i in [1,2,3,4]:
|
| 131 |
+
bld_eq[f'prob_ds{i}'] = norm.cdf(bld_eq['logim'],bld_eq[f'muds{i}_g'],bld_eq[f'sigmads{i}'])
|
| 132 |
+
bld_eq[['prob_ds0','prob_ds5']] = [1,0]
|
| 133 |
+
for i in [1,2,3,4,5]:
|
| 134 |
+
bld_eq[f'ds_{i}'] = np.abs(bld_eq[f'prob_ds{i-1}'] - bld_eq[f'prob_ds{i}'])
|
| 135 |
+
df_ds = bld_eq[['ds_1','ds_2','ds_3','ds_4','ds_5']]
|
| 136 |
+
bld_eq['eq_ds'] = df_ds.idxmax(axis='columns').str.extract(r'ds_([0-9]+)').astype('int')
|
| 137 |
+
|
| 138 |
+
# Create a simplified building-hazard relation
|
| 139 |
+
bld_hazard = bld_eq[['bldid','occupancy','eq_ds']]
|
| 140 |
+
bld_hazard = bld_hazard.rename(columns={'eq_ds':'ds'})
|
| 141 |
+
|
| 142 |
+
ds_str = {1: 'No Damage',2:'Low',3:'Medium',4:'High',5:'Collapsed'}
|
| 143 |
+
|
| 144 |
+
elif hazard_type == HAZARD_FLOOD or hazard_type == HAZARD_DEBRIS:
|
| 145 |
+
bld_flood = gdf_building_intensity.merge(df_flood, on='expstr', how='left')
|
| 146 |
+
x = np.array([0,0.5,1,1.5,2,3,4,5,6])
|
| 147 |
+
y = bld_flood[['hw0','hw0.5','hw1','hw1.5','hw2','hw3','hw4','hw5','hw6']].to_numpy()
|
| 148 |
+
xnew = bld_flood['im'].to_numpy()
|
| 149 |
+
flood_mapping = interp1d(x,y,axis=1,kind='linear',bounds_error=False, fill_value=(0,1))
|
| 150 |
+
# TODO: find another way for vectorized interpolate
|
| 151 |
+
bld_flood['fl_prob'] = np.diag(flood_mapping(xnew))
|
| 152 |
+
bld_flood['fl_ds'] = 0
|
| 153 |
+
bld_flood.loc[bld_flood['fl_prob'] > threshold_flood,'fl_ds'] = 1
|
| 154 |
+
|
| 155 |
+
# Create a simplified building-hazard relation
|
| 156 |
+
bld_hazard = bld_flood[['bldid','occupancy','fl_ds']]
|
| 157 |
+
bld_hazard = bld_hazard.rename(columns={'fl_ds':'ds'})
|
| 158 |
+
|
| 159 |
+
ds_str = {0: 'No Damage',1:'Flooded'}
|
| 160 |
+
|
| 161 |
+
bld_hazard['occupancy'] = pd.Categorical(bld_hazard['occupancy'])
|
| 162 |
+
for key, value in ds_str.items():
|
| 163 |
+
bld_hazard.loc[bld_hazard['ds'] == key,'damage_level'] = value
|
| 164 |
+
bld_hazard['damage_level'] = pd.Categorical(bld_hazard['damage_level'], list(ds_str.values()))
|
| 165 |
+
|
| 166 |
+
#%% Find the damage state of the building that the household is in
|
| 167 |
+
df_household_bld = df_household.merge(bld_hazard[['bldid','ds']], on='bldid', how='left',validate='many_to_one')
|
| 168 |
+
#%% find the damage state of the hospital that the household is associated with
|
| 169 |
+
df_hospitals = df_household.merge(bld_hazard[['bldid','damage_level', 'ds']],
|
| 170 |
+
how='left', left_on='commfacid', right_on='bldid', suffixes=['','_comm'],
|
| 171 |
+
validate='many_to_one')
|
| 172 |
+
#%%
|
| 173 |
+
df_workers = df_individual.merge(bld_hazard[['bldid','damage_level', 'ds']],
|
| 174 |
+
how='left', left_on='indivfacid_2', right_on='bldid',
|
| 175 |
+
suffixes=['_l','_r'],validate='many_to_one')
|
| 176 |
+
|
| 177 |
+
#%%
|
| 178 |
+
df_students = df_individual.merge(bld_hazard[['bldid','damage_level', 'ds']],
|
| 179 |
+
how='left', left_on='indivfacid_1', right_on='bldid',
|
| 180 |
+
suffixes=['_l','_r'],validate='many_to_one')
|
| 181 |
+
#%%
|
| 182 |
+
df_indiv_hosp = df_individual.merge(df_hospitals[['hhid','ds','bldid']],
|
| 183 |
+
how='left', on='hhid', validate='many_to_one')
|
| 184 |
+
#%%
|
| 185 |
+
# get the ds of household that individual lives in
|
| 186 |
+
df_indiv_household = df_individual[['hhid','individ']].merge(df_household_bld[['hhid','ds']])
|
| 187 |
+
|
| 188 |
+
df_displaced_indiv = df_indiv_hosp.rename(columns={'ds':'ds_hospital'})\
|
| 189 |
+
.merge(df_workers[['individ','ds']].rename(columns={'ds':'ds_workplace'}),on='individ', how='inner')\
|
| 190 |
+
.merge(df_students[['individ','ds']].rename(columns={'ds':'ds_school'}), on='individ', how='inner')\
|
| 191 |
+
.merge(df_indiv_household[['individ','ds']].rename(columns={'ds':'ds_household'}), on='individ',how='left')
|
| 192 |
+
#%%
|
| 193 |
+
if hazard_type == HAZARD_EARTHQUAKE:
|
| 194 |
+
# Effect of policies on thresholds
|
| 195 |
+
# First get the global threshold
|
| 196 |
+
thresholds = {f'metric{id}': threshold for id in range(8)}
|
| 197 |
+
else:
|
| 198 |
+
# Default thresholds for flood and debris
|
| 199 |
+
# For flood, there are only two states: 0 or 1.
|
| 200 |
+
# So threshold is set to 0.
|
| 201 |
+
thresholds = {f'metric{id}': 0 for id in range(8)}
|
| 202 |
+
|
| 203 |
+
# Policy 6 is valid for all three hazard types
|
| 204 |
+
# Policy-6: Compulsory content insurance for schools and hospitals
|
| 205 |
+
# increases threshold for loss of edu/health in all hazard-types from minor to moderate
|
| 206 |
+
# slight to moderate
|
| 207 |
+
if 6 in policies and thresholds['metric3'] == DS_NO:
|
| 208 |
+
thresholds['metric3'] = DS_SLIGHT
|
| 209 |
+
if 6 in policies and thresholds['metric2'] == DS_NO:
|
| 210 |
+
thresholds['metric2'] = DS_SLIGHT
|
| 211 |
+
|
| 212 |
+
if hazard_type == HAZARD_EARTHQUAKE:
|
| 213 |
+
# Policy-1: Loans for reconstruction for minor to moderate damages
|
| 214 |
+
# Changes: Damage state thresholds for “displacement”
|
| 215 |
+
# Increase thresholds from “slight to moderate” as fewer people will be displaced.
|
| 216 |
+
if 1 in policies and thresholds['metric7'] == DS_NO:
|
| 217 |
+
thresholds['metric7'] = DS_SLIGHT
|
| 218 |
+
|
| 219 |
+
# Policy-3: Cat-bond agreement for education and health facilities
|
| 220 |
+
# Changes: Damage state thresholds for “loss of access to hospitals” and “loss of access to schools”
|
| 221 |
+
# Increase thresholds from “slight to moderate” as fewer people will be displaced.
|
| 222 |
+
if 3 in policies and thresholds['metric3'] == DS_NO:
|
| 223 |
+
thresholds['metric3'] = DS_SLIGHT
|
| 224 |
+
if 3 in policies and thresholds['metric2'] == DS_NO:
|
| 225 |
+
thresholds['metric2'] = DS_SLIGHT
|
| 226 |
+
|
| 227 |
+
# Policy-2: Knowledge sharing about DRR in public and private schools
|
| 228 |
+
# Changes: Damage state thresholds for “loss of school access”
|
| 229 |
+
# Increase thresholds loss of school access to beyond current scale. So that the impact will be downgraded to “0”.
|
| 230 |
+
if 2 in policies:
|
| 231 |
+
thresholds['metric2'] = DS_COLLAPSED
|
| 232 |
+
|
| 233 |
+
if hazard_type == HAZARD_FLOOD:
|
| 234 |
+
# Polcy-4: Repair loan assistance for flooding
|
| 235 |
+
# we have only two states 0/1. So if this policy
|
| 236 |
+
# is effective, increase it to 1 meaning that
|
| 237 |
+
# population displacement is solved
|
| 238 |
+
if 4 in policies:
|
| 239 |
+
thresholds['metric6'] = 1
|
| 240 |
+
|
| 241 |
+
if hazard_type == HAZARD_FLOOD or hazard_type == HAZARD_DEBRIS:
|
| 242 |
+
# Policy-5: Technical assistance for debris removal in education facilities
|
| 243 |
+
# loss of education is solved via this policy. For both flood and debris
|
| 244 |
+
# loss of education metric is fixed.
|
| 245 |
+
if 5 in policies:
|
| 246 |
+
thresholds['metric2'] = 1
|
| 247 |
+
|
| 248 |
+
#%% metric 1 number of unemployed workers in each building
|
| 249 |
+
df_workers_per_building = df_workers[df_workers['ds'] > thresholds['metric1']].groupby('bldid',as_index=False).agg({'individ':'count'})
|
| 250 |
+
df_metric1 = bld_hazard.merge(df_workers_per_building,how='left',left_on='bldid',right_on = 'bldid')[['bldid','individ']]
|
| 251 |
+
df_metric1.rename(columns={'individ':'metric1'}, inplace=True)
|
| 252 |
+
df_metric1['metric1'] = df_metric1['metric1'].fillna(0).astype(int)
|
| 253 |
+
|
| 254 |
+
#%% metric 2 number of students in each building with no access to schools
|
| 255 |
+
df_students_per_building = df_students[df_students['ds'] > thresholds['metric2']].groupby('bldid',as_index=False).agg({'individ':'count'})
|
| 256 |
+
df_metric2 = bld_hazard.merge(df_students_per_building,how='left',left_on='bldid',right_on = 'bldid')[['bldid','individ']]
|
| 257 |
+
df_metric2.rename(columns={'individ':'metric2'}, inplace=True)
|
| 258 |
+
df_metric2['metric2'] = df_metric2['metric2'].fillna(0).astype(int)
|
| 259 |
+
|
| 260 |
+
#%% metric 3 number of households in each building with no access to hospitals
|
| 261 |
+
df_hospitals_per_household = df_hospitals[df_hospitals['ds'] > thresholds['metric3']].groupby('bldid',as_index=False).agg({'hhid':'count'})
|
| 262 |
+
df_metric3 = bld_hazard.merge(df_hospitals_per_household,how='left',left_on='bldid',right_on='bldid')[['bldid','hhid']]
|
| 263 |
+
df_metric3.rename(columns={'hhid':'metric3'}, inplace=True)
|
| 264 |
+
df_metric3['metric3'] = df_metric3['metric3'].fillna(0).astype(int)
|
| 265 |
+
|
| 266 |
+
#%% metric 4 number of individuals in each building with no access to hospitals
|
| 267 |
+
df_hospitals_per_individual = df_hospitals[df_hospitals['ds'] > thresholds['metric4']].groupby('bldid',as_index=False).agg({'nind':'sum'})
|
| 268 |
+
df_metric4 = bld_hazard.merge(df_hospitals_per_individual,how='left',left_on='bldid',right_on='bldid')[['bldid','nind']]
|
| 269 |
+
df_metric4.rename(columns={'nind':'metric4'}, inplace=True)
|
| 270 |
+
df_metric4['metric4'] = df_metric4['metric4'].fillna(0).astype(int)
|
| 271 |
+
|
| 272 |
+
#%% metric 5 number of damaged households in each building
|
| 273 |
+
df_homeless_households = df_household_bld[df_household_bld['ds'] > thresholds['metric5']].groupby('bldid',as_index=False).agg({'hhid':'count'})
|
| 274 |
+
df_metric5 = bld_hazard.merge(df_homeless_households,how='left',left_on='bldid',right_on='bldid')[['bldid','hhid']]
|
| 275 |
+
df_metric5.rename(columns={'hhid':'metric5'}, inplace=True)
|
| 276 |
+
df_metric5['metric5'] = df_metric5['metric5'].fillna(0).astype(int)
|
| 277 |
+
|
| 278 |
+
#%% metric 6 number of homeless individuals in each building
|
| 279 |
+
df_homeless_individuals = df_household_bld[df_household_bld['ds'] > thresholds['metric6']].groupby('bldid',as_index=False).agg({'nind':'sum'})
|
| 280 |
+
df_metric6 = bld_hazard.merge(df_homeless_individuals,how='left',left_on='bldid',right_on='bldid')[['bldid','nind']]
|
| 281 |
+
df_metric6.rename(columns={'nind':'metric6'}, inplace=True)
|
| 282 |
+
df_metric6['metric6'] = df_metric6['metric6'].fillna(0).astype(int)
|
| 283 |
+
|
| 284 |
+
#%% metric 7 the number of displaced individuals in each building
|
| 285 |
+
# more info: an individual is displaced if at least of the conditions below hold
|
| 286 |
+
df_disp_per_bld = df_displaced_indiv[(df_displaced_indiv['ds_household'] > thresholds['metric6']) |
|
| 287 |
+
(df_displaced_indiv['ds_school'] > thresholds['metric7']) |
|
| 288 |
+
(df_displaced_indiv['ds_workplace'] > thresholds['metric7']) |
|
| 289 |
+
(df_displaced_indiv['ds_hospital'] > thresholds['metric7'])].groupby('bldid',as_index=False).agg({'individ':'count'})
|
| 290 |
+
df_metric7 = bld_hazard.merge(df_disp_per_bld,how='left',left_on='bldid',right_on='bldid')[['bldid','individ']]
|
| 291 |
+
df_metric7.rename(columns={'individ':'metric7'}, inplace=True)
|
| 292 |
+
df_metric7['metric7'] = df_metric7['metric7'].fillna(0).astype(int)
|
| 293 |
+
|
| 294 |
+
df_metrics = {'metric1': df_metric1,
|
| 295 |
+
'metric2': df_metric2,
|
| 296 |
+
'metric3': df_metric3,
|
| 297 |
+
'metric4': df_metric4,
|
| 298 |
+
'metric5': df_metric5,
|
| 299 |
+
'metric6': df_metric6,
|
| 300 |
+
'metric7': df_metric7}
|
| 301 |
+
|
| 302 |
+
#%%
|
| 303 |
+
number_of_workers = len(df_workers.loc[df_workers['indivfacid_2'] > 0])
|
| 304 |
+
print('number of workers', number_of_workers)
|
| 305 |
+
|
| 306 |
+
number_of_students = len(df_workers.loc[df_students['indivfacid_1'] > 0])
|
| 307 |
+
print('number of students', number_of_students)
|
| 308 |
+
|
| 309 |
+
number_of_households = len(df_household)
|
| 310 |
+
print('number of households', number_of_households)
|
| 311 |
+
|
| 312 |
+
number_of_individuals = len(df_individual)
|
| 313 |
+
print('number of individuals', number_of_individuals)
|
| 314 |
+
metrics = {"metric1": {"desc": "Number of workers unemployed", "value": 0, "max_value": 20_000},
|
| 315 |
+
"metric2": {"desc": "Number of children with no access to education", "value": 0, "max_value": 9_000},
|
| 316 |
+
"metric3": {"desc": "Number of households with no access to hospital", "value": 0, "max_value": 20_000},
|
| 317 |
+
"metric4": {"desc": "Number of individuals with no access to hospital", "value": 0, "max_value": 75_000},
|
| 318 |
+
"metric5": {"desc": "Number of homeless households", "value": 0, "max_value": number_of_households},
|
| 319 |
+
"metric6": {"desc": "Number of homeless individuals", "value": 0, "max_value": 75_000},
|
| 320 |
+
"metric7": {"desc": "Population displacement", "value": 0, "max_value": 75_000},}
|
| 321 |
+
metrics["metric1"]["value"] = int(df_metric1['metric1'].sum())
|
| 322 |
+
metrics["metric2"]["value"] = int(df_metric2['metric2'].sum())
|
| 323 |
+
metrics["metric3"]["value"] = int(df_metric3['metric3'].sum())
|
| 324 |
+
metrics["metric4"]["value"] = int(df_metric4['metric4'].sum())
|
| 325 |
+
metrics["metric5"]["value"] = int(df_metric5['metric5'].sum())
|
| 326 |
+
metrics["metric6"]["value"] = int(df_metric6['metric6'].sum())
|
| 327 |
+
metrics["metric7"]["value"] = int(df_metric7['metric7'].sum())
|
| 328 |
+
|
| 329 |
+
for key in metrics.keys():
|
| 330 |
+
metrics[key]["value"] = int(metrics[key]["value"] * weights[hazard_type][key])
|
| 331 |
+
|
| 332 |
+
# return to WSG
|
| 333 |
+
return metrics
|
| 334 |
+
|
demo/public/Museo700-Regular.woff2
ADDED
|
Binary file (19.2 kB). View file
|
|
|
demo/public/Museo900-Regular.woff
ADDED
|
Binary file (28 kB). View file
|
|
|
demo/public/Museo900-Regular.woff2
ADDED
|
Binary file (19.5 kB). View file
|
|
|
demo/public/OpenSans400.woff2
ADDED
|
Binary file (15.8 kB). View file
|
|
|
demo/public/open-sans.regular.ttf
ADDED
|
Binary file (217 kB). View file
|
|
|
demo/public/tomorrows-cities-logo-header.png
ADDED
|
earthquake_fragility.csv
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
vulnstreq,muds1_g,muds2_g,muds3_g,muds4_g,sigmads1,sigmads2,sigmads3,sigmads4
|
| 2 |
+
Adb+LC+LR,0.399,0.861,1.238,1.577,0.586,0.586,0.586,0.586
|
| 3 |
+
BrM+LC+LR,0.057,0.098,0.147,0.223,0.406,0.404,0.358,0.31
|
| 4 |
+
BrCfl+LC+LR,0.057,0.119,0.214,0.361,0.451,0.349,0.286,0.247
|
| 5 |
+
BrCri+LC+LR,0.124,0.175,0.295,0.445,0.326,0.3,0.254,0.254
|
| 6 |
+
StMin+LC+LR,0.057,0.098,0.147,0.223,0.406,0.404,0.358,0.310
|
| 7 |
+
RCi+LC+LR,0.180,0.677,4.915,5.773,0.223,0.223,0.223,0.223
|
| 8 |
+
RCi+MC+LR,0.137,0.633,1.577,2.016,0.223,0.223,0.223,0.223
|
| 9 |
+
RCi+HC+LR,0.109,0.255,0.578,0.689,0.228,0.228,0.218,0.217
|
| 10 |
+
RCi+LC+MR,0.039,0.322,4.027,5.352,0.259,0.259,0.259,0.259
|
| 11 |
+
RCi+MC+MR,0.031,0.268,0.793,1.036,0.268,0.268,0.268,0.268
|
| 12 |
+
RCi+HC+MR,0.048,0.203,0.313,0.314,0.301,0.276,0.252,0.253
|
flood_vulnerability.csv
ADDED
|
@@ -0,0 +1,1261 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
expstr,hw0,hw0.5,hw1,hw1.5,hw2,hw3,hw4,hw5,hw6
|
| 2 |
+
BrCfl+LC+1s+Res,0.000,0.660,0.980,1.000,1.000,1.000,1.000,1.000,1.000
|
| 3 |
+
BrCfl+LC+2s+Res,0.000,0.330,0.490,0.620,0.720,0.870,0.930,0.980,1.000
|
| 4 |
+
BrCfl+LC+3s+Res,0.000,0.220,0.327,0.413,0.480,0.580,0.620,0.653,0.667
|
| 5 |
+
BrCfl+LC+4s+Res,0.000,0.165,0.245,0.310,0.360,0.435,0.465,0.490,0.500
|
| 6 |
+
BrCfl+LC+5s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400
|
| 7 |
+
BrCfl+LC+6s+Res,0.000,0.110,0.163,0.207,0.240,0.290,0.310,0.327,0.333
|
| 8 |
+
BrCfl+LC+7s+Res,0.000,0.094,0.140,0.177,0.206,0.249,0.266,0.280,0.286
|
| 9 |
+
BrCfl+LC+8s+Res,0.000,0.083,0.122,0.155,0.180,0.217,0.233,0.245,0.250
|
| 10 |
+
BrCfl+LC+9s+Res,0.000,0.073,0.109,0.138,0.160,0.193,0.207,0.218,0.222
|
| 11 |
+
BrCfl+LC+10s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200
|
| 12 |
+
BrCfl+MC+1s+Res,0.000,0.660,0.980,1.000,1.000,1.000,1.000,1.000,1.000
|
| 13 |
+
BrCfl+MC+2s+Res,0.000,0.330,0.490,0.620,0.720,0.870,0.930,0.980,1.000
|
| 14 |
+
BrCfl+MC+3s+Res,0.000,0.220,0.327,0.413,0.480,0.580,0.620,0.653,0.667
|
| 15 |
+
BrCfl+MC+4s+Res,0.000,0.165,0.245,0.310,0.360,0.435,0.465,0.490,0.500
|
| 16 |
+
BrCfl+MC+5s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400
|
| 17 |
+
BrCfl+MC+6s+Res,0.000,0.110,0.163,0.207,0.240,0.290,0.310,0.327,0.333
|
| 18 |
+
BrCfl+MC+7s+Res,0.000,0.094,0.140,0.177,0.206,0.249,0.266,0.280,0.286
|
| 19 |
+
BrCfl+MC+8s+Res,0.000,0.083,0.122,0.155,0.180,0.217,0.233,0.245,0.250
|
| 20 |
+
BrCfl+MC+9s+Res,0.000,0.073,0.109,0.138,0.160,0.193,0.207,0.218,0.222
|
| 21 |
+
BrCfl+MC+10s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200
|
| 22 |
+
BrCfl+HC+1s+Res,0.000,0.660,0.980,1.000,1.000,1.000,1.000,1.000,1.000
|
| 23 |
+
BrCfl+HC+2s+Res,0.000,0.330,0.490,0.620,0.720,0.870,0.930,0.980,1.000
|
| 24 |
+
BrCfl+HC+3s+Res,0.000,0.220,0.327,0.413,0.480,0.580,0.620,0.653,0.667
|
| 25 |
+
BrCfl+HC+4s+Res,0.000,0.165,0.245,0.310,0.360,0.435,0.465,0.490,0.500
|
| 26 |
+
BrCfl+HC+5s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400
|
| 27 |
+
BrCfl+HC+6s+Res,0.000,0.110,0.163,0.207,0.240,0.290,0.310,0.327,0.333
|
| 28 |
+
BrCfl+HC+7s+Res,0.000,0.094,0.140,0.177,0.206,0.249,0.266,0.280,0.286
|
| 29 |
+
BrCfl+HC+8s+Res,0.000,0.083,0.122,0.155,0.180,0.217,0.233,0.245,0.250
|
| 30 |
+
BrCfl+HC+9s+Res,0.000,0.073,0.109,0.138,0.160,0.193,0.207,0.218,0.222
|
| 31 |
+
BrCfl+HC+10s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200
|
| 32 |
+
BrCri+LC+1s+Res,0.000,0.660,0.980,1.000,1.000,1.000,1.000,1.000,1.000
|
| 33 |
+
BrCri+LC+2s+Res,0.000,0.330,0.490,0.620,0.720,0.870,0.930,0.980,1.000
|
| 34 |
+
BrCri+LC+3s+Res,0.000,0.220,0.327,0.413,0.480,0.580,0.620,0.653,0.667
|
| 35 |
+
BrCri+LC+4s+Res,0.000,0.165,0.245,0.310,0.360,0.435,0.465,0.490,0.500
|
| 36 |
+
BrCri+LC+5s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400
|
| 37 |
+
BrCri+LC+6s+Res,0.000,0.110,0.163,0.207,0.240,0.290,0.310,0.327,0.333
|
| 38 |
+
BrCri+LC+7s+Res,0.000,0.094,0.140,0.177,0.206,0.249,0.266,0.280,0.286
|
| 39 |
+
BrCri+LC+8s+Res,0.000,0.083,0.122,0.155,0.180,0.217,0.233,0.245,0.250
|
| 40 |
+
BrCri+LC+9s+Res,0.000,0.073,0.109,0.138,0.160,0.193,0.207,0.218,0.222
|
| 41 |
+
BrCri+LC+10s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200
|
| 42 |
+
BrCri+MC+1s+Res,0.000,0.660,0.980,1.000,1.000,1.000,1.000,1.000,1.000
|
| 43 |
+
BrCri+MC+2s+Res,0.000,0.330,0.490,0.620,0.720,0.870,0.930,0.980,1.000
|
| 44 |
+
BrCri+MC+3s+Res,0.000,0.220,0.327,0.413,0.480,0.580,0.620,0.653,0.667
|
| 45 |
+
BrCri+MC+4s+Res,0.000,0.165,0.245,0.310,0.360,0.435,0.465,0.490,0.500
|
| 46 |
+
BrCri+MC+5s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400
|
| 47 |
+
BrCri+MC+6s+Res,0.000,0.110,0.163,0.207,0.240,0.290,0.310,0.327,0.333
|
| 48 |
+
BrCri+MC+7s+Res,0.000,0.094,0.140,0.177,0.206,0.249,0.266,0.280,0.286
|
| 49 |
+
BrCri+MC+8s+Res,0.000,0.083,0.122,0.155,0.180,0.217,0.233,0.245,0.250
|
| 50 |
+
BrCri+MC+9s+Res,0.000,0.073,0.109,0.138,0.160,0.193,0.207,0.218,0.222
|
| 51 |
+
BrCri+MC+10s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200
|
| 52 |
+
BrCri+HC+1s+Res,0.000,0.660,0.980,1.000,1.000,1.000,1.000,1.000,1.000
|
| 53 |
+
BrCri+HC+2s+Res,0.000,0.330,0.490,0.620,0.720,0.870,0.930,0.980,1.000
|
| 54 |
+
BrCri+HC+3s+Res,0.000,0.220,0.327,0.413,0.480,0.580,0.620,0.653,0.667
|
| 55 |
+
BrCri+HC+4s+Res,0.000,0.165,0.245,0.310,0.360,0.435,0.465,0.490,0.500
|
| 56 |
+
BrCri+HC+5s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400
|
| 57 |
+
BrCri+HC+6s+Res,0.000,0.110,0.163,0.207,0.240,0.290,0.310,0.327,0.333
|
| 58 |
+
BrCri+HC+7s+Res,0.000,0.094,0.140,0.177,0.206,0.249,0.266,0.280,0.286
|
| 59 |
+
BrCri+HC+8s+Res,0.000,0.083,0.122,0.155,0.180,0.217,0.233,0.245,0.250
|
| 60 |
+
BrCri+HC+9s+Res,0.000,0.073,0.109,0.138,0.160,0.193,0.207,0.218,0.222
|
| 61 |
+
BrCri+HC+10s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200
|
| 62 |
+
BrM+LC+1s+Res,0.000,0.660,0.980,1.000,1.000,1.000,1.000,1.000,1.000
|
| 63 |
+
BrM+LC+2s+Res,0.000,0.330,0.490,0.620,0.720,0.870,0.930,0.980,1.000
|
| 64 |
+
BrM+LC+3s+Res,0.000,0.220,0.327,0.413,0.480,0.580,0.620,0.653,0.667
|
| 65 |
+
BrM+LC+4s+Res,0.000,0.165,0.245,0.310,0.360,0.435,0.465,0.490,0.500
|
| 66 |
+
BrM+LC+5s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400
|
| 67 |
+
BrM+LC+6s+Res,0.000,0.110,0.163,0.207,0.240,0.290,0.310,0.327,0.333
|
| 68 |
+
BrM+LC+7s+Res,0.000,0.094,0.140,0.177,0.206,0.249,0.266,0.280,0.286
|
| 69 |
+
BrM+LC+8s+Res,0.000,0.083,0.122,0.155,0.180,0.217,0.233,0.245,0.250
|
| 70 |
+
BrM+LC+9s+Res,0.000,0.073,0.109,0.138,0.160,0.193,0.207,0.218,0.222
|
| 71 |
+
BrM+LC+10s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200
|
| 72 |
+
BrM+MC+1s+Res,0.000,0.660,0.980,1.000,1.000,1.000,1.000,1.000,1.000
|
| 73 |
+
BrM+MC+2s+Res,0.000,0.330,0.490,0.620,0.720,0.870,0.930,0.980,1.000
|
| 74 |
+
BrM+MC+3s+Res,0.000,0.220,0.327,0.413,0.480,0.580,0.620,0.653,0.667
|
| 75 |
+
BrM+MC+4s+Res,0.000,0.165,0.245,0.310,0.360,0.435,0.465,0.490,0.500
|
| 76 |
+
BrM+MC+5s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400
|
| 77 |
+
BrM+MC+6s+Res,0.000,0.110,0.163,0.207,0.240,0.290,0.310,0.327,0.333
|
| 78 |
+
BrM+MC+7s+Res,0.000,0.094,0.140,0.177,0.206,0.249,0.266,0.280,0.286
|
| 79 |
+
BrM+MC+8s+Res,0.000,0.083,0.122,0.155,0.180,0.217,0.233,0.245,0.250
|
| 80 |
+
BrM+MC+9s+Res,0.000,0.073,0.109,0.138,0.160,0.193,0.207,0.218,0.222
|
| 81 |
+
BrM+MC+10s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200
|
| 82 |
+
BrM+HC+1s+Res,0.000,0.660,0.980,1.000,1.000,1.000,1.000,1.000,1.000
|
| 83 |
+
BrM+HC+2s+Res,0.000,0.330,0.490,0.620,0.720,0.870,0.930,0.980,1.000
|
| 84 |
+
BrM+HC+3s+Res,0.000,0.220,0.327,0.413,0.480,0.580,0.620,0.653,0.667
|
| 85 |
+
BrM+HC+4s+Res,0.000,0.165,0.245,0.310,0.360,0.435,0.465,0.490,0.500
|
| 86 |
+
BrM+HC+5s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400
|
| 87 |
+
BrM+HC+6s+Res,0.000,0.110,0.163,0.207,0.240,0.290,0.310,0.327,0.333
|
| 88 |
+
BrM+HC+7s+Res,0.000,0.094,0.140,0.177,0.206,0.249,0.266,0.280,0.286
|
| 89 |
+
BrM+HC+8s+Res,0.000,0.083,0.122,0.155,0.180,0.217,0.233,0.245,0.250
|
| 90 |
+
BrM+HC+9s+Res,0.000,0.073,0.109,0.138,0.160,0.193,0.207,0.218,0.222
|
| 91 |
+
BrM+HC+10s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200
|
| 92 |
+
Adb+LC+1s+Res,0.000,0.396,0.588,0.600,0.600,0.600,0.600,0.600,0.600
|
| 93 |
+
Adb+LC+2s+Res,0.000,0.198,0.294,0.372,0.432,0.522,0.558,0.588,0.600
|
| 94 |
+
Adb+LC+3s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400
|
| 95 |
+
Adb+LC+4s+Res,0.000,0.099,0.147,0.186,0.216,0.261,0.279,0.294,0.300
|
| 96 |
+
Adb+LC+5s+Res,0.000,0.079,0.118,0.149,0.173,0.209,0.223,0.235,0.240
|
| 97 |
+
Adb+LC+6s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200
|
| 98 |
+
Adb+LC+7s+Res,0.000,0.057,0.084,0.106,0.123,0.149,0.159,0.168,0.171
|
| 99 |
+
Adb+LC+8s+Res,0.000,0.050,0.073,0.093,0.108,0.131,0.140,0.147,0.150
|
| 100 |
+
Adb+LC+9s+Res,0.000,0.044,0.065,0.083,0.096,0.116,0.124,0.131,0.133
|
| 101 |
+
Adb+LC+10s+Res,0.000,0.040,0.059,0.074,0.086,0.104,0.112,0.118,0.120
|
| 102 |
+
Adb+MC+1s+Res,0.000,0.396,0.588,0.600,0.600,0.600,0.600,0.600,0.600
|
| 103 |
+
Adb+MC+2s+Res,0.000,0.198,0.294,0.372,0.432,0.522,0.558,0.588,0.600
|
| 104 |
+
Adb+MC+3s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400
|
| 105 |
+
Adb+MC+4s+Res,0.000,0.099,0.147,0.186,0.216,0.261,0.279,0.294,0.300
|
| 106 |
+
Adb+MC+5s+Res,0.000,0.079,0.118,0.149,0.173,0.209,0.223,0.235,0.240
|
| 107 |
+
Adb+MC+6s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200
|
| 108 |
+
Adb+MC+7s+Res,0.000,0.057,0.084,0.106,0.123,0.149,0.159,0.168,0.171
|
| 109 |
+
Adb+MC+8s+Res,0.000,0.050,0.073,0.093,0.108,0.131,0.140,0.147,0.150
|
| 110 |
+
Adb+MC+9s+Res,0.000,0.044,0.065,0.083,0.096,0.116,0.124,0.131,0.133
|
| 111 |
+
Adb+MC+10s+Res,0.000,0.040,0.059,0.074,0.086,0.104,0.112,0.118,0.120
|
| 112 |
+
Adb+HC+1s+Res,0.000,0.396,0.588,0.600,0.600,0.600,0.600,0.600,0.600
|
| 113 |
+
Adb+HC+2s+Res,0.000,0.198,0.294,0.372,0.432,0.522,0.558,0.588,0.600
|
| 114 |
+
Adb+HC+3s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400
|
| 115 |
+
Adb+HC+4s+Res,0.000,0.099,0.147,0.186,0.216,0.261,0.279,0.294,0.300
|
| 116 |
+
Adb+HC+5s+Res,0.000,0.079,0.118,0.149,0.173,0.209,0.223,0.235,0.240
|
| 117 |
+
Adb+HC+6s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200
|
| 118 |
+
Adb+HC+7s+Res,0.000,0.057,0.084,0.106,0.123,0.149,0.159,0.168,0.171
|
| 119 |
+
Adb+HC+8s+Res,0.000,0.050,0.073,0.093,0.108,0.131,0.140,0.147,0.150
|
| 120 |
+
Adb+HC+9s+Res,0.000,0.044,0.065,0.083,0.096,0.116,0.124,0.131,0.133
|
| 121 |
+
Adb+HC+10s+Res,0.000,0.040,0.059,0.074,0.086,0.104,0.112,0.118,0.120
|
| 122 |
+
RCi+LC+1s+Res,0.000,0.396,0.588,0.600,0.600,0.600,0.600,0.600,0.600
|
| 123 |
+
RCi+LC+2s+Res,0.000,0.198,0.294,0.372,0.432,0.522,0.558,0.588,0.600
|
| 124 |
+
RCi+LC+3s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400
|
| 125 |
+
RCi+LC+4s+Res,0.000,0.099,0.147,0.186,0.216,0.261,0.279,0.294,0.300
|
| 126 |
+
RCi+LC+5s+Res,0.000,0.079,0.118,0.149,0.173,0.209,0.223,0.235,0.240
|
| 127 |
+
RCi+LC+6s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200
|
| 128 |
+
RCi+LC+7s+Res,0.000,0.057,0.084,0.106,0.123,0.149,0.159,0.168,0.171
|
| 129 |
+
RCi+LC+8s+Res,0.000,0.050,0.073,0.093,0.108,0.131,0.140,0.147,0.150
|
| 130 |
+
RCi+LC+9s+Res,0.000,0.044,0.065,0.083,0.096,0.116,0.124,0.131,0.133
|
| 131 |
+
RCi+LC+10s+Res,0.000,0.040,0.059,0.074,0.086,0.104,0.112,0.118,0.120
|
| 132 |
+
RCi+MC+1s+Res,0.000,0.396,0.588,0.600,0.600,0.600,0.600,0.600,0.600
|
| 133 |
+
RCi+MC+2s+Res,0.000,0.198,0.294,0.372,0.432,0.522,0.558,0.588,0.600
|
| 134 |
+
RCi+MC+3s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400
|
| 135 |
+
RCi+MC+4s+Res,0.000,0.099,0.147,0.186,0.216,0.261,0.279,0.294,0.300
|
| 136 |
+
RCi+MC+5s+Res,0.000,0.079,0.118,0.149,0.173,0.209,0.223,0.235,0.240
|
| 137 |
+
RCi+MC+6s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200
|
| 138 |
+
RCi+MC+7s+Res,0.000,0.057,0.084,0.106,0.123,0.149,0.159,0.168,0.171
|
| 139 |
+
RCi+MC+8s+Res,0.000,0.050,0.073,0.093,0.108,0.131,0.140,0.147,0.150
|
| 140 |
+
RCi+MC+9s+Res,0.000,0.044,0.065,0.083,0.096,0.116,0.124,0.131,0.133
|
| 141 |
+
RCi+MC+10s+Res,0.000,0.040,0.059,0.074,0.086,0.104,0.112,0.118,0.120
|
| 142 |
+
RCi+HC+1s+Res,0.000,0.396,0.588,0.600,0.600,0.600,0.600,0.600,0.600
|
| 143 |
+
RCi+HC+2s+Res,0.000,0.198,0.294,0.372,0.432,0.522,0.558,0.588,0.600
|
| 144 |
+
RCi+HC+3s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400
|
| 145 |
+
RCi+HC+4s+Res,0.000,0.099,0.147,0.186,0.216,0.261,0.279,0.294,0.300
|
| 146 |
+
RCi+HC+5s+Res,0.000,0.079,0.118,0.149,0.173,0.209,0.223,0.235,0.240
|
| 147 |
+
RCi+HC+6s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200
|
| 148 |
+
RCi+HC+7s+Res,0.000,0.057,0.084,0.106,0.123,0.149,0.159,0.168,0.171
|
| 149 |
+
RCi+HC+8s+Res,0.000,0.050,0.073,0.093,0.108,0.131,0.140,0.147,0.150
|
| 150 |
+
RCi+HC+9s+Res,0.000,0.044,0.065,0.083,0.096,0.116,0.124,0.131,0.133
|
| 151 |
+
RCi+HC+10s+Res,0.000,0.040,0.059,0.074,0.086,0.104,0.112,0.118,0.120
|
| 152 |
+
StMin+LC+1s+Res,0.000,0.396,0.588,0.600,0.600,0.600,0.600,0.600,0.600
|
| 153 |
+
StMin+LC+2s+Res,0.000,0.198,0.294,0.372,0.432,0.522,0.558,0.588,0.600
|
| 154 |
+
StMin+LC+3s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400
|
| 155 |
+
StMin+LC+4s+Res,0.000,0.099,0.147,0.186,0.216,0.261,0.279,0.294,0.300
|
| 156 |
+
StMin+LC+5s+Res,0.000,0.079,0.118,0.149,0.173,0.209,0.223,0.235,0.240
|
| 157 |
+
StMin+LC+6s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200
|
| 158 |
+
StMin+LC+7s+Res,0.000,0.057,0.084,0.106,0.123,0.149,0.159,0.168,0.171
|
| 159 |
+
StMin+LC+8s+Res,0.000,0.050,0.073,0.093,0.108,0.131,0.140,0.147,0.150
|
| 160 |
+
StMin+LC+9s+Res,0.000,0.044,0.065,0.083,0.096,0.116,0.124,0.131,0.133
|
| 161 |
+
StMin+LC+10s+Res,0.000,0.040,0.059,0.074,0.086,0.104,0.112,0.118,0.120
|
| 162 |
+
StMin+MC+1s+Res,0.000,0.396,0.588,0.600,0.600,0.600,0.600,0.600,0.600
|
| 163 |
+
StMin+MC+2s+Res,0.000,0.198,0.294,0.372,0.432,0.522,0.558,0.588,0.600
|
| 164 |
+
StMin+MC+3s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400
|
| 165 |
+
StMin+MC+4s+Res,0.000,0.099,0.147,0.186,0.216,0.261,0.279,0.294,0.300
|
| 166 |
+
StMin+MC+5s+Res,0.000,0.079,0.118,0.149,0.173,0.209,0.223,0.235,0.240
|
| 167 |
+
StMin+MC+6s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200
|
| 168 |
+
StMin+MC+7s+Res,0.000,0.057,0.084,0.106,0.123,0.149,0.159,0.168,0.171
|
| 169 |
+
StMin+MC+8s+Res,0.000,0.050,0.073,0.093,0.108,0.131,0.140,0.147,0.150
|
| 170 |
+
StMin+MC+9s+Res,0.000,0.044,0.065,0.083,0.096,0.116,0.124,0.131,0.133
|
| 171 |
+
StMin+MC+10s+Res,0.000,0.040,0.059,0.074,0.086,0.104,0.112,0.118,0.120
|
| 172 |
+
StMin+HC+1s+Res,0.000,0.396,0.588,0.600,0.600,0.600,0.600,0.600,0.600
|
| 173 |
+
StMin+HC+2s+Res,0.000,0.198,0.294,0.372,0.432,0.522,0.558,0.588,0.600
|
| 174 |
+
StMin+HC+3s+Res,0.000,0.132,0.196,0.248,0.288,0.348,0.372,0.392,0.400
|
| 175 |
+
StMin+HC+4s+Res,0.000,0.099,0.147,0.186,0.216,0.261,0.279,0.294,0.300
|
| 176 |
+
StMin+HC+5s+Res,0.000,0.079,0.118,0.149,0.173,0.209,0.223,0.235,0.240
|
| 177 |
+
StMin+HC+6s+Res,0.000,0.066,0.098,0.124,0.144,0.174,0.186,0.196,0.200
|
| 178 |
+
StMin+HC+7s+Res,0.000,0.057,0.084,0.106,0.123,0.149,0.159,0.168,0.171
|
| 179 |
+
StMin+HC+8s+Res,0.000,0.050,0.073,0.093,0.108,0.131,0.140,0.147,0.150
|
| 180 |
+
StMin+HC+9s+Res,0.000,0.044,0.065,0.083,0.096,0.116,0.124,0.131,0.133
|
| 181 |
+
StMin+HC+10s+Res,0.000,0.040,0.059,0.074,0.086,0.104,0.112,0.118,0.120
|
| 182 |
+
BrCfl+LC+1s+Com,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 183 |
+
BrCfl+LC+2s+Com,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 184 |
+
BrCfl+LC+3s+Com,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 185 |
+
BrCfl+LC+4s+Com,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 186 |
+
BrCfl+LC+5s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 187 |
+
BrCfl+LC+6s+Com,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 188 |
+
BrCfl+LC+7s+Com,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 189 |
+
BrCfl+LC+8s+Com,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 190 |
+
BrCfl+LC+9s+Com,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 191 |
+
BrCfl+LC+10s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 192 |
+
BrCfl+MC+1s+Com,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 193 |
+
BrCfl+MC+2s+Com,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 194 |
+
BrCfl+MC+3s+Com,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 195 |
+
BrCfl+MC+4s+Com,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 196 |
+
BrCfl+MC+5s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 197 |
+
BrCfl+MC+6s+Com,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 198 |
+
BrCfl+MC+7s+Com,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 199 |
+
BrCfl+MC+8s+Com,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 200 |
+
BrCfl+MC+9s+Com,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 201 |
+
BrCfl+MC+10s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 202 |
+
BrCfl+HC+1s+Com,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 203 |
+
BrCfl+HC+2s+Com,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 204 |
+
BrCfl+HC+3s+Com,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 205 |
+
BrCfl+HC+4s+Com,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 206 |
+
BrCfl+HC+5s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 207 |
+
BrCfl+HC+6s+Com,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 208 |
+
BrCfl+HC+7s+Com,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 209 |
+
BrCfl+HC+8s+Com,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 210 |
+
BrCfl+HC+9s+Com,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 211 |
+
BrCfl+HC+10s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 212 |
+
BrCri+LC+1s+Com,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 213 |
+
BrCri+LC+2s+Com,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 214 |
+
BrCri+LC+3s+Com,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 215 |
+
BrCri+LC+4s+Com,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 216 |
+
BrCri+LC+5s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 217 |
+
BrCri+LC+6s+Com,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 218 |
+
BrCri+LC+7s+Com,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 219 |
+
BrCri+LC+8s+Com,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 220 |
+
BrCri+LC+9s+Com,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 221 |
+
BrCri+LC+10s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 222 |
+
BrCri+MC+1s+Com,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 223 |
+
BrCri+MC+2s+Com,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 224 |
+
BrCri+MC+3s+Com,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 225 |
+
BrCri+MC+4s+Com,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 226 |
+
BrCri+MC+5s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 227 |
+
BrCri+MC+6s+Com,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 228 |
+
BrCri+MC+7s+Com,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 229 |
+
BrCri+MC+8s+Com,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 230 |
+
BrCri+MC+9s+Com,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 231 |
+
BrCri+MC+10s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 232 |
+
BrCri+HC+1s+Com,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 233 |
+
BrCri+HC+2s+Com,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 234 |
+
BrCri+HC+3s+Com,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 235 |
+
BrCri+HC+4s+Com,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 236 |
+
BrCri+HC+5s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 237 |
+
BrCri+HC+6s+Com,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 238 |
+
BrCri+HC+7s+Com,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 239 |
+
BrCri+HC+8s+Com,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 240 |
+
BrCri+HC+9s+Com,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 241 |
+
BrCri+HC+10s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 242 |
+
BrM+LC+1s+Com,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 243 |
+
BrM+LC+2s+Com,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 244 |
+
BrM+LC+3s+Com,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 245 |
+
BrM+LC+4s+Com,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 246 |
+
BrM+LC+5s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 247 |
+
BrM+LC+6s+Com,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 248 |
+
BrM+LC+7s+Com,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 249 |
+
BrM+LC+8s+Com,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 250 |
+
BrM+LC+9s+Com,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 251 |
+
BrM+LC+10s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 252 |
+
BrM+MC+1s+Com,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 253 |
+
BrM+MC+2s+Com,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 254 |
+
BrM+MC+3s+Com,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 255 |
+
BrM+MC+4s+Com,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 256 |
+
BrM+MC+5s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 257 |
+
BrM+MC+6s+Com,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 258 |
+
BrM+MC+7s+Com,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 259 |
+
BrM+MC+8s+Com,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 260 |
+
BrM+MC+9s+Com,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 261 |
+
BrM+MC+10s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 262 |
+
BrM+HC+1s+Com,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 263 |
+
BrM+HC+2s+Com,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 264 |
+
BrM+HC+3s+Com,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 265 |
+
BrM+HC+4s+Com,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 266 |
+
BrM+HC+5s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 267 |
+
BrM+HC+6s+Com,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 268 |
+
BrM+HC+7s+Com,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 269 |
+
BrM+HC+8s+Com,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 270 |
+
BrM+HC+9s+Com,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 271 |
+
BrM+HC+10s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 272 |
+
Adb+LC+1s+Com,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 273 |
+
Adb+LC+2s+Com,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 274 |
+
Adb+LC+3s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 275 |
+
Adb+LC+4s+Com,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 276 |
+
Adb+LC+5s+Com,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 277 |
+
Adb+LC+6s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 278 |
+
Adb+LC+7s+Com,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 279 |
+
Adb+LC+8s+Com,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 280 |
+
Adb+LC+9s+Com,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 281 |
+
Adb+LC+10s+Com,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 282 |
+
Adb+MC+1s+Com,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 283 |
+
Adb+MC+2s+Com,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 284 |
+
Adb+MC+3s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 285 |
+
Adb+MC+4s+Com,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 286 |
+
Adb+MC+5s+Com,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 287 |
+
Adb+MC+6s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 288 |
+
Adb+MC+7s+Com,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 289 |
+
Adb+MC+8s+Com,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 290 |
+
Adb+MC+9s+Com,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 291 |
+
Adb+MC+10s+Com,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 292 |
+
Adb+HC+1s+Com,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 293 |
+
Adb+HC+2s+Com,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 294 |
+
Adb+HC+3s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 295 |
+
Adb+HC+4s+Com,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 296 |
+
Adb+HC+5s+Com,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 297 |
+
Adb+HC+6s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 298 |
+
Adb+HC+7s+Com,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 299 |
+
Adb+HC+8s+Com,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 300 |
+
Adb+HC+9s+Com,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 301 |
+
Adb+HC+10s+Com,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 302 |
+
RCi+LC+1s+Com,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 303 |
+
RCi+LC+2s+Com,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 304 |
+
RCi+LC+3s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 305 |
+
RCi+LC+4s+Com,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 306 |
+
RCi+LC+5s+Com,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 307 |
+
RCi+LC+6s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 308 |
+
RCi+LC+7s+Com,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 309 |
+
RCi+LC+8s+Com,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 310 |
+
RCi+LC+9s+Com,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 311 |
+
RCi+LC+10s+Com,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 312 |
+
RCi+MC+1s+Com,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 313 |
+
RCi+MC+2s+Com,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 314 |
+
RCi+MC+3s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 315 |
+
RCi+MC+4s+Com,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 316 |
+
RCi+MC+5s+Com,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 317 |
+
RCi+MC+6s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 318 |
+
RCi+MC+7s+Com,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 319 |
+
RCi+MC+8s+Com,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 320 |
+
RCi+MC+9s+Com,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 321 |
+
RCi+MC+10s+Com,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 322 |
+
RCi+HC+1s+Com,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 323 |
+
RCi+HC+2s+Com,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 324 |
+
RCi+HC+3s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 325 |
+
RCi+HC+4s+Com,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 326 |
+
RCi+HC+5s+Com,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 327 |
+
RCi+HC+6s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 328 |
+
RCi+HC+7s+Com,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 329 |
+
RCi+HC+8s+Com,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 330 |
+
RCi+HC+9s+Com,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 331 |
+
RCi+HC+10s+Com,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 332 |
+
StMin+LC+1s+Com,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 333 |
+
StMin+LC+2s+Com,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 334 |
+
StMin+LC+3s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 335 |
+
StMin+LC+4s+Com,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 336 |
+
StMin+LC+5s+Com,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 337 |
+
StMin+LC+6s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 338 |
+
StMin+LC+7s+Com,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 339 |
+
StMin+LC+8s+Com,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 340 |
+
StMin+LC+9s+Com,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 341 |
+
StMin+LC+10s+Com,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 342 |
+
StMin+MC+1s+Com,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 343 |
+
StMin+MC+2s+Com,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 344 |
+
StMin+MC+3s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 345 |
+
StMin+MC+4s+Com,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 346 |
+
StMin+MC+5s+Com,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 347 |
+
StMin+MC+6s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 348 |
+
StMin+MC+7s+Com,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 349 |
+
StMin+MC+8s+Com,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 350 |
+
StMin+MC+9s+Com,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 351 |
+
StMin+MC+10s+Com,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 352 |
+
StMin+HC+1s+Com,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 353 |
+
StMin+HC+2s+Com,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 354 |
+
StMin+HC+3s+Com,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 355 |
+
StMin+HC+4s+Com,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 356 |
+
StMin+HC+5s+Com,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 357 |
+
StMin+HC+6s+Com,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 358 |
+
StMin+HC+7s+Com,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 359 |
+
StMin+HC+8s+Com,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 360 |
+
StMin+HC+9s+Com,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 361 |
+
StMin+HC+10s+Com,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 362 |
+
BrCfl+LC+1s+Ind,0.000,0.560,0.960,1.000,1.000,1.000,1.000,1.000,1.000
|
| 363 |
+
BrCfl+LC+2s+Ind,0.000,0.280,0.480,0.630,0.720,0.860,0.910,0.960,1.000
|
| 364 |
+
BrCfl+LC+3s+Ind,0.000,0.187,0.320,0.420,0.480,0.573,0.607,0.640,0.667
|
| 365 |
+
BrCfl+LC+4s+Ind,0.000,0.140,0.240,0.315,0.360,0.430,0.455,0.480,0.500
|
| 366 |
+
BrCfl+LC+5s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400
|
| 367 |
+
BrCfl+LC+6s+Ind,0.000,0.093,0.160,0.210,0.240,0.287,0.303,0.320,0.333
|
| 368 |
+
BrCfl+LC+7s+Ind,0.000,0.080,0.137,0.180,0.206,0.246,0.260,0.274,0.286
|
| 369 |
+
BrCfl+LC+8s+Ind,0.000,0.070,0.120,0.158,0.180,0.215,0.228,0.240,0.250
|
| 370 |
+
BrCfl+LC+9s+Ind,0.000,0.062,0.107,0.140,0.160,0.191,0.202,0.213,0.222
|
| 371 |
+
BrCfl+LC+10s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200
|
| 372 |
+
BrCfl+MC+1s+Ind,0.000,0.560,0.960,1.000,1.000,1.000,1.000,1.000,1.000
|
| 373 |
+
BrCfl+MC+2s+Ind,0.000,0.280,0.480,0.630,0.720,0.860,0.910,0.960,1.000
|
| 374 |
+
BrCfl+MC+3s+Ind,0.000,0.187,0.320,0.420,0.480,0.573,0.607,0.640,0.667
|
| 375 |
+
BrCfl+MC+4s+Ind,0.000,0.140,0.240,0.315,0.360,0.430,0.455,0.480,0.500
|
| 376 |
+
BrCfl+MC+5s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400
|
| 377 |
+
BrCfl+MC+6s+Ind,0.000,0.093,0.160,0.210,0.240,0.287,0.303,0.320,0.333
|
| 378 |
+
BrCfl+MC+7s+Ind,0.000,0.080,0.137,0.180,0.206,0.246,0.260,0.274,0.286
|
| 379 |
+
BrCfl+MC+8s+Ind,0.000,0.070,0.120,0.158,0.180,0.215,0.228,0.240,0.250
|
| 380 |
+
BrCfl+MC+9s+Ind,0.000,0.062,0.107,0.140,0.160,0.191,0.202,0.213,0.222
|
| 381 |
+
BrCfl+MC+10s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200
|
| 382 |
+
BrCfl+HC+1s+Ind,0.000,0.560,0.960,1.000,1.000,1.000,1.000,1.000,1.000
|
| 383 |
+
BrCfl+HC+2s+Ind,0.000,0.280,0.480,0.630,0.720,0.860,0.910,0.960,1.000
|
| 384 |
+
BrCfl+HC+3s+Ind,0.000,0.187,0.320,0.420,0.480,0.573,0.607,0.640,0.667
|
| 385 |
+
BrCfl+HC+4s+Ind,0.000,0.140,0.240,0.315,0.360,0.430,0.455,0.480,0.500
|
| 386 |
+
BrCfl+HC+5s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400
|
| 387 |
+
BrCfl+HC+6s+Ind,0.000,0.093,0.160,0.210,0.240,0.287,0.303,0.320,0.333
|
| 388 |
+
BrCfl+HC+7s+Ind,0.000,0.080,0.137,0.180,0.206,0.246,0.260,0.274,0.286
|
| 389 |
+
BrCfl+HC+8s+Ind,0.000,0.070,0.120,0.158,0.180,0.215,0.228,0.240,0.250
|
| 390 |
+
BrCfl+HC+9s+Ind,0.000,0.062,0.107,0.140,0.160,0.191,0.202,0.213,0.222
|
| 391 |
+
BrCfl+HC+10s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200
|
| 392 |
+
BrCri+LC+1s+Ind,0.000,0.560,0.960,1.000,1.000,1.000,1.000,1.000,1.000
|
| 393 |
+
BrCri+LC+2s+Ind,0.000,0.280,0.480,0.630,0.720,0.860,0.910,0.960,1.000
|
| 394 |
+
BrCri+LC+3s+Ind,0.000,0.187,0.320,0.420,0.480,0.573,0.607,0.640,0.667
|
| 395 |
+
BrCri+LC+4s+Ind,0.000,0.140,0.240,0.315,0.360,0.430,0.455,0.480,0.500
|
| 396 |
+
BrCri+LC+5s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400
|
| 397 |
+
BrCri+LC+6s+Ind,0.000,0.093,0.160,0.210,0.240,0.287,0.303,0.320,0.333
|
| 398 |
+
BrCri+LC+7s+Ind,0.000,0.080,0.137,0.180,0.206,0.246,0.260,0.274,0.286
|
| 399 |
+
BrCri+LC+8s+Ind,0.000,0.070,0.120,0.158,0.180,0.215,0.228,0.240,0.250
|
| 400 |
+
BrCri+LC+9s+Ind,0.000,0.062,0.107,0.140,0.160,0.191,0.202,0.213,0.222
|
| 401 |
+
BrCri+LC+10s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200
|
| 402 |
+
BrCri+MC+1s+Ind,0.000,0.560,0.960,1.000,1.000,1.000,1.000,1.000,1.000
|
| 403 |
+
BrCri+MC+2s+Ind,0.000,0.280,0.480,0.630,0.720,0.860,0.910,0.960,1.000
|
| 404 |
+
BrCri+MC+3s+Ind,0.000,0.187,0.320,0.420,0.480,0.573,0.607,0.640,0.667
|
| 405 |
+
BrCri+MC+4s+Ind,0.000,0.140,0.240,0.315,0.360,0.430,0.455,0.480,0.500
|
| 406 |
+
BrCri+MC+5s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400
|
| 407 |
+
BrCri+MC+6s+Ind,0.000,0.093,0.160,0.210,0.240,0.287,0.303,0.320,0.333
|
| 408 |
+
BrCri+MC+7s+Ind,0.000,0.080,0.137,0.180,0.206,0.246,0.260,0.274,0.286
|
| 409 |
+
BrCri+MC+8s+Ind,0.000,0.070,0.120,0.158,0.180,0.215,0.228,0.240,0.250
|
| 410 |
+
BrCri+MC+9s+Ind,0.000,0.062,0.107,0.140,0.160,0.191,0.202,0.213,0.222
|
| 411 |
+
BrCri+MC+10s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200
|
| 412 |
+
BrCri+HC+1s+Ind,0.000,0.560,0.960,1.000,1.000,1.000,1.000,1.000,1.000
|
| 413 |
+
BrCri+HC+2s+Ind,0.000,0.280,0.480,0.630,0.720,0.860,0.910,0.960,1.000
|
| 414 |
+
BrCri+HC+3s+Ind,0.000,0.187,0.320,0.420,0.480,0.573,0.607,0.640,0.667
|
| 415 |
+
BrCri+HC+4s+Ind,0.000,0.140,0.240,0.315,0.360,0.430,0.455,0.480,0.500
|
| 416 |
+
BrCri+HC+5s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400
|
| 417 |
+
BrCri+HC+6s+Ind,0.000,0.093,0.160,0.210,0.240,0.287,0.303,0.320,0.333
|
| 418 |
+
BrCri+HC+7s+Ind,0.000,0.080,0.137,0.180,0.206,0.246,0.260,0.274,0.286
|
| 419 |
+
BrCri+HC+8s+Ind,0.000,0.070,0.120,0.158,0.180,0.215,0.228,0.240,0.250
|
| 420 |
+
BrCri+HC+9s+Ind,0.000,0.062,0.107,0.140,0.160,0.191,0.202,0.213,0.222
|
| 421 |
+
BrCri+HC+10s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200
|
| 422 |
+
BrM+LC+1s+Ind,0.000,0.560,0.960,1.000,1.000,1.000,1.000,1.000,1.000
|
| 423 |
+
BrM+LC+2s+Ind,0.000,0.280,0.480,0.630,0.720,0.860,0.910,0.960,1.000
|
| 424 |
+
BrM+LC+3s+Ind,0.000,0.187,0.320,0.420,0.480,0.573,0.607,0.640,0.667
|
| 425 |
+
BrM+LC+4s+Ind,0.000,0.140,0.240,0.315,0.360,0.430,0.455,0.480,0.500
|
| 426 |
+
BrM+LC+5s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400
|
| 427 |
+
BrM+LC+6s+Ind,0.000,0.093,0.160,0.210,0.240,0.287,0.303,0.320,0.333
|
| 428 |
+
BrM+LC+7s+Ind,0.000,0.080,0.137,0.180,0.206,0.246,0.260,0.274,0.286
|
| 429 |
+
BrM+LC+8s+Ind,0.000,0.070,0.120,0.158,0.180,0.215,0.228,0.240,0.250
|
| 430 |
+
BrM+LC+9s+Ind,0.000,0.062,0.107,0.140,0.160,0.191,0.202,0.213,0.222
|
| 431 |
+
BrM+LC+10s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200
|
| 432 |
+
BrM+MC+1s+Ind,0.000,0.560,0.960,1.000,1.000,1.000,1.000,1.000,1.000
|
| 433 |
+
BrM+MC+2s+Ind,0.000,0.280,0.480,0.630,0.720,0.860,0.910,0.960,1.000
|
| 434 |
+
BrM+MC+3s+Ind,0.000,0.187,0.320,0.420,0.480,0.573,0.607,0.640,0.667
|
| 435 |
+
BrM+MC+4s+Ind,0.000,0.140,0.240,0.315,0.360,0.430,0.455,0.480,0.500
|
| 436 |
+
BrM+MC+5s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400
|
| 437 |
+
BrM+MC+6s+Ind,0.000,0.093,0.160,0.210,0.240,0.287,0.303,0.320,0.333
|
| 438 |
+
BrM+MC+7s+Ind,0.000,0.080,0.137,0.180,0.206,0.246,0.260,0.274,0.286
|
| 439 |
+
BrM+MC+8s+Ind,0.000,0.070,0.120,0.158,0.180,0.215,0.228,0.240,0.250
|
| 440 |
+
BrM+MC+9s+Ind,0.000,0.062,0.107,0.140,0.160,0.191,0.202,0.213,0.222
|
| 441 |
+
BrM+MC+10s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200
|
| 442 |
+
BrM+HC+1s+Ind,0.000,0.560,0.960,1.000,1.000,1.000,1.000,1.000,1.000
|
| 443 |
+
BrM+HC+2s+Ind,0.000,0.280,0.480,0.630,0.720,0.860,0.910,0.960,1.000
|
| 444 |
+
BrM+HC+3s+Ind,0.000,0.187,0.320,0.420,0.480,0.573,0.607,0.640,0.667
|
| 445 |
+
BrM+HC+4s+Ind,0.000,0.140,0.240,0.315,0.360,0.430,0.455,0.480,0.500
|
| 446 |
+
BrM+HC+5s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400
|
| 447 |
+
BrM+HC+6s+Ind,0.000,0.093,0.160,0.210,0.240,0.287,0.303,0.320,0.333
|
| 448 |
+
BrM+HC+7s+Ind,0.000,0.080,0.137,0.180,0.206,0.246,0.260,0.274,0.286
|
| 449 |
+
BrM+HC+8s+Ind,0.000,0.070,0.120,0.158,0.180,0.215,0.228,0.240,0.250
|
| 450 |
+
BrM+HC+9s+Ind,0.000,0.062,0.107,0.140,0.160,0.191,0.202,0.213,0.222
|
| 451 |
+
BrM+HC+10s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200
|
| 452 |
+
Adb+LC+1s+Ind,0.000,0.336,0.576,0.600,0.600,0.600,0.600,0.600,0.600
|
| 453 |
+
Adb+LC+2s+Ind,0.000,0.168,0.288,0.378,0.432,0.516,0.546,0.576,0.600
|
| 454 |
+
Adb+LC+3s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400
|
| 455 |
+
Adb+LC+4s+Ind,0.000,0.084,0.144,0.189,0.216,0.258,0.273,0.288,0.300
|
| 456 |
+
Adb+LC+5s+Ind,0.000,0.067,0.115,0.151,0.173,0.206,0.218,0.230,0.240
|
| 457 |
+
Adb+LC+6s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200
|
| 458 |
+
Adb+LC+7s+Ind,0.000,0.048,0.082,0.108,0.123,0.147,0.156,0.165,0.171
|
| 459 |
+
Adb+LC+8s+Ind,0.000,0.042,0.072,0.095,0.108,0.129,0.137,0.144,0.150
|
| 460 |
+
Adb+LC+9s+Ind,0.000,0.037,0.064,0.084,0.096,0.115,0.121,0.128,0.133
|
| 461 |
+
Adb+LC+10s+Ind,0.000,0.034,0.058,0.076,0.086,0.103,0.109,0.115,0.120
|
| 462 |
+
Adb+MC+1s+Ind,0.000,0.336,0.576,0.600,0.600,0.600,0.600,0.600,0.600
|
| 463 |
+
Adb+MC+2s+Ind,0.000,0.168,0.288,0.378,0.432,0.516,0.546,0.576,0.600
|
| 464 |
+
Adb+MC+3s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400
|
| 465 |
+
Adb+MC+4s+Ind,0.000,0.084,0.144,0.189,0.216,0.258,0.273,0.288,0.300
|
| 466 |
+
Adb+MC+5s+Ind,0.000,0.067,0.115,0.151,0.173,0.206,0.218,0.230,0.240
|
| 467 |
+
Adb+MC+6s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200
|
| 468 |
+
Adb+MC+7s+Ind,0.000,0.048,0.082,0.108,0.123,0.147,0.156,0.165,0.171
|
| 469 |
+
Adb+MC+8s+Ind,0.000,0.042,0.072,0.095,0.108,0.129,0.137,0.144,0.150
|
| 470 |
+
Adb+MC+9s+Ind,0.000,0.037,0.064,0.084,0.096,0.115,0.121,0.128,0.133
|
| 471 |
+
Adb+MC+10s+Ind,0.000,0.034,0.058,0.076,0.086,0.103,0.109,0.115,0.120
|
| 472 |
+
Adb+HC+1s+Ind,0.000,0.336,0.576,0.600,0.600,0.600,0.600,0.600,0.600
|
| 473 |
+
Adb+HC+2s+Ind,0.000,0.168,0.288,0.378,0.432,0.516,0.546,0.576,0.600
|
| 474 |
+
Adb+HC+3s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400
|
| 475 |
+
Adb+HC+4s+Ind,0.000,0.084,0.144,0.189,0.216,0.258,0.273,0.288,0.300
|
| 476 |
+
Adb+HC+5s+Ind,0.000,0.067,0.115,0.151,0.173,0.206,0.218,0.230,0.240
|
| 477 |
+
Adb+HC+6s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200
|
| 478 |
+
Adb+HC+7s+Ind,0.000,0.048,0.082,0.108,0.123,0.147,0.156,0.165,0.171
|
| 479 |
+
Adb+HC+8s+Ind,0.000,0.042,0.072,0.095,0.108,0.129,0.137,0.144,0.150
|
| 480 |
+
Adb+HC+9s+Ind,0.000,0.037,0.064,0.084,0.096,0.115,0.121,0.128,0.133
|
| 481 |
+
Adb+HC+10s+Ind,0.000,0.034,0.058,0.076,0.086,0.103,0.109,0.115,0.120
|
| 482 |
+
RCi+LC+1s+Ind,0.000,0.336,0.576,0.600,0.600,0.600,0.600,0.600,0.600
|
| 483 |
+
RCi+LC+2s+Ind,0.000,0.168,0.288,0.378,0.432,0.516,0.546,0.576,0.600
|
| 484 |
+
RCi+LC+3s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400
|
| 485 |
+
RCi+LC+4s+Ind,0.000,0.084,0.144,0.189,0.216,0.258,0.273,0.288,0.300
|
| 486 |
+
RCi+LC+5s+Ind,0.000,0.067,0.115,0.151,0.173,0.206,0.218,0.230,0.240
|
| 487 |
+
RCi+LC+6s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200
|
| 488 |
+
RCi+LC+7s+Ind,0.000,0.048,0.082,0.108,0.123,0.147,0.156,0.165,0.171
|
| 489 |
+
RCi+LC+8s+Ind,0.000,0.042,0.072,0.095,0.108,0.129,0.137,0.144,0.150
|
| 490 |
+
RCi+LC+9s+Ind,0.000,0.037,0.064,0.084,0.096,0.115,0.121,0.128,0.133
|
| 491 |
+
RCi+LC+10s+Ind,0.000,0.034,0.058,0.076,0.086,0.103,0.109,0.115,0.120
|
| 492 |
+
RCi+MC+1s+Ind,0.000,0.336,0.576,0.600,0.600,0.600,0.600,0.600,0.600
|
| 493 |
+
RCi+MC+2s+Ind,0.000,0.168,0.288,0.378,0.432,0.516,0.546,0.576,0.600
|
| 494 |
+
RCi+MC+3s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400
|
| 495 |
+
RCi+MC+4s+Ind,0.000,0.084,0.144,0.189,0.216,0.258,0.273,0.288,0.300
|
| 496 |
+
RCi+MC+5s+Ind,0.000,0.067,0.115,0.151,0.173,0.206,0.218,0.230,0.240
|
| 497 |
+
RCi+MC+6s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200
|
| 498 |
+
RCi+MC+7s+Ind,0.000,0.048,0.082,0.108,0.123,0.147,0.156,0.165,0.171
|
| 499 |
+
RCi+MC+8s+Ind,0.000,0.042,0.072,0.095,0.108,0.129,0.137,0.144,0.150
|
| 500 |
+
RCi+MC+9s+Ind,0.000,0.037,0.064,0.084,0.096,0.115,0.121,0.128,0.133
|
| 501 |
+
RCi+MC+10s+Ind,0.000,0.034,0.058,0.076,0.086,0.103,0.109,0.115,0.120
|
| 502 |
+
RCi+HC+1s+Ind,0.000,0.336,0.576,0.600,0.600,0.600,0.600,0.600,0.600
|
| 503 |
+
RCi+HC+2s+Ind,0.000,0.168,0.288,0.378,0.432,0.516,0.546,0.576,0.600
|
| 504 |
+
RCi+HC+3s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400
|
| 505 |
+
RCi+HC+4s+Ind,0.000,0.084,0.144,0.189,0.216,0.258,0.273,0.288,0.300
|
| 506 |
+
RCi+HC+5s+Ind,0.000,0.067,0.115,0.151,0.173,0.206,0.218,0.230,0.240
|
| 507 |
+
RCi+HC+6s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200
|
| 508 |
+
RCi+HC+7s+Ind,0.000,0.048,0.082,0.108,0.123,0.147,0.156,0.165,0.171
|
| 509 |
+
RCi+HC+8s+Ind,0.000,0.042,0.072,0.095,0.108,0.129,0.137,0.144,0.150
|
| 510 |
+
RCi+HC+9s+Ind,0.000,0.037,0.064,0.084,0.096,0.115,0.121,0.128,0.133
|
| 511 |
+
RCi+HC+10s+Ind,0.000,0.034,0.058,0.076,0.086,0.103,0.109,0.115,0.120
|
| 512 |
+
StMin+LC+1s+Ind,0.000,0.336,0.576,0.600,0.600,0.600,0.600,0.600,0.600
|
| 513 |
+
StMin+LC+2s+Ind,0.000,0.168,0.288,0.378,0.432,0.516,0.546,0.576,0.600
|
| 514 |
+
StMin+LC+3s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400
|
| 515 |
+
StMin+LC+4s+Ind,0.000,0.084,0.144,0.189,0.216,0.258,0.273,0.288,0.300
|
| 516 |
+
StMin+LC+5s+Ind,0.000,0.067,0.115,0.151,0.173,0.206,0.218,0.230,0.240
|
| 517 |
+
StMin+LC+6s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200
|
| 518 |
+
StMin+LC+7s+Ind,0.000,0.048,0.082,0.108,0.123,0.147,0.156,0.165,0.171
|
| 519 |
+
StMin+LC+8s+Ind,0.000,0.042,0.072,0.095,0.108,0.129,0.137,0.144,0.150
|
| 520 |
+
StMin+LC+9s+Ind,0.000,0.037,0.064,0.084,0.096,0.115,0.121,0.128,0.133
|
| 521 |
+
StMin+LC+10s+Ind,0.000,0.034,0.058,0.076,0.086,0.103,0.109,0.115,0.120
|
| 522 |
+
StMin+MC+1s+Ind,0.000,0.336,0.576,0.600,0.600,0.600,0.600,0.600,0.600
|
| 523 |
+
StMin+MC+2s+Ind,0.000,0.168,0.288,0.378,0.432,0.516,0.546,0.576,0.600
|
| 524 |
+
StMin+MC+3s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400
|
| 525 |
+
StMin+MC+4s+Ind,0.000,0.084,0.144,0.189,0.216,0.258,0.273,0.288,0.300
|
| 526 |
+
StMin+MC+5s+Ind,0.000,0.067,0.115,0.151,0.173,0.206,0.218,0.230,0.240
|
| 527 |
+
StMin+MC+6s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200
|
| 528 |
+
StMin+MC+7s+Ind,0.000,0.048,0.082,0.108,0.123,0.147,0.156,0.165,0.171
|
| 529 |
+
StMin+MC+8s+Ind,0.000,0.042,0.072,0.095,0.108,0.129,0.137,0.144,0.150
|
| 530 |
+
StMin+MC+9s+Ind,0.000,0.037,0.064,0.084,0.096,0.115,0.121,0.128,0.133
|
| 531 |
+
StMin+MC+10s+Ind,0.000,0.034,0.058,0.076,0.086,0.103,0.109,0.115,0.120
|
| 532 |
+
StMin+HC+1s+Ind,0.000,0.336,0.576,0.600,0.600,0.600,0.600,0.600,0.600
|
| 533 |
+
StMin+HC+2s+Ind,0.000,0.168,0.288,0.378,0.432,0.516,0.546,0.576,0.600
|
| 534 |
+
StMin+HC+3s+Ind,0.000,0.112,0.192,0.252,0.288,0.344,0.364,0.384,0.400
|
| 535 |
+
StMin+HC+4s+Ind,0.000,0.084,0.144,0.189,0.216,0.258,0.273,0.288,0.300
|
| 536 |
+
StMin+HC+5s+Ind,0.000,0.067,0.115,0.151,0.173,0.206,0.218,0.230,0.240
|
| 537 |
+
StMin+HC+6s+Ind,0.000,0.056,0.096,0.126,0.144,0.172,0.182,0.192,0.200
|
| 538 |
+
StMin+HC+7s+Ind,0.000,0.048,0.082,0.108,0.123,0.147,0.156,0.165,0.171
|
| 539 |
+
StMin+HC+8s+Ind,0.000,0.042,0.072,0.095,0.108,0.129,0.137,0.144,0.150
|
| 540 |
+
StMin+HC+9s+Ind,0.000,0.037,0.064,0.084,0.096,0.115,0.121,0.128,0.133
|
| 541 |
+
StMin+HC+10s+Ind,0.000,0.034,0.058,0.076,0.086,0.103,0.109,0.115,0.120
|
| 542 |
+
BrCfl+LC+1s+Agri,0.000,0.280,0.740,1.000,1.000,1.000,1.000,1.000,1.000
|
| 543 |
+
BrCfl+LC+2s+Agri,0.000,0.140,0.370,0.520,0.560,0.660,0.830,0.990,1.000
|
| 544 |
+
BrCfl+LC+3s+Agri,0.000,0.093,0.247,0.347,0.373,0.440,0.553,0.660,0.667
|
| 545 |
+
BrCfl+LC+4s+Agri,0.000,0.070,0.185,0.260,0.280,0.330,0.415,0.495,0.500
|
| 546 |
+
BrCfl+LC+5s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400
|
| 547 |
+
BrCfl+LC+6s+Agri,0.000,0.047,0.123,0.173,0.187,0.220,0.277,0.330,0.333
|
| 548 |
+
BrCfl+LC+7s+Agri,0.000,0.040,0.106,0.149,0.160,0.189,0.237,0.283,0.286
|
| 549 |
+
BrCfl+LC+8s+Agri,0.000,0.035,0.092,0.130,0.140,0.165,0.207,0.247,0.250
|
| 550 |
+
BrCfl+LC+9s+Agri,0.000,0.031,0.082,0.116,0.124,0.147,0.184,0.220,0.222
|
| 551 |
+
BrCfl+LC+10s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200
|
| 552 |
+
BrCfl+MC+1s+Agri,0.000,0.280,0.740,1.000,1.000,1.000,1.000,1.000,1.000
|
| 553 |
+
BrCfl+MC+2s+Agri,0.000,0.140,0.370,0.520,0.560,0.660,0.830,0.990,1.000
|
| 554 |
+
BrCfl+MC+3s+Agri,0.000,0.093,0.247,0.347,0.373,0.440,0.553,0.660,0.667
|
| 555 |
+
BrCfl+MC+4s+Agri,0.000,0.070,0.185,0.260,0.280,0.330,0.415,0.495,0.500
|
| 556 |
+
BrCfl+MC+5s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400
|
| 557 |
+
BrCfl+MC+6s+Agri,0.000,0.047,0.123,0.173,0.187,0.220,0.277,0.330,0.333
|
| 558 |
+
BrCfl+MC+7s+Agri,0.000,0.040,0.106,0.149,0.160,0.189,0.237,0.283,0.286
|
| 559 |
+
BrCfl+MC+8s+Agri,0.000,0.035,0.092,0.130,0.140,0.165,0.207,0.247,0.250
|
| 560 |
+
BrCfl+MC+9s+Agri,0.000,0.031,0.082,0.116,0.124,0.147,0.184,0.220,0.222
|
| 561 |
+
BrCfl+MC+10s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200
|
| 562 |
+
BrCfl+HC+1s+Agri,0.000,0.280,0.740,1.000,1.000,1.000,1.000,1.000,1.000
|
| 563 |
+
BrCfl+HC+2s+Agri,0.000,0.140,0.370,0.520,0.560,0.660,0.830,0.990,1.000
|
| 564 |
+
BrCfl+HC+3s+Agri,0.000,0.093,0.247,0.347,0.373,0.440,0.553,0.660,0.667
|
| 565 |
+
BrCfl+HC+4s+Agri,0.000,0.070,0.185,0.260,0.280,0.330,0.415,0.495,0.500
|
| 566 |
+
BrCfl+HC+5s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400
|
| 567 |
+
BrCfl+HC+6s+Agri,0.000,0.047,0.123,0.173,0.187,0.220,0.277,0.330,0.333
|
| 568 |
+
BrCfl+HC+7s+Agri,0.000,0.040,0.106,0.149,0.160,0.189,0.237,0.283,0.286
|
| 569 |
+
BrCfl+HC+8s+Agri,0.000,0.035,0.092,0.130,0.140,0.165,0.207,0.247,0.250
|
| 570 |
+
BrCfl+HC+9s+Agri,0.000,0.031,0.082,0.116,0.124,0.147,0.184,0.220,0.222
|
| 571 |
+
BrCfl+HC+10s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200
|
| 572 |
+
BrCri+LC+1s+Agri,0.000,0.280,0.740,1.000,1.000,1.000,1.000,1.000,1.000
|
| 573 |
+
BrCri+LC+2s+Agri,0.000,0.140,0.370,0.520,0.560,0.660,0.830,0.990,1.000
|
| 574 |
+
BrCri+LC+3s+Agri,0.000,0.093,0.247,0.347,0.373,0.440,0.553,0.660,0.667
|
| 575 |
+
BrCri+LC+4s+Agri,0.000,0.070,0.185,0.260,0.280,0.330,0.415,0.495,0.500
|
| 576 |
+
BrCri+LC+5s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400
|
| 577 |
+
BrCri+LC+6s+Agri,0.000,0.047,0.123,0.173,0.187,0.220,0.277,0.330,0.333
|
| 578 |
+
BrCri+LC+7s+Agri,0.000,0.040,0.106,0.149,0.160,0.189,0.237,0.283,0.286
|
| 579 |
+
BrCri+LC+8s+Agri,0.000,0.035,0.092,0.130,0.140,0.165,0.207,0.247,0.250
|
| 580 |
+
BrCri+LC+9s+Agri,0.000,0.031,0.082,0.116,0.124,0.147,0.184,0.220,0.222
|
| 581 |
+
BrCri+LC+10s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200
|
| 582 |
+
BrCri+MC+1s+Agri,0.000,0.280,0.740,1.000,1.000,1.000,1.000,1.000,1.000
|
| 583 |
+
BrCri+MC+2s+Agri,0.000,0.140,0.370,0.520,0.560,0.660,0.830,0.990,1.000
|
| 584 |
+
BrCri+MC+3s+Agri,0.000,0.093,0.247,0.347,0.373,0.440,0.553,0.660,0.667
|
| 585 |
+
BrCri+MC+4s+Agri,0.000,0.070,0.185,0.260,0.280,0.330,0.415,0.495,0.500
|
| 586 |
+
BrCri+MC+5s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400
|
| 587 |
+
BrCri+MC+6s+Agri,0.000,0.047,0.123,0.173,0.187,0.220,0.277,0.330,0.333
|
| 588 |
+
BrCri+MC+7s+Agri,0.000,0.040,0.106,0.149,0.160,0.189,0.237,0.283,0.286
|
| 589 |
+
BrCri+MC+8s+Agri,0.000,0.035,0.092,0.130,0.140,0.165,0.207,0.247,0.250
|
| 590 |
+
BrCri+MC+9s+Agri,0.000,0.031,0.082,0.116,0.124,0.147,0.184,0.220,0.222
|
| 591 |
+
BrCri+MC+10s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200
|
| 592 |
+
BrCri+HC+1s+Agri,0.000,0.280,0.740,1.000,1.000,1.000,1.000,1.000,1.000
|
| 593 |
+
BrCri+HC+2s+Agri,0.000,0.140,0.370,0.520,0.560,0.660,0.830,0.990,1.000
|
| 594 |
+
BrCri+HC+3s+Agri,0.000,0.093,0.247,0.347,0.373,0.440,0.553,0.660,0.667
|
| 595 |
+
BrCri+HC+4s+Agri,0.000,0.070,0.185,0.260,0.280,0.330,0.415,0.495,0.500
|
| 596 |
+
BrCri+HC+5s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400
|
| 597 |
+
BrCri+HC+6s+Agri,0.000,0.047,0.123,0.173,0.187,0.220,0.277,0.330,0.333
|
| 598 |
+
BrCri+HC+7s+Agri,0.000,0.040,0.106,0.149,0.160,0.189,0.237,0.283,0.286
|
| 599 |
+
BrCri+HC+8s+Agri,0.000,0.035,0.092,0.130,0.140,0.165,0.207,0.247,0.250
|
| 600 |
+
BrCri+HC+9s+Agri,0.000,0.031,0.082,0.116,0.124,0.147,0.184,0.220,0.222
|
| 601 |
+
BrCri+HC+10s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200
|
| 602 |
+
BrM+LC+1s+Agri,0.000,0.280,0.740,1.000,1.000,1.000,1.000,1.000,1.000
|
| 603 |
+
BrM+LC+2s+Agri,0.000,0.140,0.370,0.520,0.560,0.660,0.830,0.990,1.000
|
| 604 |
+
BrM+LC+3s+Agri,0.000,0.093,0.247,0.347,0.373,0.440,0.553,0.660,0.667
|
| 605 |
+
BrM+LC+4s+Agri,0.000,0.070,0.185,0.260,0.280,0.330,0.415,0.495,0.500
|
| 606 |
+
BrM+LC+5s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400
|
| 607 |
+
BrM+LC+6s+Agri,0.000,0.047,0.123,0.173,0.187,0.220,0.277,0.330,0.333
|
| 608 |
+
BrM+LC+7s+Agri,0.000,0.040,0.106,0.149,0.160,0.189,0.237,0.283,0.286
|
| 609 |
+
BrM+LC+8s+Agri,0.000,0.035,0.092,0.130,0.140,0.165,0.207,0.247,0.250
|
| 610 |
+
BrM+LC+9s+Agri,0.000,0.031,0.082,0.116,0.124,0.147,0.184,0.220,0.222
|
| 611 |
+
BrM+LC+10s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200
|
| 612 |
+
BrM+MC+1s+Agri,0.000,0.280,0.740,1.000,1.000,1.000,1.000,1.000,1.000
|
| 613 |
+
BrM+MC+2s+Agri,0.000,0.140,0.370,0.520,0.560,0.660,0.830,0.990,1.000
|
| 614 |
+
BrM+MC+3s+Agri,0.000,0.093,0.247,0.347,0.373,0.440,0.553,0.660,0.667
|
| 615 |
+
BrM+MC+4s+Agri,0.000,0.070,0.185,0.260,0.280,0.330,0.415,0.495,0.500
|
| 616 |
+
BrM+MC+5s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400
|
| 617 |
+
BrM+MC+6s+Agri,0.000,0.047,0.123,0.173,0.187,0.220,0.277,0.330,0.333
|
| 618 |
+
BrM+MC+7s+Agri,0.000,0.040,0.106,0.149,0.160,0.189,0.237,0.283,0.286
|
| 619 |
+
BrM+MC+8s+Agri,0.000,0.035,0.092,0.130,0.140,0.165,0.207,0.247,0.250
|
| 620 |
+
BrM+MC+9s+Agri,0.000,0.031,0.082,0.116,0.124,0.147,0.184,0.220,0.222
|
| 621 |
+
BrM+MC+10s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200
|
| 622 |
+
BrM+HC+1s+Agri,0.000,0.280,0.740,1.000,1.000,1.000,1.000,1.000,1.000
|
| 623 |
+
BrM+HC+2s+Agri,0.000,0.140,0.370,0.520,0.560,0.660,0.830,0.990,1.000
|
| 624 |
+
BrM+HC+3s+Agri,0.000,0.093,0.247,0.347,0.373,0.440,0.553,0.660,0.667
|
| 625 |
+
BrM+HC+4s+Agri,0.000,0.070,0.185,0.260,0.280,0.330,0.415,0.495,0.500
|
| 626 |
+
BrM+HC+5s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400
|
| 627 |
+
BrM+HC+6s+Agri,0.000,0.047,0.123,0.173,0.187,0.220,0.277,0.330,0.333
|
| 628 |
+
BrM+HC+7s+Agri,0.000,0.040,0.106,0.149,0.160,0.189,0.237,0.283,0.286
|
| 629 |
+
BrM+HC+8s+Agri,0.000,0.035,0.092,0.130,0.140,0.165,0.207,0.247,0.250
|
| 630 |
+
BrM+HC+9s+Agri,0.000,0.031,0.082,0.116,0.124,0.147,0.184,0.220,0.222
|
| 631 |
+
BrM+HC+10s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200
|
| 632 |
+
Adb+LC+1s+Agri,0.000,0.168,0.444,0.600,0.600,0.600,0.600,0.600,0.600
|
| 633 |
+
Adb+LC+2s+Agri,0.000,0.084,0.222,0.312,0.336,0.396,0.498,0.594,0.600
|
| 634 |
+
Adb+LC+3s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400
|
| 635 |
+
Adb+LC+4s+Agri,0.000,0.042,0.111,0.156,0.168,0.198,0.249,0.297,0.300
|
| 636 |
+
Adb+LC+5s+Agri,0.000,0.034,0.089,0.125,0.134,0.158,0.199,0.238,0.240
|
| 637 |
+
Adb+LC+6s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200
|
| 638 |
+
Adb+LC+7s+Agri,0.000,0.024,0.063,0.089,0.096,0.113,0.142,0.170,0.171
|
| 639 |
+
Adb+LC+8s+Agri,0.000,0.021,0.056,0.078,0.084,0.099,0.124,0.148,0.150
|
| 640 |
+
Adb+LC+9s+Agri,0.000,0.019,0.049,0.069,0.075,0.088,0.111,0.132,0.133
|
| 641 |
+
Adb+LC+10s+Agri,0.000,0.017,0.044,0.062,0.067,0.079,0.100,0.119,0.120
|
| 642 |
+
Adb+MC+1s+Agri,0.000,0.168,0.444,0.600,0.600,0.600,0.600,0.600,0.600
|
| 643 |
+
Adb+MC+2s+Agri,0.000,0.084,0.222,0.312,0.336,0.396,0.498,0.594,0.600
|
| 644 |
+
Adb+MC+3s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400
|
| 645 |
+
Adb+MC+4s+Agri,0.000,0.042,0.111,0.156,0.168,0.198,0.249,0.297,0.300
|
| 646 |
+
Adb+MC+5s+Agri,0.000,0.034,0.089,0.125,0.134,0.158,0.199,0.238,0.240
|
| 647 |
+
Adb+MC+6s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200
|
| 648 |
+
Adb+MC+7s+Agri,0.000,0.024,0.063,0.089,0.096,0.113,0.142,0.170,0.171
|
| 649 |
+
Adb+MC+8s+Agri,0.000,0.021,0.056,0.078,0.084,0.099,0.124,0.148,0.150
|
| 650 |
+
Adb+MC+9s+Agri,0.000,0.019,0.049,0.069,0.075,0.088,0.111,0.132,0.133
|
| 651 |
+
Adb+MC+10s+Agri,0.000,0.017,0.044,0.062,0.067,0.079,0.100,0.119,0.120
|
| 652 |
+
Adb+HC+1s+Agri,0.000,0.168,0.444,0.600,0.600,0.600,0.600,0.600,0.600
|
| 653 |
+
Adb+HC+2s+Agri,0.000,0.084,0.222,0.312,0.336,0.396,0.498,0.594,0.600
|
| 654 |
+
Adb+HC+3s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400
|
| 655 |
+
Adb+HC+4s+Agri,0.000,0.042,0.111,0.156,0.168,0.198,0.249,0.297,0.300
|
| 656 |
+
Adb+HC+5s+Agri,0.000,0.034,0.089,0.125,0.134,0.158,0.199,0.238,0.240
|
| 657 |
+
Adb+HC+6s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200
|
| 658 |
+
Adb+HC+7s+Agri,0.000,0.024,0.063,0.089,0.096,0.113,0.142,0.170,0.171
|
| 659 |
+
Adb+HC+8s+Agri,0.000,0.021,0.056,0.078,0.084,0.099,0.124,0.148,0.150
|
| 660 |
+
Adb+HC+9s+Agri,0.000,0.019,0.049,0.069,0.075,0.088,0.111,0.132,0.133
|
| 661 |
+
Adb+HC+10s+Agri,0.000,0.017,0.044,0.062,0.067,0.079,0.100,0.119,0.120
|
| 662 |
+
RCi+LC+1s+Agri,0.000,0.168,0.444,0.600,0.600,0.600,0.600,0.600,0.600
|
| 663 |
+
RCi+LC+2s+Agri,0.000,0.084,0.222,0.312,0.336,0.396,0.498,0.594,0.600
|
| 664 |
+
RCi+LC+3s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400
|
| 665 |
+
RCi+LC+4s+Agri,0.000,0.042,0.111,0.156,0.168,0.198,0.249,0.297,0.300
|
| 666 |
+
RCi+LC+5s+Agri,0.000,0.034,0.089,0.125,0.134,0.158,0.199,0.238,0.240
|
| 667 |
+
RCi+LC+6s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200
|
| 668 |
+
RCi+LC+7s+Agri,0.000,0.024,0.063,0.089,0.096,0.113,0.142,0.170,0.171
|
| 669 |
+
RCi+LC+8s+Agri,0.000,0.021,0.056,0.078,0.084,0.099,0.124,0.148,0.150
|
| 670 |
+
RCi+LC+9s+Agri,0.000,0.019,0.049,0.069,0.075,0.088,0.111,0.132,0.133
|
| 671 |
+
RCi+LC+10s+Agri,0.000,0.017,0.044,0.062,0.067,0.079,0.100,0.119,0.120
|
| 672 |
+
RCi+MC+1s+Agri,0.000,0.168,0.444,0.600,0.600,0.600,0.600,0.600,0.600
|
| 673 |
+
RCi+MC+2s+Agri,0.000,0.084,0.222,0.312,0.336,0.396,0.498,0.594,0.600
|
| 674 |
+
RCi+MC+3s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400
|
| 675 |
+
RCi+MC+4s+Agri,0.000,0.042,0.111,0.156,0.168,0.198,0.249,0.297,0.300
|
| 676 |
+
RCi+MC+5s+Agri,0.000,0.034,0.089,0.125,0.134,0.158,0.199,0.238,0.240
|
| 677 |
+
RCi+MC+6s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200
|
| 678 |
+
RCi+MC+7s+Agri,0.000,0.024,0.063,0.089,0.096,0.113,0.142,0.170,0.171
|
| 679 |
+
RCi+MC+8s+Agri,0.000,0.021,0.056,0.078,0.084,0.099,0.124,0.148,0.150
|
| 680 |
+
RCi+MC+9s+Agri,0.000,0.019,0.049,0.069,0.075,0.088,0.111,0.132,0.133
|
| 681 |
+
RCi+MC+10s+Agri,0.000,0.017,0.044,0.062,0.067,0.079,0.100,0.119,0.120
|
| 682 |
+
RCi+HC+1s+Agri,0.000,0.168,0.444,0.600,0.600,0.600,0.600,0.600,0.600
|
| 683 |
+
RCi+HC+2s+Agri,0.000,0.084,0.222,0.312,0.336,0.396,0.498,0.594,0.600
|
| 684 |
+
RCi+HC+3s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400
|
| 685 |
+
RCi+HC+4s+Agri,0.000,0.042,0.111,0.156,0.168,0.198,0.249,0.297,0.300
|
| 686 |
+
RCi+HC+5s+Agri,0.000,0.034,0.089,0.125,0.134,0.158,0.199,0.238,0.240
|
| 687 |
+
RCi+HC+6s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200
|
| 688 |
+
RCi+HC+7s+Agri,0.000,0.024,0.063,0.089,0.096,0.113,0.142,0.170,0.171
|
| 689 |
+
RCi+HC+8s+Agri,0.000,0.021,0.056,0.078,0.084,0.099,0.124,0.148,0.150
|
| 690 |
+
RCi+HC+9s+Agri,0.000,0.019,0.049,0.069,0.075,0.088,0.111,0.132,0.133
|
| 691 |
+
RCi+HC+10s+Agri,0.000,0.017,0.044,0.062,0.067,0.079,0.100,0.119,0.120
|
| 692 |
+
StMin+LC+1s+Agri,0.000,0.168,0.444,0.600,0.600,0.600,0.600,0.600,0.600
|
| 693 |
+
StMin+LC+2s+Agri,0.000,0.084,0.222,0.312,0.336,0.396,0.498,0.594,0.600
|
| 694 |
+
StMin+LC+3s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400
|
| 695 |
+
StMin+LC+4s+Agri,0.000,0.042,0.111,0.156,0.168,0.198,0.249,0.297,0.300
|
| 696 |
+
StMin+LC+5s+Agri,0.000,0.034,0.089,0.125,0.134,0.158,0.199,0.238,0.240
|
| 697 |
+
StMin+LC+6s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200
|
| 698 |
+
StMin+LC+7s+Agri,0.000,0.024,0.063,0.089,0.096,0.113,0.142,0.170,0.171
|
| 699 |
+
StMin+LC+8s+Agri,0.000,0.021,0.056,0.078,0.084,0.099,0.124,0.148,0.150
|
| 700 |
+
StMin+LC+9s+Agri,0.000,0.019,0.049,0.069,0.075,0.088,0.111,0.132,0.133
|
| 701 |
+
StMin+LC+10s+Agri,0.000,0.017,0.044,0.062,0.067,0.079,0.100,0.119,0.120
|
| 702 |
+
StMin+MC+1s+Agri,0.000,0.168,0.444,0.600,0.600,0.600,0.600,0.600,0.600
|
| 703 |
+
StMin+MC+2s+Agri,0.000,0.084,0.222,0.312,0.336,0.396,0.498,0.594,0.600
|
| 704 |
+
StMin+MC+3s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400
|
| 705 |
+
StMin+MC+4s+Agri,0.000,0.042,0.111,0.156,0.168,0.198,0.249,0.297,0.300
|
| 706 |
+
StMin+MC+5s+Agri,0.000,0.034,0.089,0.125,0.134,0.158,0.199,0.238,0.240
|
| 707 |
+
StMin+MC+6s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200
|
| 708 |
+
StMin+MC+7s+Agri,0.000,0.024,0.063,0.089,0.096,0.113,0.142,0.170,0.171
|
| 709 |
+
StMin+MC+8s+Agri,0.000,0.021,0.056,0.078,0.084,0.099,0.124,0.148,0.150
|
| 710 |
+
StMin+MC+9s+Agri,0.000,0.019,0.049,0.069,0.075,0.088,0.111,0.132,0.133
|
| 711 |
+
StMin+MC+10s+Agri,0.000,0.017,0.044,0.062,0.067,0.079,0.100,0.119,0.120
|
| 712 |
+
StMin+HC+1s+Agri,0.000,0.168,0.444,0.600,0.600,0.600,0.600,0.600,0.600
|
| 713 |
+
StMin+HC+2s+Agri,0.000,0.084,0.222,0.312,0.336,0.396,0.498,0.594,0.600
|
| 714 |
+
StMin+HC+3s+Agri,0.000,0.056,0.148,0.208,0.224,0.264,0.332,0.396,0.400
|
| 715 |
+
StMin+HC+4s+Agri,0.000,0.042,0.111,0.156,0.168,0.198,0.249,0.297,0.300
|
| 716 |
+
StMin+HC+5s+Agri,0.000,0.034,0.089,0.125,0.134,0.158,0.199,0.238,0.240
|
| 717 |
+
StMin+HC+6s+Agri,0.000,0.028,0.074,0.104,0.112,0.132,0.166,0.198,0.200
|
| 718 |
+
StMin+HC+7s+Agri,0.000,0.024,0.063,0.089,0.096,0.113,0.142,0.170,0.171
|
| 719 |
+
StMin+HC+8s+Agri,0.000,0.021,0.056,0.078,0.084,0.099,0.124,0.148,0.150
|
| 720 |
+
StMin+HC+9s+Agri,0.000,0.019,0.049,0.069,0.075,0.088,0.111,0.132,0.133
|
| 721 |
+
StMin+HC+10s+Agri,0.000,0.017,0.044,0.062,0.067,0.079,0.100,0.119,0.120
|
| 722 |
+
BrCfl+LC+1s+ResCom,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 723 |
+
BrCfl+LC+2s+ResCom,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 724 |
+
BrCfl+LC+3s+ResCom,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 725 |
+
BrCfl+LC+4s+ResCom,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 726 |
+
BrCfl+LC+5s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 727 |
+
BrCfl+LC+6s+ResCom,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 728 |
+
BrCfl+LC+7s+ResCom,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 729 |
+
BrCfl+LC+8s+ResCom,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 730 |
+
BrCfl+LC+9s+ResCom,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 731 |
+
BrCfl+LC+10s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 732 |
+
BrCfl+MC+1s+ResCom,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 733 |
+
BrCfl+MC+2s+ResCom,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 734 |
+
BrCfl+MC+3s+ResCom,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 735 |
+
BrCfl+MC+4s+ResCom,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 736 |
+
BrCfl+MC+5s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 737 |
+
BrCfl+MC+6s+ResCom,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 738 |
+
BrCfl+MC+7s+ResCom,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 739 |
+
BrCfl+MC+8s+ResCom,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 740 |
+
BrCfl+MC+9s+ResCom,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 741 |
+
BrCfl+MC+10s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 742 |
+
BrCfl+HC+1s+ResCom,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 743 |
+
BrCfl+HC+2s+ResCom,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 744 |
+
BrCfl+HC+3s+ResCom,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 745 |
+
BrCfl+HC+4s+ResCom,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 746 |
+
BrCfl+HC+5s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 747 |
+
BrCfl+HC+6s+ResCom,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 748 |
+
BrCfl+HC+7s+ResCom,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 749 |
+
BrCfl+HC+8s+ResCom,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 750 |
+
BrCfl+HC+9s+ResCom,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 751 |
+
BrCfl+HC+10s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 752 |
+
BrCri+LC+1s+ResCom,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 753 |
+
BrCri+LC+2s+ResCom,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 754 |
+
BrCri+LC+3s+ResCom,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 755 |
+
BrCri+LC+4s+ResCom,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 756 |
+
BrCri+LC+5s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 757 |
+
BrCri+LC+6s+ResCom,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 758 |
+
BrCri+LC+7s+ResCom,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 759 |
+
BrCri+LC+8s+ResCom,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 760 |
+
BrCri+LC+9s+ResCom,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 761 |
+
BrCri+LC+10s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 762 |
+
BrCri+MC+1s+ResCom,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 763 |
+
BrCri+MC+2s+ResCom,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 764 |
+
BrCri+MC+3s+ResCom,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 765 |
+
BrCri+MC+4s+ResCom,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 766 |
+
BrCri+MC+5s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 767 |
+
BrCri+MC+6s+ResCom,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 768 |
+
BrCri+MC+7s+ResCom,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 769 |
+
BrCri+MC+8s+ResCom,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 770 |
+
BrCri+MC+9s+ResCom,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 771 |
+
BrCri+MC+10s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 772 |
+
BrCri+HC+1s+ResCom,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 773 |
+
BrCri+HC+2s+ResCom,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 774 |
+
BrCri+HC+3s+ResCom,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 775 |
+
BrCri+HC+4s+ResCom,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 776 |
+
BrCri+HC+5s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 777 |
+
BrCri+HC+6s+ResCom,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 778 |
+
BrCri+HC+7s+ResCom,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 779 |
+
BrCri+HC+8s+ResCom,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 780 |
+
BrCri+HC+9s+ResCom,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 781 |
+
BrCri+HC+10s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 782 |
+
BrM+LC+1s+ResCom,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 783 |
+
BrM+LC+2s+ResCom,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 784 |
+
BrM+LC+3s+ResCom,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 785 |
+
BrM+LC+4s+ResCom,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 786 |
+
BrM+LC+5s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 787 |
+
BrM+LC+6s+ResCom,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 788 |
+
BrM+LC+7s+ResCom,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 789 |
+
BrM+LC+8s+ResCom,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 790 |
+
BrM+LC+9s+ResCom,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 791 |
+
BrM+LC+10s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 792 |
+
BrM+MC+1s+ResCom,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 793 |
+
BrM+MC+2s+ResCom,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 794 |
+
BrM+MC+3s+ResCom,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 795 |
+
BrM+MC+4s+ResCom,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 796 |
+
BrM+MC+5s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 797 |
+
BrM+MC+6s+ResCom,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 798 |
+
BrM+MC+7s+ResCom,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 799 |
+
BrM+MC+8s+ResCom,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 800 |
+
BrM+MC+9s+ResCom,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 801 |
+
BrM+MC+10s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 802 |
+
BrM+HC+1s+ResCom,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 803 |
+
BrM+HC+2s+ResCom,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 804 |
+
BrM+HC+3s+ResCom,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 805 |
+
BrM+HC+4s+ResCom,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 806 |
+
BrM+HC+5s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 807 |
+
BrM+HC+6s+ResCom,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 808 |
+
BrM+HC+7s+ResCom,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 809 |
+
BrM+HC+8s+ResCom,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 810 |
+
BrM+HC+9s+ResCom,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 811 |
+
BrM+HC+10s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 812 |
+
Adb+LC+1s+ResCom,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 813 |
+
Adb+LC+2s+ResCom,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 814 |
+
Adb+LC+3s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 815 |
+
Adb+LC+4s+ResCom,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 816 |
+
Adb+LC+5s+ResCom,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 817 |
+
Adb+LC+6s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 818 |
+
Adb+LC+7s+ResCom,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 819 |
+
Adb+LC+8s+ResCom,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 820 |
+
Adb+LC+9s+ResCom,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 821 |
+
Adb+LC+10s+ResCom,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 822 |
+
Adb+MC+1s+ResCom,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 823 |
+
Adb+MC+2s+ResCom,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 824 |
+
Adb+MC+3s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 825 |
+
Adb+MC+4s+ResCom,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 826 |
+
Adb+MC+5s+ResCom,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 827 |
+
Adb+MC+6s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 828 |
+
Adb+MC+7s+ResCom,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 829 |
+
Adb+MC+8s+ResCom,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 830 |
+
Adb+MC+9s+ResCom,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 831 |
+
Adb+MC+10s+ResCom,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 832 |
+
Adb+HC+1s+ResCom,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 833 |
+
Adb+HC+2s+ResCom,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 834 |
+
Adb+HC+3s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 835 |
+
Adb+HC+4s+ResCom,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 836 |
+
Adb+HC+5s+ResCom,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 837 |
+
Adb+HC+6s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 838 |
+
Adb+HC+7s+ResCom,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 839 |
+
Adb+HC+8s+ResCom,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 840 |
+
Adb+HC+9s+ResCom,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 841 |
+
Adb+HC+10s+ResCom,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 842 |
+
RCi+LC+1s+ResCom,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 843 |
+
RCi+LC+2s+ResCom,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 844 |
+
RCi+LC+3s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 845 |
+
RCi+LC+4s+ResCom,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 846 |
+
RCi+LC+5s+ResCom,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 847 |
+
RCi+LC+6s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 848 |
+
RCi+LC+7s+ResCom,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 849 |
+
RCi+LC+8s+ResCom,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 850 |
+
RCi+LC+9s+ResCom,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 851 |
+
RCi+LC+10s+ResCom,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 852 |
+
RCi+MC+1s+ResCom,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 853 |
+
RCi+MC+2s+ResCom,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 854 |
+
RCi+MC+3s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 855 |
+
RCi+MC+4s+ResCom,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 856 |
+
RCi+MC+5s+ResCom,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 857 |
+
RCi+MC+6s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 858 |
+
RCi+MC+7s+ResCom,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 859 |
+
RCi+MC+8s+ResCom,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 860 |
+
RCi+MC+9s+ResCom,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 861 |
+
RCi+MC+10s+ResCom,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 862 |
+
RCi+HC+1s+ResCom,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 863 |
+
RCi+HC+2s+ResCom,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 864 |
+
RCi+HC+3s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 865 |
+
RCi+HC+4s+ResCom,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 866 |
+
RCi+HC+5s+ResCom,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 867 |
+
RCi+HC+6s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 868 |
+
RCi+HC+7s+ResCom,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 869 |
+
RCi+HC+8s+ResCom,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 870 |
+
RCi+HC+9s+ResCom,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 871 |
+
RCi+HC+10s+ResCom,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 872 |
+
StMin+LC+1s+ResCom,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 873 |
+
StMin+LC+2s+ResCom,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 874 |
+
StMin+LC+3s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 875 |
+
StMin+LC+4s+ResCom,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 876 |
+
StMin+LC+5s+ResCom,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 877 |
+
StMin+LC+6s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 878 |
+
StMin+LC+7s+ResCom,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 879 |
+
StMin+LC+8s+ResCom,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 880 |
+
StMin+LC+9s+ResCom,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 881 |
+
StMin+LC+10s+ResCom,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 882 |
+
StMin+MC+1s+ResCom,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 883 |
+
StMin+MC+2s+ResCom,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 884 |
+
StMin+MC+3s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 885 |
+
StMin+MC+4s+ResCom,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 886 |
+
StMin+MC+5s+ResCom,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 887 |
+
StMin+MC+6s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 888 |
+
StMin+MC+7s+ResCom,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 889 |
+
StMin+MC+8s+ResCom,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 890 |
+
StMin+MC+9s+ResCom,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 891 |
+
StMin+MC+10s+ResCom,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 892 |
+
StMin+HC+1s+ResCom,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 893 |
+
StMin+HC+2s+ResCom,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 894 |
+
StMin+HC+3s+ResCom,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 895 |
+
StMin+HC+4s+ResCom,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 896 |
+
StMin+HC+5s+ResCom,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 897 |
+
StMin+HC+6s+ResCom,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 898 |
+
StMin+HC+7s+ResCom,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 899 |
+
StMin+HC+8s+ResCom,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 900 |
+
StMin+HC+9s+ResCom,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 901 |
+
StMin+HC+10s+ResCom,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 902 |
+
BrCfl+LC+1s+Edu,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 903 |
+
BrCfl+LC+2s+Edu,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 904 |
+
BrCfl+LC+3s+Edu,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 905 |
+
BrCfl+LC+4s+Edu,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 906 |
+
BrCfl+LC+5s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 907 |
+
BrCfl+LC+6s+Edu,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 908 |
+
BrCfl+LC+7s+Edu,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 909 |
+
BrCfl+LC+8s+Edu,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 910 |
+
BrCfl+LC+9s+Edu,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 911 |
+
BrCfl+LC+10s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 912 |
+
BrCfl+MC+1s+Edu,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 913 |
+
BrCfl+MC+2s+Edu,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 914 |
+
BrCfl+MC+3s+Edu,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 915 |
+
BrCfl+MC+4s+Edu,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 916 |
+
BrCfl+MC+5s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 917 |
+
BrCfl+MC+6s+Edu,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 918 |
+
BrCfl+MC+7s+Edu,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 919 |
+
BrCfl+MC+8s+Edu,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 920 |
+
BrCfl+MC+9s+Edu,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 921 |
+
BrCfl+MC+10s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 922 |
+
BrCfl+HC+1s+Edu,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 923 |
+
BrCfl+HC+2s+Edu,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 924 |
+
BrCfl+HC+3s+Edu,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 925 |
+
BrCfl+HC+4s+Edu,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 926 |
+
BrCfl+HC+5s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 927 |
+
BrCfl+HC+6s+Edu,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 928 |
+
BrCfl+HC+7s+Edu,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 929 |
+
BrCfl+HC+8s+Edu,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 930 |
+
BrCfl+HC+9s+Edu,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 931 |
+
BrCfl+HC+10s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 932 |
+
BrCri+LC+1s+Edu,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 933 |
+
BrCri+LC+2s+Edu,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 934 |
+
BrCri+LC+3s+Edu,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 935 |
+
BrCri+LC+4s+Edu,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 936 |
+
BrCri+LC+5s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 937 |
+
BrCri+LC+6s+Edu,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 938 |
+
BrCri+LC+7s+Edu,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 939 |
+
BrCri+LC+8s+Edu,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 940 |
+
BrCri+LC+9s+Edu,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 941 |
+
BrCri+LC+10s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 942 |
+
BrCri+MC+1s+Edu,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 943 |
+
BrCri+MC+2s+Edu,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 944 |
+
BrCri+MC+3s+Edu,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 945 |
+
BrCri+MC+4s+Edu,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 946 |
+
BrCri+MC+5s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 947 |
+
BrCri+MC+6s+Edu,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 948 |
+
BrCri+MC+7s+Edu,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 949 |
+
BrCri+MC+8s+Edu,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 950 |
+
BrCri+MC+9s+Edu,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 951 |
+
BrCri+MC+10s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 952 |
+
BrCri+HC+1s+Edu,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 953 |
+
BrCri+HC+2s+Edu,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 954 |
+
BrCri+HC+3s+Edu,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 955 |
+
BrCri+HC+4s+Edu,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 956 |
+
BrCri+HC+5s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 957 |
+
BrCri+HC+6s+Edu,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 958 |
+
BrCri+HC+7s+Edu,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 959 |
+
BrCri+HC+8s+Edu,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 960 |
+
BrCri+HC+9s+Edu,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 961 |
+
BrCri+HC+10s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 962 |
+
BrM+LC+1s+Edu,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 963 |
+
BrM+LC+2s+Edu,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 964 |
+
BrM+LC+3s+Edu,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 965 |
+
BrM+LC+4s+Edu,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 966 |
+
BrM+LC+5s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 967 |
+
BrM+LC+6s+Edu,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 968 |
+
BrM+LC+7s+Edu,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 969 |
+
BrM+LC+8s+Edu,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 970 |
+
BrM+LC+9s+Edu,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 971 |
+
BrM+LC+10s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 972 |
+
BrM+MC+1s+Edu,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 973 |
+
BrM+MC+2s+Edu,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 974 |
+
BrM+MC+3s+Edu,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 975 |
+
BrM+MC+4s+Edu,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 976 |
+
BrM+MC+5s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 977 |
+
BrM+MC+6s+Edu,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 978 |
+
BrM+MC+7s+Edu,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 979 |
+
BrM+MC+8s+Edu,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 980 |
+
BrM+MC+9s+Edu,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 981 |
+
BrM+MC+10s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 982 |
+
BrM+HC+1s+Edu,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 983 |
+
BrM+HC+2s+Edu,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 984 |
+
BrM+HC+3s+Edu,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 985 |
+
BrM+HC+4s+Edu,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 986 |
+
BrM+HC+5s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 987 |
+
BrM+HC+6s+Edu,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 988 |
+
BrM+HC+7s+Edu,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 989 |
+
BrM+HC+8s+Edu,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 990 |
+
BrM+HC+9s+Edu,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 991 |
+
BrM+HC+10s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 992 |
+
Adb+LC+1s+Edu,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 993 |
+
Adb+LC+2s+Edu,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 994 |
+
Adb+LC+3s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 995 |
+
Adb+LC+4s+Edu,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 996 |
+
Adb+LC+5s+Edu,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 997 |
+
Adb+LC+6s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 998 |
+
Adb+LC+7s+Edu,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 999 |
+
Adb+LC+8s+Edu,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 1000 |
+
Adb+LC+9s+Edu,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 1001 |
+
Adb+LC+10s+Edu,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 1002 |
+
Adb+MC+1s+Edu,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 1003 |
+
Adb+MC+2s+Edu,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 1004 |
+
Adb+MC+3s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 1005 |
+
Adb+MC+4s+Edu,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 1006 |
+
Adb+MC+5s+Edu,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 1007 |
+
Adb+MC+6s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 1008 |
+
Adb+MC+7s+Edu,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 1009 |
+
Adb+MC+8s+Edu,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 1010 |
+
Adb+MC+9s+Edu,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 1011 |
+
Adb+MC+10s+Edu,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 1012 |
+
Adb+HC+1s+Edu,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 1013 |
+
Adb+HC+2s+Edu,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 1014 |
+
Adb+HC+3s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 1015 |
+
Adb+HC+4s+Edu,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 1016 |
+
Adb+HC+5s+Edu,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 1017 |
+
Adb+HC+6s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 1018 |
+
Adb+HC+7s+Edu,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 1019 |
+
Adb+HC+8s+Edu,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 1020 |
+
Adb+HC+9s+Edu,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 1021 |
+
Adb+HC+10s+Edu,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 1022 |
+
RCi+LC+1s+Edu,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 1023 |
+
RCi+LC+2s+Edu,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 1024 |
+
RCi+LC+3s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 1025 |
+
RCi+LC+4s+Edu,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 1026 |
+
RCi+LC+5s+Edu,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 1027 |
+
RCi+LC+6s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 1028 |
+
RCi+LC+7s+Edu,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 1029 |
+
RCi+LC+8s+Edu,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 1030 |
+
RCi+LC+9s+Edu,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 1031 |
+
RCi+LC+10s+Edu,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 1032 |
+
RCi+MC+1s+Edu,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 1033 |
+
RCi+MC+2s+Edu,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 1034 |
+
RCi+MC+3s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 1035 |
+
RCi+MC+4s+Edu,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 1036 |
+
RCi+MC+5s+Edu,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 1037 |
+
RCi+MC+6s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 1038 |
+
RCi+MC+7s+Edu,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 1039 |
+
RCi+MC+8s+Edu,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 1040 |
+
RCi+MC+9s+Edu,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 1041 |
+
RCi+MC+10s+Edu,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 1042 |
+
RCi+HC+1s+Edu,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 1043 |
+
RCi+HC+2s+Edu,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 1044 |
+
RCi+HC+3s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 1045 |
+
RCi+HC+4s+Edu,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 1046 |
+
RCi+HC+5s+Edu,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 1047 |
+
RCi+HC+6s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 1048 |
+
RCi+HC+7s+Edu,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 1049 |
+
RCi+HC+8s+Edu,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 1050 |
+
RCi+HC+9s+Edu,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 1051 |
+
RCi+HC+10s+Edu,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 1052 |
+
StMin+LC+1s+Edu,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 1053 |
+
StMin+LC+2s+Edu,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 1054 |
+
StMin+LC+3s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 1055 |
+
StMin+LC+4s+Edu,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 1056 |
+
StMin+LC+5s+Edu,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 1057 |
+
StMin+LC+6s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 1058 |
+
StMin+LC+7s+Edu,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 1059 |
+
StMin+LC+8s+Edu,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 1060 |
+
StMin+LC+9s+Edu,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 1061 |
+
StMin+LC+10s+Edu,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 1062 |
+
StMin+MC+1s+Edu,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 1063 |
+
StMin+MC+2s+Edu,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 1064 |
+
StMin+MC+3s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 1065 |
+
StMin+MC+4s+Edu,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 1066 |
+
StMin+MC+5s+Edu,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 1067 |
+
StMin+MC+6s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 1068 |
+
StMin+MC+7s+Edu,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 1069 |
+
StMin+MC+8s+Edu,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 1070 |
+
StMin+MC+9s+Edu,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 1071 |
+
StMin+MC+10s+Edu,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 1072 |
+
StMin+HC+1s+Edu,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 1073 |
+
StMin+HC+2s+Edu,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 1074 |
+
StMin+HC+3s+Edu,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 1075 |
+
StMin+HC+4s+Edu,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 1076 |
+
StMin+HC+5s+Edu,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 1077 |
+
StMin+HC+6s+Edu,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 1078 |
+
StMin+HC+7s+Edu,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 1079 |
+
StMin+HC+8s+Edu,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 1080 |
+
StMin+HC+9s+Edu,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 1081 |
+
StMin+HC+10s+Edu,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 1082 |
+
BrCfl+LC+1s+Hea,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 1083 |
+
BrCfl+LC+2s+Hea,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 1084 |
+
BrCfl+LC+3s+Hea,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 1085 |
+
BrCfl+LC+4s+Hea,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 1086 |
+
BrCfl+LC+5s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 1087 |
+
BrCfl+LC+6s+Hea,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 1088 |
+
BrCfl+LC+7s+Hea,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 1089 |
+
BrCfl+LC+8s+Hea,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 1090 |
+
BrCfl+LC+9s+Hea,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 1091 |
+
BrCfl+LC+10s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 1092 |
+
BrCfl+MC+1s+Hea,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 1093 |
+
BrCfl+MC+2s+Hea,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 1094 |
+
BrCfl+MC+3s+Hea,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 1095 |
+
BrCfl+MC+4s+Hea,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 1096 |
+
BrCfl+MC+5s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 1097 |
+
BrCfl+MC+6s+Hea,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 1098 |
+
BrCfl+MC+7s+Hea,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 1099 |
+
BrCfl+MC+8s+Hea,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 1100 |
+
BrCfl+MC+9s+Hea,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 1101 |
+
BrCfl+MC+10s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 1102 |
+
BrCfl+HC+1s+Hea,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 1103 |
+
BrCfl+HC+2s+Hea,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 1104 |
+
BrCfl+HC+3s+Hea,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 1105 |
+
BrCfl+HC+4s+Hea,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 1106 |
+
BrCfl+HC+5s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 1107 |
+
BrCfl+HC+6s+Hea,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 1108 |
+
BrCfl+HC+7s+Hea,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 1109 |
+
BrCfl+HC+8s+Hea,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 1110 |
+
BrCfl+HC+9s+Hea,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 1111 |
+
BrCfl+HC+10s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 1112 |
+
BrCri+LC+1s+Hea,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 1113 |
+
BrCri+LC+2s+Hea,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 1114 |
+
BrCri+LC+3s+Hea,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 1115 |
+
BrCri+LC+4s+Hea,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 1116 |
+
BrCri+LC+5s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 1117 |
+
BrCri+LC+6s+Hea,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 1118 |
+
BrCri+LC+7s+Hea,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 1119 |
+
BrCri+LC+8s+Hea,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 1120 |
+
BrCri+LC+9s+Hea,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 1121 |
+
BrCri+LC+10s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 1122 |
+
BrCri+MC+1s+Hea,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 1123 |
+
BrCri+MC+2s+Hea,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 1124 |
+
BrCri+MC+3s+Hea,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 1125 |
+
BrCri+MC+4s+Hea,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 1126 |
+
BrCri+MC+5s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 1127 |
+
BrCri+MC+6s+Hea,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 1128 |
+
BrCri+MC+7s+Hea,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 1129 |
+
BrCri+MC+8s+Hea,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 1130 |
+
BrCri+MC+9s+Hea,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 1131 |
+
BrCri+MC+10s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 1132 |
+
BrCri+HC+1s+Hea,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 1133 |
+
BrCri+HC+2s+Hea,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 1134 |
+
BrCri+HC+3s+Hea,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 1135 |
+
BrCri+HC+4s+Hea,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 1136 |
+
BrCri+HC+5s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 1137 |
+
BrCri+HC+6s+Hea,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 1138 |
+
BrCri+HC+7s+Hea,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 1139 |
+
BrCri+HC+8s+Hea,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 1140 |
+
BrCri+HC+9s+Hea,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 1141 |
+
BrCri+HC+10s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 1142 |
+
BrM+LC+1s+Hea,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 1143 |
+
BrM+LC+2s+Hea,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 1144 |
+
BrM+LC+3s+Hea,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 1145 |
+
BrM+LC+4s+Hea,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 1146 |
+
BrM+LC+5s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 1147 |
+
BrM+LC+6s+Hea,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 1148 |
+
BrM+LC+7s+Hea,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 1149 |
+
BrM+LC+8s+Hea,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 1150 |
+
BrM+LC+9s+Hea,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 1151 |
+
BrM+LC+10s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 1152 |
+
BrM+MC+1s+Hea,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 1153 |
+
BrM+MC+2s+Hea,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 1154 |
+
BrM+MC+3s+Hea,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 1155 |
+
BrM+MC+4s+Hea,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 1156 |
+
BrM+MC+5s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 1157 |
+
BrM+MC+6s+Hea,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 1158 |
+
BrM+MC+7s+Hea,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 1159 |
+
BrM+MC+8s+Hea,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 1160 |
+
BrM+MC+9s+Hea,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 1161 |
+
BrM+MC+10s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 1162 |
+
BrM+HC+1s+Hea,0.000,0.760,1.000,1.000,1.000,1.000,1.000,1.000,1.000
|
| 1163 |
+
BrM+HC+2s+Hea,0.000,0.380,0.540,0.660,0.760,0.880,0.940,0.980,1.000
|
| 1164 |
+
BrM+HC+3s+Hea,0.000,0.253,0.360,0.440,0.507,0.587,0.627,0.653,0.667
|
| 1165 |
+
BrM+HC+4s+Hea,0.000,0.190,0.270,0.330,0.380,0.440,0.470,0.490,0.500
|
| 1166 |
+
BrM+HC+5s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 1167 |
+
BrM+HC+6s+Hea,0.000,0.127,0.180,0.220,0.253,0.293,0.313,0.327,0.333
|
| 1168 |
+
BrM+HC+7s+Hea,0.000,0.109,0.154,0.189,0.217,0.251,0.269,0.280,0.286
|
| 1169 |
+
BrM+HC+8s+Hea,0.000,0.095,0.135,0.165,0.190,0.220,0.235,0.245,0.250
|
| 1170 |
+
BrM+HC+9s+Hea,0.000,0.084,0.120,0.147,0.169,0.196,0.209,0.218,0.222
|
| 1171 |
+
BrM+HC+10s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 1172 |
+
Adb+LC+1s+Hea,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 1173 |
+
Adb+LC+2s+Hea,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 1174 |
+
Adb+LC+3s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 1175 |
+
Adb+LC+4s+Hea,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 1176 |
+
Adb+LC+5s+Hea,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 1177 |
+
Adb+LC+6s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 1178 |
+
Adb+LC+7s+Hea,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 1179 |
+
Adb+LC+8s+Hea,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 1180 |
+
Adb+LC+9s+Hea,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 1181 |
+
Adb+LC+10s+Hea,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 1182 |
+
Adb+MC+1s+Hea,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 1183 |
+
Adb+MC+2s+Hea,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 1184 |
+
Adb+MC+3s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 1185 |
+
Adb+MC+4s+Hea,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 1186 |
+
Adb+MC+5s+Hea,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 1187 |
+
Adb+MC+6s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 1188 |
+
Adb+MC+7s+Hea,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 1189 |
+
Adb+MC+8s+Hea,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 1190 |
+
Adb+MC+9s+Hea,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 1191 |
+
Adb+MC+10s+Hea,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 1192 |
+
Adb+HC+1s+Hea,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 1193 |
+
Adb+HC+2s+Hea,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 1194 |
+
Adb+HC+3s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 1195 |
+
Adb+HC+4s+Hea,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 1196 |
+
Adb+HC+5s+Hea,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 1197 |
+
Adb+HC+6s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 1198 |
+
Adb+HC+7s+Hea,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 1199 |
+
Adb+HC+8s+Hea,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 1200 |
+
Adb+HC+9s+Hea,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 1201 |
+
Adb+HC+10s+Hea,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 1202 |
+
RCi+LC+1s+Hea,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 1203 |
+
RCi+LC+2s+Hea,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 1204 |
+
RCi+LC+3s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 1205 |
+
RCi+LC+4s+Hea,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 1206 |
+
RCi+LC+5s+Hea,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 1207 |
+
RCi+LC+6s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 1208 |
+
RCi+LC+7s+Hea,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 1209 |
+
RCi+LC+8s+Hea,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 1210 |
+
RCi+LC+9s+Hea,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 1211 |
+
RCi+LC+10s+Hea,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 1212 |
+
RCi+MC+1s+Hea,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 1213 |
+
RCi+MC+2s+Hea,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 1214 |
+
RCi+MC+3s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 1215 |
+
RCi+MC+4s+Hea,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 1216 |
+
RCi+MC+5s+Hea,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 1217 |
+
RCi+MC+6s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 1218 |
+
RCi+MC+7s+Hea,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 1219 |
+
RCi+MC+8s+Hea,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 1220 |
+
RCi+MC+9s+Hea,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 1221 |
+
RCi+MC+10s+Hea,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 1222 |
+
RCi+HC+1s+Hea,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 1223 |
+
RCi+HC+2s+Hea,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 1224 |
+
RCi+HC+3s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 1225 |
+
RCi+HC+4s+Hea,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 1226 |
+
RCi+HC+5s+Hea,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 1227 |
+
RCi+HC+6s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 1228 |
+
RCi+HC+7s+Hea,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 1229 |
+
RCi+HC+8s+Hea,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 1230 |
+
RCi+HC+9s+Hea,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 1231 |
+
RCi+HC+10s+Hea,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 1232 |
+
StMin+LC+1s+Hea,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 1233 |
+
StMin+LC+2s+Hea,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 1234 |
+
StMin+LC+3s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 1235 |
+
StMin+LC+4s+Hea,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 1236 |
+
StMin+LC+5s+Hea,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 1237 |
+
StMin+LC+6s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 1238 |
+
StMin+LC+7s+Hea,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 1239 |
+
StMin+LC+8s+Hea,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 1240 |
+
StMin+LC+9s+Hea,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 1241 |
+
StMin+LC+10s+Hea,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 1242 |
+
StMin+MC+1s+Hea,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 1243 |
+
StMin+MC+2s+Hea,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 1244 |
+
StMin+MC+3s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 1245 |
+
StMin+MC+4s+Hea,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 1246 |
+
StMin+MC+5s+Hea,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 1247 |
+
StMin+MC+6s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 1248 |
+
StMin+MC+7s+Hea,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 1249 |
+
StMin+MC+8s+Hea,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 1250 |
+
StMin+MC+9s+Hea,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 1251 |
+
StMin+MC+10s+Hea,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
| 1252 |
+
StMin+HC+1s+Hea,0.000,0.456,0.600,0.600,0.600,0.600,0.600,0.600,0.600
|
| 1253 |
+
StMin+HC+2s+Hea,0.000,0.228,0.324,0.396,0.456,0.528,0.564,0.588,0.600
|
| 1254 |
+
StMin+HC+3s+Hea,0.000,0.152,0.216,0.264,0.304,0.352,0.376,0.392,0.400
|
| 1255 |
+
StMin+HC+4s+Hea,0.000,0.114,0.162,0.198,0.228,0.264,0.282,0.294,0.300
|
| 1256 |
+
StMin+HC+5s+Hea,0.000,0.091,0.130,0.158,0.182,0.211,0.226,0.235,0.240
|
| 1257 |
+
StMin+HC+6s+Hea,0.000,0.076,0.108,0.132,0.152,0.176,0.188,0.196,0.200
|
| 1258 |
+
StMin+HC+7s+Hea,0.000,0.065,0.093,0.113,0.130,0.151,0.161,0.168,0.171
|
| 1259 |
+
StMin+HC+8s+Hea,0.000,0.057,0.081,0.099,0.114,0.132,0.141,0.147,0.150
|
| 1260 |
+
StMin+HC+9s+Hea,0.000,0.051,0.072,0.088,0.101,0.117,0.125,0.131,0.133
|
| 1261 |
+
StMin+HC+10s+Hea,0.000,0.046,0.065,0.079,0.091,0.106,0.113,0.118,0.120
|
hazard_debris.geojson
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
hazard_debris.xlsx
ADDED
|
Binary file (33.5 kB). View file
|
|
|
hazard_earthquake.geojson
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
hazard_flood.geojson
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
household_tv50_1.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
household_tv50_2.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
household_tv50_3.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
individual_tv50_1.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
individual_tv50_2.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
individual_tv50_3.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
landuse_tv0.geojson
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
landuse_tv50_1.geojson
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
landuse_tv50_1.png
ADDED
|
landuse_tv50_1_selected.png
ADDED
|
landuse_tv50_2.geojson
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
landuse_tv50_2.png
ADDED
|
landuse_tv50_2_selected.png
ADDED
|
landuse_tv50_3.geojson
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
landuse_tv50_3.png
ADDED
|
landuse_tv50_3_selected.png
ADDED
|
mypy.ini
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[mypy]
|
| 2 |
+
check_untyped_defs = True
|
| 3 |
+
ignore_missing_imports = True
|
pre_process.py
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#%%
|
| 2 |
+
import pandas as pd
|
| 3 |
+
import geopandas as gpd
|
| 4 |
+
|
| 5 |
+
|
| 6 |
+
df = pd.read_excel('/Users/huseyin.kaya/Downloads/Tomorrowville_Dataset/TV_Others/VS2/_outputs/Layer_Building_VS2.xlsx')
|
| 7 |
+
|
| 8 |
+
#df = pd.read_excel('/Users/huseyin.kaya/Downloads/Tomorrowville_Dataset/TV_Others/VS1/_outputs/Layer_Individual_VS1.xlsx')
|
| 9 |
+
#df.to_json('individual_tv50_1.json')
|
| 10 |
+
|
| 11 |
+
#df = df.rename(columns={'X':'x','Y':'y','IM':'im'})
|
| 12 |
+
|
| 13 |
+
gdf = gpd.GeoDataFrame(df, geometry=gpd.points_from_xy(df.xcoord, df.ycoord))
|
| 14 |
+
gdf.set_crs(epsg=32645, inplace=True)
|
| 15 |
+
gdf = gdf.to_crs(crs="EPSG:4326")
|
| 16 |
+
|
| 17 |
+
gdf.xcoord = gdf.geometry.x
|
| 18 |
+
gdf.ycoord = gdf.geometry.y
|
| 19 |
+
|
| 20 |
+
#gdf = gdf.sample(n=1000)
|
| 21 |
+
gdf = gdf.reset_index(drop=True)
|
| 22 |
+
#gdf = gdf.drop(columns=['xcoord','ycoord'])
|
| 23 |
+
#gdf = gdf.drop(columns=['geometry'])
|
| 24 |
+
|
| 25 |
+
gdf.to_file('building_tv50_2.geojson', driver="GeoJSON")
|
| 26 |
+
#%%
|
| 27 |
+
|
pyproject.toml
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[build-system]
|
| 2 |
+
requires = ["hatchling >=0.25"]
|
| 3 |
+
build-backend = "hatchling.build"
|
| 4 |
+
|
| 5 |
+
[project]
|
| 6 |
+
name = "demo"
|
| 7 |
+
license = {file = "LICENSE"}
|
| 8 |
+
classifiers = ["License :: OSI Approved :: MIT License"]
|
| 9 |
+
dynamic = ["version", "description"]
|
| 10 |
+
dependencies = [
|
| 11 |
+
"solara",
|
| 12 |
+
]
|
| 13 |
+
|
| 14 |
+
[tool.hatch.version]
|
| 15 |
+
path = "demo/__init__.py"
|
| 16 |
+
|
| 17 |
+
|
| 18 |
+
|
| 19 |
+
[project.urls]
|
| 20 |
+
Home = "https://www.github.com/widgetti/solara"
|
| 21 |
+
|
| 22 |
+
[tool.black]
|
| 23 |
+
line-length = 160
|
| 24 |
+
|
| 25 |
+
[tool.isort]
|
| 26 |
+
profile = "black"
|
requirements.txt
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
solara
|
| 2 |
+
geopandas
|
| 3 |
+
ipyleaflet
|
| 4 |
+
plotly
|
| 5 |
+
lorem_text
|
| 6 |
+
matplotlib
|
| 7 |
+
psycopg2-binary
|
| 8 |
+
scipy
|